Skip to content

Commit

Permalink
chore: add module docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
imnotjames committed Oct 30, 2023
1 parent 2b70811 commit 814a6c0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions asyncio/queue.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
"""

Check failure on line 1 in asyncio/queue.py

View workflow job for this annotation

GitHub Actions / test

reformatted
Exceptions and classes related to asyncio Queue implementations.
"""

from . import event


class QueueEmpty(Exception):
"""Raised when Queue.get_nowait() is called on an empty Queue."""
pass


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


class Queue:
Expand Down

0 comments on commit 814a6c0

Please sign in to comment.