summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-02-03 15:09:24 +0100
committerVictor Stinner <victor.stinner@gmail.com>2015-02-03 15:09:24 +0100
commit9959414f3f9fc8d2d82a41d8156db640fa5a70a8 (patch)
tree6e767bdd3342dd0c65977e7faab58e62e4b301a7 /Doc
parent0652bea83533184961d485149551b51cf58f9bdc (diff)
downloadcpython-9959414f3f9fc8d2d82a41d8156db640fa5a70a8.tar.gz
asyncio, Tulip issue 221: Fix doc of QueueEmpty and QueueFull
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/asyncio-sync.rst10
1 files changed, 4 insertions, 6 deletions
diff --git a/Doc/library/asyncio-sync.rst b/Doc/library/asyncio-sync.rst
index 4cc9a9645c..80974d9ee1 100644
--- a/Doc/library/asyncio-sync.rst
+++ b/Doc/library/asyncio-sync.rst
@@ -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.