~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commands.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-02-10 01:19:38 UTC
  • mfrom: (5011.1.4 cleanup)
  • Revision ID: pqm@pqm.ubuntu.com-20100210011938-zhn0c9wwvcipj5mm
(mbp) Remove deprecated code

Show diffs side-by-side

added added

removed removed

Lines of Context:
186
186
    return plugin_cmds.keys()
187
187
 
188
188
 
189
 
@deprecated_function(deprecated_in((1, 17, 0)))
190
 
def get_all_cmds(plugins_override=False):
191
 
    """Return canonical name and class for most commands.
192
 
    
193
 
    NB: This does not return all commands since the introduction of
194
 
    command hooks, and returning the class is not sufficient to 
195
 
    get correctly setup commands, which is why it is deprecated.
196
 
 
197
 
    Use 'all_command_names' + 'get_cmd_object' instead.
198
 
    """
199
 
    d = _builtin_commands()
200
 
    if plugins_override:
201
 
        d.update(plugin_cmds.iteritems())
202
 
    for k, v in d.iteritems():
203
 
        yield k,v
204
 
 
205
 
 
206
189
def get_cmd_object(cmd_name, plugins_override=True):
207
190
    """Return the command object for a command.
208
191
 
624
607
 
625
608
    def run_argv_aliases(self, argv, alias_argv=None):
626
609
        """Parse the command line and run with extra aliases in alias_argv."""
627
 
        if argv is None:
628
 
            warn("Passing None for [] is deprecated from bzrlib 0.10",
629
 
                 DeprecationWarning, stacklevel=2)
630
 
            argv = []
631
610
        args, opts = parse_args(self, argv, alias_argv)
632
611
 
633
612
        # Process the standard options