8000 gh-121464: Make concurrent iteration over enumerate safe under free-threading by eendebakpt · Pull Request #125734 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content
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
Next Next commit
remove debug statement
  • Loading branch information
eendebakpt committed Jan 4, 2025
commit 7450a34fc15de4f7ea9dd3435fc1e4cfef2c28c2
1 change: 0 additions & 1 deletion Lib/test/test_free_threading/test_enumerate.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ def test_threading(self):
def work(enum):
while True:
if workers_enabled:
print('go!')
try:
_ = next(enum)
except StopIteration:
Expand Down
0