8000 gh-135639: fix `test_cycle` test by kumaraditya303 · Pull Request #135662 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-135639: fix test_cycle test #135662

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 18, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update Lib/test/test_free_threading/test_itertools.py
Co-authored-by: Victor Stinner <vstinner@python.org>
  • Loading branch information
kumaraditya303 and vstinner authored Jun 18, 2025
commit d767e72d5b67cd48928e632606f070dbbdfb27f8
2 changes: 1 addition & 1 deletion Lib/test/test_free_threading/test_itertools.py
Original file line number Diff line 6594 number Diff line change
Expand Up @@ -45,7 +45,7 @@ def work(it):
barrier.wait()
for _ in range(number_of_cycles):
try:
_ = next(it)
next(it)
except StopIteration:
pass

Expand Down
Loading
0