/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/__init__.py

Feedback on the 2.0rc1 release.

* doc/developers/releasing.txt: 
Try clarifying the points that were unclear for me when cutting
2.0rc1 instead of 2.0beta1/

* bzrlib/__init__.py:
(_format_version_tuple): Add a beta example.

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
    1.2dev
71
71
    >>> print _format_version_tuple((1, 1, 1, 'candidate', 2))
72
72
    1.1.1rc2
 
73
    >>> print bzrlib._format_version_tuple((2, 1, 0, 'beta', 1))
 
74
    2.1b1
73
75
    >>> print _format_version_tuple((1, 4, 0))
74
76
    1.4
75
77
    >>> print _format_version_tuple((1, 4))