# Python test set -- part 6, built-in types
-from test.support import run_with_locale, is_apple_mobile, cpython_only, MISSING_C_DOCSTRINGS
+from test.support import (
+ run_with_locale, is_apple_mobile, cpython_only, no_rerun,
+ MISSING_C_DOCSTRINGS,
+)
import collections.abc
from collections import namedtuple, UserDict
import copy
import test.support.interpreters.channels
@cpython_only
+ @no_rerun('channels (and queues) might have a refleak; see gh-122199')
@unittest.skipIf(is_apple_mobile, "Fails on iOS due to test ordering; see #121832.")
def test_slot_wrappers(self):
rch, sch = interpreters.channels.create()