Author: Manuel Jacob <[email protected]>
Branch: py3k
Changeset: r77730:9b3b3a3aaffb
Date: 2015-05-31 21:08 +0200
http://bitbucket.org/pypy/pypy/changeset/9b3b3a3aaffb/

Log:    Remove test that doesn't apply to py3k.

diff --git a/pypy/interpreter/test/test_exec.py 
b/pypy/interpreter/test/test_exec.py
--- a/pypy/interpreter/test/test_exec.py
+++ b/pypy/interpreter/test/test_exec.py
@@ -200,14 +200,6 @@
         assert len(x) == 6
         assert ord(x[0]) == 0x0439
 
-    def test_exec_tuple(self):
-        # note: this is VERY different than testing exec("a = 42", d), because
-        # this specific case is handled specially by the AST compiler
-        d = {}
-        x = ("a = 42", d)
-        exec x
-        assert d['a'] == 42
-
     def test_issue3297(self):
         c = compile("a, b = '\U0001010F', '\\U0001010F'", "dummy", "exec")
         d = {}
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to