~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Martin Pool
  • Date: 2005-05-17 06:56:16 UTC
  • Revision ID: mbp@sourcefrog.net-20050517065616-6f23381d6184a8aa
- add space for un-merged patches

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, find_branch
 
20
from branch import Branch, ScratchBranch
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
46
45
 
47
46
__copyright__ = "Copyright 2005 Canonical Development Ltd."
48
47
__author__ = "Martin Pool <mbp@canonical.com>"
49
48
__version__ = '0.0.5pre'
 
49