[pypy-svn] r25222 - pypy/dist/pypy/objspace/std/test

arigo at codespeak.net arigo at codespeak.net
Sun Apr 2 14:32:41 CEST 2006


Author: arigo
Date: Sun Apr  2 14:32:40 2006
New Revision: 25222

Modified:
   pypy/dist/pypy/objspace/std/test/test_unicodeobject.py
Log:
Workaround for inspect.py bug in Python 2.4.2 and 2.4.3.


Modified: pypy/dist/pypy/objspace/std/test/test_unicodeobject.py
==============================================================================
--- pypy/dist/pypy/objspace/std/test/test_unicodeobject.py	(original)
+++ pypy/dist/pypy/objspace/std/test/test_unicodeobject.py	Sun Apr  2 14:32:40 2006
@@ -33,6 +33,7 @@
             assert u'' in 'abc'
             assert u'bc' in 'abc'
             assert 'bc' in 'abc'
+        pass   # workaround for inspect.py bug in some Python 2.4s
 
     def test_contains(self):
         assert u'a' in 'abc'



More information about the Pypy-commit mailing list