From: Martin v. Löwis Date: Tue, 1 May 2012 14:27:55 +0000 (+0200) Subject: Include micro version even if it is 0. X-Git-Tag: v3.3.0a4~319^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=24a05f787ed322bc39dc3a226f8ff6fd002d3cf4;p=python Include micro version even if it is 0. --- diff --git a/Doc/tools/sphinxext/patchlevel.py b/Doc/tools/sphinxext/patchlevel.py index b070d60a42..bca2eb8bad 100644 --- a/Doc/tools/sphinxext/patchlevel.py +++ b/Doc/tools/sphinxext/patchlevel.py @@ -34,8 +34,7 @@ def get_header_version_info(srcdir): release = version = '%s.%s' % (d['PY_MAJOR_VERSION'], d['PY_MINOR_VERSION']) micro = int(d['PY_MICRO_VERSION']) - if micro != 0: - release += '.' + str(micro) + release += '.' + str(micro) level = d['PY_RELEASE_LEVEL'] suffixes = { @@ -51,8 +50,7 @@ def get_header_version_info(srcdir): def get_sys_version_info(): major, minor, micro, level, serial = sys.version_info release = version = '%s.%s' % (major, minor) - if micro: - release += '.%s' % micro + release += '.%s' % micro if level != 'final': release += '%s%s' % (level[0], serial) return version, release