8000 gh-112202: Ensure that condition.notify() succeeds even when racing with Task.cancel() by kristjanvalur · Pull Request #112201 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-112202: Ensure that condition.notify() succeeds even when racing with Task.cancel() #112201

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 8 commits into from
Feb 3, 2024
Prev Previous commit
Next Next commit
Update Doc/library/asyncio-sync.rst
Co-authored-by: Guido van Rossum <gvanrossum@gmail.com>
  • Loading branch information
kristjanvalur and gvanrossum committed Jan 12, 2024
commit c8e6b13f490e3efa9c1a1e21b7f878a9032c3f6f
2 changes: 1 addition & 1 deletion Doc/library/asyncio-sync.rst
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ Condition

The predicate must be a callable which result will be
interpreted as a boolean value. The method will repeatedly
:meth:`wait` unil it evaluates to *true*. The final value is the
:meth:`wait` until the predicate evaluates to *true*. The final value is the
return value.


Expand Down
0