~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Martin Pool
  • Date: 2005-05-25 03:27:02 UTC
  • Revision ID: mbp@sourcefrog.net-20050525032702-395f038adb33c235
- clean up statcache code
- stat files in order by inum
- report on added/deleted files

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
"""bzr library"""
18
18
 
19
19
from inventory import Inventory, InventoryEntry
20
 
from branch import Branch, ScratchBranch
 
20
from branch import Branch, ScratchBranch, find_branch
21
21
from osutils import format_date
22
22
from tree import Tree
23
23
from diff import compare_trees
42
42
 
43
43
import locale
44
44
user_encoding = locale.getpreferredencoding()
 
45
del locale
45
46
 
46
47
__copyright__ = "Copyright 2005 Canonical Development Ltd."
47
48
__author__ = "Martin Pool <mbp@canonical.com>"
48
49
__version__ = '0.0.5pre'
49