~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: 2008-08-14 19:57:37 UTC
  • mfrom: (3633.1.1 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20080814195737-7tpxreg897vxlmr5
(jam) 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