Kaydet (Commit) 0805b28f authored tarafından Benjamin Peterson's avatar Benjamin Peterson

handle different rc format

üst fb234631
...@@ -119,7 +119,10 @@ docfile = "" ...@@ -119,7 +119,10 @@ docfile = ""
if micro: if micro:
docfile = str(micro) docfile = str(micro)
if level < 0xf: 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) docfile = 'python%s%s%s.chm' % (major, minor, docfile)
# Build the mingw import library, libpythonXY.a # Build the mingw import library, libpythonXY.a
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment