Author: Amaury Forgeot d'Arc <[email protected]>
Branch: py3.3
Changeset: r72350:b0c62d972ccf
Date: 2014-07-03 23:54 +0200
http://bitbucket.org/pypy/pypy/changeset/b0c62d972ccf/

Log:    Python3.3 slightly changed the error message

diff --git a/pypy/interpreter/astcompiler/test/test_compiler.py 
b/pypy/interpreter/astcompiler/test/test_compiler.py
--- a/pypy/interpreter/astcompiler/test/test_compiler.py
+++ b/pypy/interpreter/astcompiler/test/test_compiler.py
@@ -347,7 +347,7 @@
                 A().m()
             except ImportError as e:
                 msg = str(e)
-            ''', "msg", "No module named __foo__")
+            ''', "msg", "No module named '__foo__'")
 
     def test_if_stmts(self):
         yield self.st, "a = 42\nif a > 10: a += 2", "a", 44
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to