]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-122199: Skip test_slot_wrappers When Checking For Refleaks (gh-122202)
authorEric Snow <ericsnowcurrently@gmail.com>
Tue, 23 Jul 2024 21:53:39 +0000 (15:53 -0600)
committerGitHub <noreply@github.com>
Tue, 23 Jul 2024 21:53:39 +0000 (21:53 +0000)
(cherry picked from commit 41a91bd67f86c922f350894a797738038536e1c5, AKA gh-122200)

Lib/test/test_types.py

index d6d760c2814cff1257a144fd6098b949255edaf7..51a34271e781b8bc8b1a0408b74ffa1733520fcc 100644 (file)
@@ -1,6 +1,7 @@
 # Python test set -- part 6, built-in types
 
 from test.support import run_with_locale, cpython_only, MISSING_C_DOCSTRINGS
+from test.test_import import no_rerun
 import collections.abc
 from collections import namedtuple, UserDict
 import copy
@@ -2378,6 +2379,7 @@ class SubinterpreterTests(unittest.TestCase):
         import test.support.interpreters.channels
 
     @cpython_only
+    @no_rerun('channels (and queues) might have a refleak; see gh-122199')
     def test_slot_wrappers(self):
         rch, sch = interpreters.channels.create()