~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2008-08-14 19:22:59 UTC
  • mfrom: (3606.5.5 1.6)
  • mto: This revision was merged to the branch mainline in revision 3634.
  • Revision ID: john@arbash-meinel.com-20080814192259-lwm1mqhwgzi3u600
Merge bzr-1.6rc3 into bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
# API compatibility version: bzrlib is currently API compatible with 1.7.
48
48
api_minimum_version = (1, 7, 0)
49
49
 
 
50
 
50
51
def _format_version_tuple(version_info):
51
52
    """Turn a version number 3-tuple or 5-tuple into a short string.
52
53