/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-03-25 06:52:38 UTC
  • mfrom: (5018.1.12 lazy-commands)
  • Revision ID: pqm@pqm.ubuntu.com-20100325065238-0mser11okatoq0yz
(mbp) allow builtin commands to be lazy loaded; make bundle-info lazy

Show diffs side-by-side

added added

removed removed

Lines of Context:
5974
5974
            self.outf.write('%s %s\n' % (path, location))
5975
5975
 
5976
5976
 
5977
 
# these get imported and then picked up by the scan for cmd_*
5978
 
# TODO: Some more consistent way to split command definitions across files;
5979
 
# we do need to load at least some information about them to know of
5980
 
# aliases.  ideally we would avoid loading the implementation until the
5981
 
# details were needed.
5982
5977
from bzrlib.cmd_version_info import cmd_version_info
5983
5978
from bzrlib.conflicts import cmd_resolve, cmd_conflicts, restore
5984
 
from bzrlib.bundle.commands import (
5985
 
    cmd_bundle_info,
5986
 
    )
5987
5979
from bzrlib.foreign import cmd_dpush
5988
5980
from bzrlib.sign_my_commits import cmd_sign_my_commits