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
1 parent 3ff5822 commit 578d726Copy full SHA for 578d726
Lib/asyncio/queues.py
@@ -37,7 +37,7 @@ class Queue(mixins._LoopBoundMixin):
37
is an integer greater than 0, then "await put()" will block when the
38
queue reaches maxsize, until an item is removed by get().
39
40
- Unlike the standard library Queue, you can reliably know this Queue's size
+ Unlike queue.Queue, you can reliably know this Queue's size
41
with qsize(), since your single-threaded asyncio application won't be
42
interrupted between calling qsize() and doing an operation on the Queue.
43
"""
0 commit comments