https://github.com/python/cpython/commit/fc0b1cbdfe72ba6155df33455a62c9d7042c9359 commit: fc0b1cbdfe72ba6155df33455a62c9d7042c9359 branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: ericsnowcurrently <ericsnowcurren...@gmail.com> date: 2024-07-01T18:23:35Z summary:
[3.13] gh-121110: Temporarily Skip test_basic_multiple_interpreters_reset_each (gh-121238) This will allow Py_TRACE_REFS builds to pass the test suite, until the underlying issue can be resolved. (cherry picked from commit 9bcb7d8c6f8277c4e76145ec4c834213167e3387, AKA gh-121236) Co-authored-by: Eric Snow <ericsnowcurren...@gmail.com> files: M Lib/test/test_import/__init__.py diff --git a/Lib/test/test_import/__init__.py b/Lib/test/test_import/__init__.py index f9e8558d1a71c8..99324838355056 100644 --- a/Lib/test/test_import/__init__.py +++ b/Lib/test/test_import/__init__.py @@ -3053,6 +3053,13 @@ def test_basic_multiple_interpreters_deleted_no_reset(self): def test_basic_multiple_interpreters_reset_each(self): # resetting between each interpreter + if Py_TRACE_REFS: + # It's a Py_TRACE_REFS build. + # This test breaks interpreter isolation a little, + # which causes problems on Py_TRACE_REF builds. + # See gh-121110. + raise unittest.SkipTest('crashes on Py_TRACE_REFS builds') + # At this point: # * alive in 0 interpreters # * module def may or may not be loaded already _______________________________________________ Python-checkins mailing list -- python-checkins@python.org To unsubscribe send an email to python-checkins-le...@python.org https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: arch...@mail-archive.com