From 841edad43ceb903dbbc3b5f4621ec0628d2ca8dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Sun, 30 Nov 2008 10:36:49 +0000 Subject: Issue #4407: Fix source file that caused the compileall step in Windows installer to fail. --- Lib/test/crashers/iter.py | 2 +- Misc/NEWS | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Lib/test/crashers/iter.py b/Lib/test/crashers/iter.py index 081dcbc..0d8540e 100644 --- a/Lib/test/crashers/iter.py +++ b/Lib/test/crashers/iter.py @@ -46,7 +46,7 @@ def case8(): if __name__ == '__main__': if len(sys.argv) < 2: - print __doc__.replace('', str(N)) + print(__doc__.replace('', str(N))) else: n = int(sys.argv[1]) func = globals()['case%d' % n] diff --git a/Misc/NEWS b/Misc/NEWS index 7a833a3..d802692 100644 --- a/Misc/NEWS +++ b/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 +----- + +- Issue #4407: Fix source file that caused the compileall step in Windows installer + to fail. + Docs ---- -- cgit v0.12