Skip to content

Commit 49f7dbb

Browse files
authored
Fix asyncio.Queue documentation ambiguity
1 parent 5992238 commit 49f7dbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/asyncio/queues.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class Queue(mixins._LoopBoundMixin):
3737
is an integer greater than 0, then "await put()" will block when the
3838
queue reaches maxsize, until an item is removed by get().
3939
40-
Unlike the standard library Queue, you can reliably know this Queue's size
40+
Unlike the thread-safe queue.Queue, you can reliably know this Queue's size
4141
with qsize(), since your single-threaded asyncio application won't be
4242
interrupted between calling qsize() and doing an operation on the Queue.
4343
"""

0 commit comments

Comments
 (0)