We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 396edb1 commit e5e2508Copy full SHA for e5e2508
Lib/test/test_capi/test_type.py
@@ -1,4 +1,4 @@
1
-from test.support import import_helper
+from test.support import import_helper, Py_GIL_DISABLED, refleak_helper
2
import unittest
3
4
_testcapi = import_helper.import_module('_testcapi')
@@ -37,6 +37,9 @@ class D(A, C): pass
37
# as well
38
type_freeze(D)
39
40
+ @unittest.skipIf(
41
+ Py_GIL_DISABLED and refleak_helper.hunting_for_refleaks(),
42
+ "Specialization failure triggers gh-127773")
43
def test_freeze_meta(self):
44
"""test PyType_Freeze() with overridden MRO"""
45
type_freeze = _testcapi.type_freeze
0 commit comments