mirror of
https://github.com/python/cpython.git
synced 2025-08-01 23:53:15 +00:00
handle different rc format
This commit is contained in:
parent
fb23463139
commit
0805b28fd2
1 changed files with 4 additions and 1 deletions
|
@ -119,7 +119,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