mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Issue #4407: Fix source file that caused the compileall step in Windows
installer to fail.
This commit is contained in:
parent
779281caf7
commit
841edad43c
2 changed files with 7 additions and 1 deletions
|
@ -46,7 +46,7 @@ def case8():
|
|||
|
||||
if __name__ == '__main__':
|
||||
if len(sys.argv) < 2:
|
||||
print __doc__.replace('<N>', str(N))
|
||||
print(__doc__.replace('<N>', str(N)))
|
||||
else:
|
||||
n = int(sys.argv[1])
|
||||
func = globals()['case%d' % n]
|
||||
|
|
|
@ -47,6 +47,12 @@ Library
|
|||
- Issue #4383: When IDLE cannot make the connection to its subprocess, it would
|
||||
fail to properly display the error message.
|
||||
|
||||
Build
|
||||
-----
|
||||
|
||||
- Issue #4407: Fix source file that caused the compileall step in Windows installer
|
||||
to fail.
|
||||
|
||||
Docs
|
||||
----
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue