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 2b70811 commit 814a6c0Copy full SHA for 814a6c0
asyncio/queue.py
@@ -1,14 +1,16 @@
1
+"""
2
+Exceptions and classes related to asyncio Queue implementations.
3
4
+
5
from . import event
6
7
8
class QueueEmpty(Exception):
9
"""Raised when Queue.get_nowait() is called on an empty Queue."""
- pass
10
11
12
class QueueFull(Exception):
13
"""Raised when the Queue.put_nowait() method is called on a full Queue."""
14
15
16
class Queue:
0 commit comments