mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
gh-96471: Correct documentation for asyncio queue shutdown (#117621)
This commit is contained in:
parent
26a680a585
commit
e16062dd34
3 changed files with 9 additions and 6 deletions
|
@ -106,9 +106,10 @@ Queue
|
|||
raise once the queue is empty. Set *immediate* to true to make
|
||||
:meth:`~Queue.get` raise immediately instead.
|
||||
|
||||
All blocked callers of :meth:`~Queue.put` will be unblocked. If
|
||||
*immediate* is true, also unblock callers of :meth:`~Queue.get`
|
||||
and :meth:`~Queue.join`.
|
||||
All blocked callers of :meth:`~Queue.put` and :meth:`~Queue.get`
|
||||
will be unblocked. If *immediate* is true, a task will be marked
|
||||
as done for each remaining item in the queue, which may unblock
|
||||
callers of :meth:`~Queue.join`.
|
||||
|
||||
.. versionadded:: 3.13
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue