summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2008-11-30 10:36:49 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2008-11-30 10:36:49 (GMT)
commit841edad43ceb903dbbc3b5f4621ec0628d2ca8dc (patch)
treece562e5c58d5c72c30978ec9ba0b7245de822d74 /Lib
parent779281caf78c4bedea42fa299d2069ec4e8482bc (diff)
downloadcpython-841edad43ceb903dbbc3b5f4621ec0628d2ca8dc.zip
cpython-841edad43ceb903dbbc3b5f4621ec0628d2ca8dc.tar.gz
cpython-841edad43ceb903dbbc3b5f4621ec0628d2ca8dc.tar.bz2
Issue #4407: Fix source file that caused the compileall step in Windows
installer to fail.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/crashers/iter.py2
1 files changed, 1 insertions, 1 deletions
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('<N>', str(N))
+ print(__doc__.replace('<N>', str(N)))
else:
n = int(sys.argv[1])
func = globals()['case%d' % n]