[pypy-commit] pypy py3k: use py3k print syntax

gutworth noreply at buildbot.pypy.org
Tue Mar 13 21:50:26 CET 2012


Author: Benjamin Peterson <benjamin at python.org>
Branch: py3k
Changeset: r53488:ef0a59b0896d
Date: 2012-03-13 15:50 -0500
http://bitbucket.org/pypy/pypy/changeset/ef0a59b0896d/

Log:	use py3k print syntax

diff --git a/pypy/module/math/test/test_math.py b/pypy/module/math/test/test_math.py
--- a/pypy/module/math/test/test_math.py
+++ b/pypy/module/math/test/test_math.py
@@ -18,7 +18,7 @@
         import math
         for fnname, args, expected in self.cases:
             fn = getattr(math, fnname)
-            print fn, args
+            print(fn, args)
             try:
                 got = fn(*args)
             except ValueError:


More information about the pypy-commit mailing list