[pypy-commit] pypy py3k: fix syntax

antocuni noreply at buildbot.pypy.org
Tue Feb 21 10:50:36 CET 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r52701:359ade7abb4c
Date: 2012-02-20 22:54 +0100
http://bitbucket.org/pypy/pypy/changeset/359ade7abb4c/

Log:	fix syntax

diff --git a/pypy/interpreter/test/test_pyframe.py b/pypy/interpreter/test/test_pyframe.py
--- a/pypy/interpreter/test/test_pyframe.py
+++ b/pypy/interpreter/test/test_pyframe.py
@@ -202,7 +202,7 @@
         x = f(4)
         sys.settrace(None)
         assert x == 42
-        print l
+        print(l)
         assert l == [(0, 'f', 'call', None),
                      (1, 'f', 'line', None),
                          (0, 'g', 'call', None),


More information about the pypy-commit mailing list