Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r90619:46d13fbc30fe
Date: 2017-03-10 12:23 +0100
http://bitbucket.org/pypy/pypy/changeset/46d13fbc30fe/

Log:    skip this test on older CPython 2.7.x

diff --git a/pypy/module/cpyext/test/test_typeobject.py 
b/pypy/module/cpyext/test/test_typeobject.py
--- a/pypy/module/cpyext/test/test_typeobject.py
+++ b/pypy/module/cpyext/test/test_typeobject.py
@@ -980,6 +980,9 @@
             assert module.size_of_instances(bar) >= size
 
     def test_app_cant_subclass_two_types(self):
+        import sys
+        if sys.version_info < (2, 7, 9):
+            skip("crashes on CPython (2.7.5 crashes, 2.7.9 is ok)")
         module = self.import_module(name='foo')
         try:
             class bar(module.fooType, module.UnicodeSubtype):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to