]> granicus.if.org Git - python/commitdiff
Issue #4407: Fix source file that caused the compileall step in Windows
authorMartin v. Löwis <martin@v.loewis.de>
Sun, 30 Nov 2008 10:36:49 +0000 (10:36 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Sun, 30 Nov 2008 10:36:49 +0000 (10:36 +0000)
installer to fail.

Lib/test/crashers/iter.py
Misc/NEWS

index 081dcbc2696ab0b894d9bd1ca91326cd02678b62..0d8540e2b9501920a2686e7f854861a0d87b210f 100644 (file)
@@ -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]
index 7a833a311218c90bb736d6314954cc71b7856a5e..d80269277c709869e5db6c707b84b883da561ab9 100644 (file)
--- 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
 ----