[Python-checkins] cpython (merge default -> default): Merge

antoine.pitrou python-checkins at python.org
Wed Feb 15 22:34:41 CET 2012


http://hg.python.org/cpython/rev/e9d01c5c92ed
changeset:   74966:e9d01c5c92ed
parent:      74964:9ab501b3e22d
parent:      74962:170a224ce01e
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Wed Feb 15 22:30:29 2012 +0100
summary:
  Merge

files:
  Lib/test/test_pep3120.py |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Lib/test/test_pep3120.py b/Lib/test/test_pep3120.py
--- a/Lib/test/test_pep3120.py
+++ b/Lib/test/test_pep3120.py
@@ -19,8 +19,8 @@
         try:
             import test.badsyntax_pep3120
         except SyntaxError as msg:
-            msg = str(msg).lower()
-            self.assertTrue('utf-8' in msg or 'utf8' in msg)
+            msg = str(msg)
+            self.assertTrue('Non-UTF-8 code starting with' in msg)
         else:
             self.fail("expected exception didn't occur")
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list