]> granicus.if.org Git - python/commitdiff
asyncio, Tulip issue 221: Fix doc of QueueEmpty and QueueFull
authorVictor Stinner <victor.stinner@gmail.com>
Tue, 3 Feb 2015 14:09:24 +0000 (15:09 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Tue, 3 Feb 2015 14:09:24 +0000 (15:09 +0100)
Doc/library/asyncio-sync.rst
Lib/asyncio/queues.py

index 4cc9a9645c49cb5dc4e21b29ba02e69a404578e0..80974d9ee1823adb63b54beb260dd41cc6ec6dc8 100644 (file)
@@ -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.
index dce0d53c70389ce049f6462dea4d121707acc8c7..4aeb6c451797743cf8b80be9b00a8ddd67447254 100644 (file)
@@ -13,12 +13,16 @@ from .tasks import coroutine
 
 
 class QueueEmpty(Exception):
-    'Exception raised by Queue.get(block=0)/get_nowait().'
+    """Exception raised when Queue.get_nowait() is called on a Queue object
+    which is empty.
+    """
     pass
 
 
 class QueueFull(Exception):
-    'Exception raised by Queue.put(block=0)/put_nowait().'
+    """Exception raised when the Queue.put_nowait() method is called on a Queue
+    object which is full.
+    """
     pass