[pypy-svn] r49242 - pypy/dist/pypy/rlib/test

cfbolz at codespeak.net cfbolz at codespeak.net
Sat Dec 1 12:49:11 CET 2007


Author: cfbolz
Date: Sat Dec  1 12:49:09 2007
New Revision: 49242

Modified:
   pypy/dist/pypy/rlib/test/test_rope.py
Log:
the test hit a bug under 2.4 and 2.3


Modified: pypy/dist/pypy/rlib/test/test_rope.py
==============================================================================
--- pypy/dist/pypy/rlib/test/test_rope.py	(original)
+++ pypy/dist/pypy/rlib/test/test_rope.py	Sat Dec  1 12:49:09 2007
@@ -479,6 +479,8 @@
 
 
 def test_find_iterator_unicode():
+    if sys.version_info > (2, 5):
+        py.test.skip("bug in unicode.find that was fixed in 2.5")
     for searchstring in [
         u"\uAAAA\uBBBB\uCCCC", u"\uAAAA", u"", u"\u6666",
         u"\u6666\u7777\u8888",



More information about the Pypy-commit mailing list