Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 841edad

Browse files
committed
Issue #4407: Fix source file that caused the compileall step in Windows
installer to fail.
1 parent 779281c commit 841edad

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

Lib/test/crashers/iter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def case8():
4646

4747
if __name__ == '__main__':
4848
if len(sys.argv) < 2:
49-
print __doc__.replace('<N>', str(N))
49+
print(__doc__.replace('<N>', str(N)))
5050
else:
5151
n = int(sys.argv[1])
5252
func = globals()['case%d' % n]

Misc/NEWS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ Library
4747
- Issue #4383: When IDLE cannot make the connection to its subprocess, it would
4848
fail to properly display the error message.
4949

50+
Build
51+
-----
52+
53+
- Issue #4407: Fix source file that caused the compileall step in Windows installer
54+
to fail.
55+
5056
Docs
5157
----
5258

0 commit comments

Comments
 (0)