summaryrefslogtreecommitdiffstats
path: root/Lib/test/crashers/iter.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/crashers/iter.py')
-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]