Skip to content
Merged
Prev Previous commit
Next Next commit
remove redundant variable
  • Loading branch information
eendebakpt committed Feb 2, 2026
commit af909ce44756a6e3f08ffe812e6317f58adc6d0f
2 changes: 1 addition & 1 deletion Lib/test/test_free_threading/test_itertools.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def work(it):
barrier.wait()
while True:
try:
v = next(it)
next(it)
except StopIteration:
break

Expand Down
Loading