tests/seq.py
changeset 28722 2cd8c3b0bd11
parent 28721 ff3be5a325bc
child 35150 08b8b56bd2e8
--- a/tests/seq.py	Sat Apr 02 17:28:35 2016 +0300
+++ b/tests/seq.py	Sat Apr 02 17:29:38 2016 +0300
@@ -7,7 +7,7 @@
 #   seq START STOP        [START, STOP] stepping by 1
 #   seq START STEP STOP   [START, STOP] stepping by STEP
 
-from __future__ import absolute_import
+from __future__ import absolute_import, print_function
 import sys
 
 start = 1
@@ -21,4 +21,4 @@
 stop = int(sys.argv[-1]) + 1
 
 for i in xrange(start, stop, step):
-    print i
+    print(i)