From 8fd630051d0de692386dd6dba96fc63640cff742 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Sat, 19 Feb 2022 01:45:21 +0000 Subject: [PATCH] Add `asyncio.exceptions.__all__` (#7267) --- stdlib/asyncio/exceptions.pyi | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/stdlib/asyncio/exceptions.pyi b/stdlib/asyncio/exceptions.pyi index aec2e1685..a1bc2c16a 100644 --- a/stdlib/asyncio/exceptions.pyi +++ b/stdlib/asyncio/exceptions.pyi @@ -1,3 +1,12 @@ +__all__ = ( + "CancelledError", + "InvalidStateError", + "TimeoutError", + "IncompleteReadError", + "LimitOverrunError", + "SendfileNotAvailableError", +) + class CancelledError(BaseException): ... class TimeoutError(Exception): ... class InvalidStateError(Exception): ...