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.
1 parent a92bcdb commit 47aebb6Copy full SHA for 47aebb6
1 file changed
Doc/library/asyncio-queue.rst
@@ -28,7 +28,7 @@ Queue
28
A first in, first out (FIFO) queue.
29
30
If *maxsize* is less than or equal to zero, the queue size is
31
- infinite. If it is an integer greater than ``0``, then
+ infinite. If it is an integer greater than ``0``, then
32
``await put()`` blocks when the queue reaches *maxsize*
33
until an item is removed by :meth:`get`.
34
@@ -54,8 +54,8 @@ Queue
54
55
Return ``True`` if there are :attr:`maxsize` items in the queue.
56
57
- If the queue was initialized with ``maxsize=0`` (the default),
58
- or a negative :attr:`maxsize:, then :meth:`full` never returns
+ If the queue was initialized with ``maxsize=0`` (the default)
+ or a negative ``maxsize``, then :meth:`full` never returns
59
``True``.
60
61
.. method:: get()
0 commit comments