[Python-3000-checkins] r67448 - in python/branches/py3k: Lib/test/crashers/iter.py Misc/NEWS

martin.v.loewis python-3000-checkins at python.org
Sun Nov 30 11:36:49 CET 2008


Author: martin.v.loewis
Date: Sun Nov 30 11:36:49 2008
New Revision: 67448

Log:
Issue #4407: Fix source file that caused the compileall step in Windows
installer to fail.


Modified:
   python/branches/py3k/Lib/test/crashers/iter.py
   python/branches/py3k/Misc/NEWS

Modified: python/branches/py3k/Lib/test/crashers/iter.py
==============================================================================
--- python/branches/py3k/Lib/test/crashers/iter.py	(original)
+++ python/branches/py3k/Lib/test/crashers/iter.py	Sun Nov 30 11:36:49 2008
@@ -46,7 +46,7 @@
 
 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]

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS	(original)
+++ python/branches/py3k/Misc/NEWS	Sun Nov 30 11:36:49 2008
@@ -47,6 +47,12 @@
 - 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
 ----
 


More information about the Python-3000-checkins mailing list