8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
asyncio.Queue.task_done
1 parent 1d2d62c commit c57ef49Copy full SHA for c57ef49
Doc/library/asyncio-queue.rst
@@ -115,11 +115,11 @@ Queue
115
116
.. method:: task_done()
117
118
- Indicate that a formerly enqueued task is complete.
+ Indicate that a formerly enqueued work item is complete.
119
120
Used by queue consumers. For each :meth:`~Queue.get` used to
121
- fetch a task, a subsequent call to :meth:`task_done` tells the
122
- queue that the processing on the task is complete.
+ fetch a work item, a subsequent call to :meth:`task_done` tells the
+ queue that the processing on the work item is complete.
123
124
If a :meth:`join` is currently blocking, it will resume when all
125
items have been processed (meaning that a :meth:`task_done`
0 commit comments