We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
asyncio.Queue.task_done
1 parent b2adf55 commit 4322a31Copy full SHA for 4322a31
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