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 bea5f93 commit d918a8aCopy full SHA for d918a8a
Lib/test/test_import/__init__.py
@@ -2555,6 +2555,12 @@ def test_basic_multiple_interpreters_main_no_reset(self):
2555
def test_basic_multiple_interpreters_deleted_no_reset(self):
2556
# without resetting; already loaded in a deleted interpreter
2557
2558
+ if hasattr(sys, 'getobjects'):
2559
+ # It's a Py_TRACE_REFS build.
2560
+ # This test breaks interpreter isolation a little,
2561
+ # which causes problems on Py_TRACE_REF builds.
2562
+ raise unittest.SkipTest('crashes on Py_TRACE_REFS builds')
2563
+
2564
# At this point:
2565
# * alive in 0 interpreters
2566
# * module def may or may not be loaded already
0 commit comments