Skip to content
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

GH-111693: Propagate correct asyncio.CancelledError instance out of asyncio.Condition.wait() #111694

Merged
merged 14 commits into from
Jan 8, 2024
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
Fix comment typo
  • Loading branch information
gvanrossum authored Dec 30, 2023
commit 8802dfa7ad2cb085ba6168df9720d758dbf0cf9c
2 changes: 1 addition & 1 deletion Lib/test/test_asyncio/test_locks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,7 @@ async def c1(result):
return True

async def c2(result):
# second task begins by releasing semaphore three times, for c1, c2, and c2
# second task begins by releasing semaphore three times, for c1, c2, and c3
sem.release()
sem.release()
sem.release()
Expand Down
Loading