Author: Antonio Cuni <[email protected]>
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:
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to