28
85
sys.platform = 'darwin'
31
# XXX: This probably belongs in osutils instead
32
88
user_encoding = locale.getpreferredencoding() or 'ascii'
35
__copyright__ = "Copyright 2005, 2006 Canonical Development Ltd."
37
# same format as sys.version_info: "A tuple containing the five components of
38
# the version number: major, minor, micro, releaselevel, and serial. All
39
# values except releaselevel are integers; the release level is 'alpha',
40
# 'beta', 'candidate', or 'final'. The version_info value corresponding to the
41
# Python version 2.0 is (2, 0, 0, 'final', 0)." Additionally we use a
42
# releaselevel of 'dev' for unreleased under-development code.
44
version_info = (0, 10, 0, 'dev', 0)
46
if version_info[3] == 'final':
47
version_string = '%d.%d.%d' % version_info[:3]
49
version_string = '%d.%d.%d%s%d' % version_info
50
__version__ = version_string
52
from bzrlib.symbol_versioning import (deprecated_function,
58
# Kept for compatibility with 0.8, it is considered deprecated to modify it
59
DEFAULT_IGNORE = deprecated_list(zero_nine, 'DEFAULT_IGNORE', [],
60
'Consider using bzrlib.ignores.add_unique_user_ignores'
61
' or bzrlib.ignores.add_runtime_ignores')
91
__copyright__ = "Copyright 2005,06 Canonical Development Ltd."
92
__version__ = version_string = '0.8pre'
93
# same format as sys.version_info
94
version_info = (0, 8, 0, 'pre', 0)
97
from bzrlib.symbol_versioning import deprecated_function, zero_seven
99
@deprecated_function(zero_seven)
100
def get_bzr_revision():
101
"""If bzr is run from a branch, return (revno,revid) or None."""
103
from bzrlib.branch import Branch
106
branch = Branch.open(os.path.dirname(__path__[0]))
107
rh = branch.revision_history()
109
return len(rh), rh[-1]
112
except bzrlib.errors.BzrError:
65
117
return tests.test_suite()