Author: Manuel Jacob <[email protected]>
Branch: py3.3
Changeset: r76060:829c84510c32
Date: 2015-02-22 23:21 +0100
http://bitbucket.org/pypy/pypy/changeset/829c84510c32/

Log:    Skip array test in lib-python which doesn't make sense without
        flexible string representation.

diff --git a/lib-python/3/test/test_array.py b/lib-python/3/test/test_array.py
--- a/lib-python/3/test/test_array.py
+++ b/lib-python/3/test/test_array.py
@@ -1075,6 +1075,8 @@
         self.assertRaises(TypeError, a.fromunicode)
 
     def test_issue17223(self):
+        if support.check_impl_detail(pypy=True):
+            self.skipTest("specific to flexible string representation")
         # this used to crash
         if sizeof_wchar == 4:
             # U+FFFFFFFF is an invalid code point in Unicode 6.0
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to