~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Martin Pool
  • Date: 2005-05-10 08:15:58 UTC
  • Revision ID: mbp@sourcefrog.net-20050510081558-9a38e2c46ba4ebc4
- Patch from Fredrik Lundh to check Python version and 
  try to find a better one if it's too old.

  Patched to try to prevent infinite loops in wierd configurations,
  and to log to stderr.

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
 
from diff import compare_trees
 
23
from diff import diff_trees
24
24
from trace import mutter, warning, open_tracefile
25
25
from log import show_log
26
26
import add
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