mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
asyncio, Tulip issue 221: Fix doc of QueueEmpty and QueueFull
This commit is contained in:
parent
3265344a85
commit
17d87f8ae4
2 changed files with 10 additions and 8 deletions
|
@ -428,13 +428,11 @@ Exceptions
|
|||
|
||||
.. exception:: QueueEmpty
|
||||
|
||||
Exception raised when non-blocking :meth:`~Queue.get` (or
|
||||
:meth:`~Queue.get_nowait`) is called
|
||||
on a :class:`Queue` object which is empty.
|
||||
Exception raised when the :meth:`~Queue.get_nowait` method is called on a
|
||||
:class:`Queue` object which is empty.
|
||||
|
||||
|
||||
.. exception:: QueueFull
|
||||
|
||||
Exception raised when non-blocking :meth:`~Queue.put` (or
|
||||
:meth:`~Queue.put_nowait`) is called
|
||||
on a :class:`Queue` object which is full.
|
||||
Exception raised when the :meth:`~Queue.put_nowait` method is called on a
|
||||
:class:`Queue` object which is full.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue