Skip to content

Commit 814a6c0

Browse files
committed
chore: add module docstring
1 parent 2b70811 commit 814a6c0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

asyncio/queue.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
1+
"""
2+
Exceptions and classes related to asyncio Queue implementations.
3+
"""
4+
15
from . import event
26

37

48
class QueueEmpty(Exception):
59
"""Raised when Queue.get_nowait() is called on an empty Queue."""
6-
pass
710

811

912
class QueueFull(Exception):
1013
"""Raised when the Queue.put_nowait() method is called on a full Queue."""
11-
pass
1214

1315

1416
class Queue:

0 commit comments

Comments
 (0)