~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-04-09 20:23:07 UTC
  • mfrom: (4265.1.4 bbc-merge)
  • Revision ID: pqm@pqm.ubuntu.com-20090409202307-n0depb16qepoe21o
(jam) Change _fetch_uses_deltas = False for CHK repos until we can
        write a better fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
IGNORE_FILENAME = ".bzrignore"
38
38
 
39
39
 
40
 
# XXX: Deprecated as of bzr-1.17 use osutils.get_user_encoding() directly
 
40
# XXX: Compatibility. This should probably be deprecated
41
41
user_encoding = get_user_encoding()
42
42
 
43
43
 
50
50
# Python version 2.0 is (2, 0, 0, 'final', 0)."  Additionally we use a
51
51
# releaselevel of 'dev' for unreleased under-development code.
52
52
 
53
 
version_info = (2, 0, 0, 'dev', 0)
54
 
 
55
 
# API compatibility version: bzrlib is currently API compatible with 1.15.
56
 
api_minimum_version = (1, 17, 0)
 
53
version_info = (1, 15, 0, 'dev', 0)
 
54
 
 
55
# API compatibility version: bzrlib is currently API compatible with 1.13.
 
56
api_minimum_version = (1, 13, 0)
 
57
 
57
58
 
58
59
def _format_version_tuple(version_info):
59
60
    """Turn a version number 2, 3 or 5-tuple into a short string.