[Python-checkins] r73415 - python/trunk/Doc/tools/sphinxext/patchlevel.py
benjamin.peterson
python-checkins at python.org
Sat Jun 13 16:25:09 CEST 2009
Author: benjamin.peterson
Date: Sat Jun 13 16:25:08 2009
New Revision: 73415
Log:
use 'rc' for release candidates for consistency
Modified:
python/trunk/Doc/tools/sphinxext/patchlevel.py
Modified: python/trunk/Doc/tools/sphinxext/patchlevel.py
==============================================================================
--- python/trunk/Doc/tools/sphinxext/patchlevel.py (original)
+++ python/trunk/Doc/tools/sphinxext/patchlevel.py Sat Jun 13 16:25:08 2009
@@ -41,7 +41,7 @@
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']))
More information about the Python-checkins
mailing list