Add asyncio.base_events.__all__ (#7264)

This commit is contained in:
Alex Waygood
2022-02-19 01:36:41 +00:00
committed by GitHub
parent ee4ee8bb0f
commit 9fb9a197b5

View File

@@ -14,6 +14,10 @@ from typing_extensions import Literal
if sys.version_info >= (3, 7):
from contextvars import Context
__all__ = ("BaseEventLoop",)
else:
__all__ = ["BaseEventLoop"]
_T = TypeVar("_T")
_ProtocolT = TypeVar("_ProtocolT", bound=BaseProtocol)
_Context = dict[str, Any]