[pypy-svn] r67278 - pypy/trunk/pypy/interpreter/test

benjamin at codespeak.net benjamin at codespeak.net
Fri Aug 28 15:28:31 CEST 2009


Author: benjamin
Date: Fri Aug 28 15:28:30 2009
New Revision: 67278

Modified:
   pypy/trunk/pypy/interpreter/test/test_compiler.py
Log:
2.4 raises a UnicodeError

Modified: pypy/trunk/pypy/interpreter/test/test_compiler.py
==============================================================================
--- pypy/trunk/pypy/interpreter/test/test_compiler.py	(original)
+++ pypy/trunk/pypy/interpreter/test/test_compiler.py	Fri Aug 28 15:28:30 2009
@@ -652,6 +652,7 @@
     elif sys.version_info < (2, 5):
         def skip_on_2_4(self):
             py.test.skip("syntax not supported by the CPython 2.4 compiler")
+        _unicode_error_kind = "w_UnicodeError"
         test_continue_in_nested_finally = skip_on_2_4
         test_try_except_finally = skip_on_2_4
         test_yield_in_finally = skip_on_2_4



More information about the Pypy-commit mailing list