Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 779281c commit 841edadCopy full SHA for 841edad
2 files changed
Lib/test/crashers/iter.py
@@ -46,7 +46,7 @@ def case8():
46
47
if __name__ == '__main__':
48
if len(sys.argv) < 2:
49
- print __doc__.replace('<N>', str(N))
+ print(__doc__.replace('<N>', str(N)))
50
else:
51
n = int(sys.argv[1])
52
func = globals()['case%d' % n]
Misc/NEWS
@@ -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
+-----
+
53
+- Issue #4407: Fix source file that caused the compileall step in Windows installer
54
+ to fail.
55
56
Docs
57
----
58
0 commit comments