20
# please keep these sorted (in C locale order) to aid merging
43
'.sw[nop]', # vim editing nameless file
19
from inventory import Inventory, InventoryEntry
20
from branch import Branch, ScratchBranch
21
from osutils import format_date
23
from diff import diff_trees
24
from trace import mutter, warning
29
DEFAULT_IGNORE = ['.bzr.log',
30
'*~', '#*#', '*$', '.#*',
31
'*.tmp', '*.bak', '*.BAK', '*.orig',
32
'*.o', '*.obj', '*.a', '*.py[oc]', '*.so', '*.exe', '*.elc',
33
'{arch}', 'CVS', '.svn', '_darcs', 'SCCS', 'RCS',
75
# Our setup tests dump .python-eggs in the bzr source tree
35
'TAGS', '.make.state', '.sconsign', '.tmp*']
80
37
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'
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)
115
def get_bzr_revision():
116
"""If bzr is run from a branch, return (revno,revid) or None."""
118
from bzrlib.branch import Branch
121
branch = Branch.open(os.path.dirname(__path__[0]))
122
rh = branch.revision_history()
124
return len(rh), rh[-1]
127
except bzrlib.errors.BzrError:
132
return tests.test_suite()
40
user_encoding = locale.getpreferredencoding()
42
__copyright__ = "Copyright 2005 Canonical Development Ltd."
43
__author__ = "Martin Pool <mbp@canonical.com>"
44
__version__ = '0.0.5pre'