We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 015795a commit 50c19f6Copy full SHA for 50c19f6
1 file changed
Lib/test/test_free_threading/test_slots.py
@@ -56,7 +56,6 @@ class Spam:
56
]
57
58
spam = Spam()
59
- iters = 1_000
60
non_seq_cst_behaviour_observed = False
61
62
def deleter():
@@ -80,7 +79,7 @@ def deleter():
80
79
# falsifying the assumption that `del spam.eggs` was
81
# atomic. The test fails if this point is reached.
82
83
- for _ in range(iters):
+ for _ in range(10):
84
spam.eggs = 0
85
spam.foo = 0
86
barrier = _testcapi.SpinningBarrier(2)
0 commit comments