Thanks to visit codestin.com Credit goes to github.com
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 91313af commit 9bcb7d8Copy full SHA for 9bcb7d8
1 file changed
Lib/test/test_import/__init__.py
@@ -3034,6 +3034,13 @@ def test_basic_multiple_interpreters_deleted_no_reset(self):
3034
def test_basic_multiple_interpreters_reset_each(self):
3035
# resetting between each interpreter
3036
3037
+ if Py_TRACE_REFS:
3038
+ # It's a Py_TRACE_REFS build.
3039
+ # This test breaks interpreter isolation a little,
3040
+ # which causes problems on Py_TRACE_REF builds.
3041
+ # See gh-121110.
3042
+ raise unittest.SkipTest('crashes on Py_TRACE_REFS builds')
3043
+
3044
# At this point:
3045
# * alive in 0 interpreters
3046
# * module def may or may not be loaded already
0 commit comments