Commit 841edad4 authored by Martin v. Löwis's avatar Martin v. Löwis

Issue #4407: Fix source file that caused the compileall step in Windows

installer to fail.
parent 779281ca
...@@ -46,7 +46,7 @@ def case8(): ...@@ -46,7 +46,7 @@ def case8():
if __name__ == '__main__': if __name__ == '__main__':
if len(sys.argv) < 2: if len(sys.argv) < 2:
print __doc__.replace('<N>', str(N)) print(__doc__.replace('<N>', str(N)))
else: else:
n = int(sys.argv[1]) n = int(sys.argv[1])
func = globals()['case%d' % n] func = globals()['case%d' % n]
......
...@@ -47,6 +47,12 @@ Library ...@@ -47,6 +47,12 @@ Library
- Issue #4383: When IDLE cannot make the connection to its subprocess, it would - Issue #4383: When IDLE cannot make the connection to its subprocess, it would
fail to properly display the error message. fail to properly display the error message.
Build
-----
- Issue #4407: Fix source file that caused the compileall step in Windows installer
to fail.
Docs Docs
---- ----
......
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