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 a642f6a commit 0af9e6aCopy full SHA for 0af9e6a
1 file changed
tests/test_free_threading.py
@@ -20,6 +20,9 @@ def test_race_condition_iterator_vs_mutation(
20
a standard Python `RuntimeError` ('MultiDict is changed during iteration'), preventing
21
crashes.
22
"""
23
+ if cls.__module__ == "multidict._multidict_py":
24
+ pytest.skip("Test is only applicable to the C extension")
25
+
26
md: Union[CIMultiDict[str], MultiDict[str]] = cls()
27
for i in range(8):
28
md[f"init-{i}"] = f"v{i}"
0 commit comments