Author: Philip Jenvey <pjen...@underboss.org>
Branch: py3k
Changeset: r69144:84b7dca9f936
Date: 2014-02-14 18:17 -0800
http://bitbucket.org/pypy/pypy/changeset/84b7dca9f936/

Log:    2to3

diff --git a/pypy/module/__pypy__/test/test_locals2fast.py 
b/pypy/module/__pypy__/test/test_locals2fast.py
--- a/pypy/module/__pypy__/test/test_locals2fast.py
+++ b/pypy/module/__pypy__/test/test_locals2fast.py
@@ -61,7 +61,7 @@
         def check_co_vars(a):
             frame = sys._getframe()
             def function2():
-                print a
+                print(a)
             assert 'a' in frame.f_code.co_cellvars
             frame = sys._getframe()
             frame.f_locals['a'] = 50
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to