Skip to content

Commit 6740c3f

Browse files
committed
Update asyncio docstring
1 parent 4d14799 commit 6740c3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/asyncio/queues.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,8 +257,8 @@ def shutdown(self, immediate=False):
257257
'immediate' to True to make gets raise immediately instead.
258258
259259
All blocked callers of put() and get() will be unblocked. If
260-
'immediate', a task is marked as done for each item remaining in
261-
the queue, which may unblock callers of join().
260+
'immediate', unblock callers of join() regardless of the
261+
number of unfinished tasks.
262262
"""
263263
self._is_shutdown = True
264264
if immediate:

0 commit comments

Comments
 (0)