20
# please keep these sorted (in C locale order) to aid merging
19
from inventory import Inventory, InventoryEntry
20
from branch import Branch, ScratchBranch, find_branch
21
from osutils import format_date
23
from diff import compare_trees
24
from trace import mutter, warning, open_tracefile
25
from log import show_log
30
DEFAULT_IGNORE = ['.bzr.log',
31
'*~', '#*#', '*$', '.#*',
32
'.*.sw[nop]', '.*.tmp',
33
'*.tmp', '*.bak', '*.BAK', '*.orig',
34
'*.o', '*.obj', '*.a', '*.py[oc]', '*.so', '*.exe', '*.elc',
35
'{arch}', 'CVS', 'CVS.adm', '.svn', '_darcs', 'SCCS', 'RCS',
43
'.sw[nop]', # vim editing nameless file
75
# Our setup tests dump .python-eggs in the bzr source tree
39
'TAGS', '.make.state', '.sconsign', '.tmp*',
80
42
IGNORE_FILENAME = ".bzrignore"
84
if sys.platform == 'darwin':
85
# work around egregious python 2.4 bug
86
sys.platform = 'posix'
88
sys.platform = 'darwin'
91
user_encoding = locale.getpreferredencoding() or 'ascii'
45
user_encoding = locale.getpreferredencoding()
94
__copyright__ = "Copyright 2005, 2006 Canonical Development Ltd."
95
__version__ = version_string = '0.9'
97
# same format as sys.version_info: "A tuple containing the five components of
98
# the version number: major, minor, micro, releaselevel, and serial. All
99
# values except releaselevel are integers; the release level is 'alpha',
100
# 'beta', 'candidate', or 'final'. The version_info value corresponding to the
101
# Python version 2.0 is (2, 0, 0, 'final', 0)." Additionally we use a
102
# releaselevel of 'dev' for unreleased under-development code.
104
version_info = (0, 9, 0, 'dev', 0)
106
if version_info[3] == 'final':
107
version_string = '%d.%d.%d' % version_info[:3]
109
version_string = '%d.%d.%d%s%d' % version_info
110
__version__ = version_string
112
from bzrlib.symbol_versioning import deprecated_function, zero_seven
114
@deprecated_function(zero_seven)
48
__copyright__ = "Copyright 2005 Canonical Development Ltd."
49
__author__ = "Martin Pool <mbp@canonical.com>"
115
53
def get_bzr_revision():
116
"""If bzr is run from a branch, return (revno,revid) or None."""
118
from bzrlib.branch import Branch
54
"""If bzr is run from a branch, return (revno,revid) or None"""
55
from errors import BzrError
121
branch = Branch.open(os.path.dirname(__path__[0]))
57
branch = Branch(__path__[0])
122
58
rh = branch.revision_history()
124
60
return len(rh), rh[-1]
127
except bzrlib.errors.BzrError:
132
return tests.test_suite()