[pypy-commit] pypy py3.3: hg merge py3k

mjacob noreply at buildbot.pypy.org
Mon Aug 17 14:15:49 CEST 2015


Author: Manuel Jacob <me at manueljacob.de>
Branch: py3.3
Changeset: r79015:7454e904e49c
Date: 2015-08-17 03:02 +0200
http://bitbucket.org/pypy/pypy/changeset/7454e904e49c/

Log:	hg merge py3k

diff --git a/pypy/goal/targetpypystandalone.py b/pypy/goal/targetpypystandalone.py
--- a/pypy/goal/targetpypystandalone.py
+++ b/pypy/goal/targetpypystandalone.py
@@ -181,7 +181,7 @@
                 if not hasattr(sys, '_pypy_execute_source'):
                     sys._pypy_execute_source = []
                 sys._pypy_execute_source.append(glob)
-                exec stmt in glob
+                exec(stmt, glob)
             """)
         except OperationError, e:
             debug("OperationError:")


More information about the pypy-commit mailing list