Thanks to visit codestin.com Credit goes to github.com
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 182234f commit 8bfc68fCopy full SHA for 8bfc68f
Doc/library/asyncio-queue.rst
@@ -94,11 +94,11 @@ Queue
94
95
.. method:: task_done()
96
97
- Indicate that a formerly enqueued task is complete.
+ Indicate that a formerly enqueued work item is complete.
98
99
Used by queue consumers. For each :meth:`~Queue.get` used to
100
- fetch a task, a subsequent call to :meth:`task_done` tells the
101
- 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.
102
103
If a :meth:`join` is currently blocking, it will resume when all
104
items have been processed (meaning that a :meth:`task_done`
0 commit comments