mirror of https://github.com/python/cpython
Merge 3.4 (asyncio doc)
This commit is contained in:
commit
7277761428
|
@ -428,13 +428,11 @@ Exceptions
|
||||||
|
|
||||||
.. exception:: QueueEmpty
|
.. exception:: QueueEmpty
|
||||||
|
|
||||||
Exception raised when non-blocking :meth:`~Queue.get` (or
|
Exception raised when the :meth:`~Queue.get_nowait` method is called on a
|
||||||
:meth:`~Queue.get_nowait`) is called
|
:class:`Queue` object which is empty.
|
||||||
on a :class:`Queue` object which is empty.
|
|
||||||
|
|
||||||
|
|
||||||
.. exception:: QueueFull
|
.. exception:: QueueFull
|
||||||
|
|
||||||
Exception raised when non-blocking :meth:`~Queue.put` (or
|
Exception raised when the :meth:`~Queue.put_nowait` method is called on a
|
||||||
:meth:`~Queue.put_nowait`) is called
|
:class:`Queue` object which is full.
|
||||||
on a :class:`Queue` object which is full.
|
|
||||||
|
|
|
@ -13,12 +13,16 @@ from .tasks import coroutine
|
||||||
|
|
||||||
|
|
||||||
class QueueEmpty(Exception):
|
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
|
pass
|
||||||
|
|
||||||
|
|
||||||
class QueueFull(Exception):
|
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
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue