diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-06-22 19:36:31 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-06-22 19:36:31 (GMT) |
commit | b48f63433eca50588597d70cfe140e07e3bc085f (patch) | |
tree | b6c2e3c7a0d845e9861917a4b3e65e0a90436e9b /Doc/tools | |
parent | 8be54bb5602235fde8f1516c3c0294f272f6f4a4 (diff) | |
download | cpython-b48f63433eca50588597d70cfe140e07e3bc085f.zip cpython-b48f63433eca50588597d70cfe140e07e3bc085f.tar.gz cpython-b48f63433eca50588597d70cfe140e07e3bc085f.tar.bz2 |
Merged revisions 73415,73417-73418 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73415 | benjamin.peterson | 2009-06-13 09:25:08 -0500 (Sat, 13 Jun 2009) | 1 line
use 'rc' for release candidates for consistency
........
r73417 | benjamin.peterson | 2009-06-13 10:42:23 -0500 (Sat, 13 Jun 2009) | 1 line
special case release candidates
........
r73418 | benjamin.peterson | 2009-06-13 10:48:04 -0500 (Sat, 13 Jun 2009) | 1 line
handle different rc format
........
Diffstat (limited to 'Doc/tools')
-rw-r--r-- | Doc/tools/sphinxext/patchlevel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tools/sphinxext/patchlevel.py b/Doc/tools/sphinxext/patchlevel.py index cb9e35c..082858e 100644 --- a/Doc/tools/sphinxext/patchlevel.py +++ b/Doc/tools/sphinxext/patchlevel.py @@ -41,7 +41,7 @@ def get_header_version_info(srcdir): suffixes = { 'PY_RELEASE_LEVEL_ALPHA': 'a', 'PY_RELEASE_LEVEL_BETA': 'b', - 'PY_RELEASE_LEVEL_GAMMA': 'c', + 'PY_RELEASE_LEVEL_GAMMA': 'rc', } if level != 'PY_RELEASE_LEVEL_FINAL': release += suffixes[level] + str(int(d['PY_RELEASE_SERIAL'])) |