~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/directory_service.py

  • Committer: Andrew Bennetts
  • Date: 2008-09-14 10:13:42 UTC
  • mto: This revision was merged to the branch mainline in revision 3756.
  • Revision ID: andrew.bennetts@canonical.com-20080914101342-rxhap01kw4tqx2k3
A couple more lazy imports, helps 'bzr log --line -r -1' a little.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
"""
22
22
 
23
23
from bzrlib import errors, registry
 
24
from bzrlib.lazy_import import lazy_import
 
25
lazy_import(globals(), """
24
26
from bzrlib.branch import Branch
 
27
""")
25
28
 
26
29
class DirectoryServiceRegistry(registry.Registry):
27
30
    """This object maintains and uses a list of directory services.