mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
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 ........
This commit is contained in:
parent
8be54bb560
commit
b48f63433e
3 changed files with 9 additions and 4 deletions
|
@ -120,7 +120,10 @@ docfile = ""
|
|||
if micro:
|
||||
docfile = str(micro)
|
||||
if level < 0xf:
|
||||
docfile = '%x%s' % (level, serial)
|
||||
if level == 0xC:
|
||||
docfile = "rc%s" % (serial,)
|
||||
else:
|
||||
docfile = '%x%s' % (level, serial)
|
||||
docfile = 'python%s%s%s.chm' % (major, minor, docfile)
|
||||
|
||||
# Build the mingw import library, libpythonXY.a
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue