Author: Benjamin Peterson <benja...@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: _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit