[pypy-commit] pypy py3k: py3k-ify this test as well (again :-) (syntax, exec and local scope, StringIO)

antocuni noreply at buildbot.pypy.org
Thu Feb 9 12:24:33 CET 2012


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: py3k
Changeset: r52272:534d3371e9a7
Date: 2012-02-09 12:20 +0100
http://bitbucket.org/pypy/pypy/changeset/534d3371e9a7/

Log:	py3k-ify this test as well (again :-) (syntax, exec and local scope,
	StringIO)

diff --git a/pypy/interpreter/test/test_compiler.py b/pypy/interpreter/test/test_compiler.py
--- a/pypy/interpreter/test/test_compiler.py
+++ b/pypy/interpreter/test/test_compiler.py
@@ -891,11 +891,13 @@
         source = """def _f(a):
             return [x for x in a if None]
         """
-        exec source
-        code = _f.func_code
+        ns = {}
+        exec(source, ns)
+        code = ns['_f'].func_code
         
-        import StringIO, sys, dis
-        s = StringIO.StringIO()
+        import sys, dis
+        from io import StringIO
+        s = StringIO()
         out = sys.stdout
         sys.stdout = s
         try:


More information about the pypy-commit mailing list