We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24a455a commit 6eb6e60Copy full SHA for 6eb6e60
Lib/test/test_import/__init__.py
@@ -2539,6 +2539,12 @@ def test_basic_multiple_interpreters_main_no_reset(self):
2539
def test_basic_multiple_interpreters_deleted_no_reset(self):
2540
# without resetting; already loaded in a deleted interpreter
2541
2542
+ if hasattr(sys, 'getobjects'):
2543
+ # It's a Py_TRACE_REFS build.
2544
+ # This test breaks interpreter isolation a little,
2545
+ # which causes problems on Py_TRACE_REF builds.
2546
+ raise unittest.SkipTest('crashes on Py_TRACE_REFS builds')
2547
+
2548
# At this point:
2549
# * alive in 0 interpreters
2550
# * module def may or may not be loaded already
0 commit comments