From e3e3db6fe543256f9af708774f97c827852a0415 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Sat, 19 Feb 2022 02:45:58 +0000 Subject: [PATCH] Add `asyncio.threads.__all__` (#7277) --- stdlib/asyncio/threads.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/asyncio/threads.pyi b/stdlib/asyncio/threads.pyi index dbb15bb8f..ac3a5c56b 100644 --- a/stdlib/asyncio/threads.pyi +++ b/stdlib/asyncio/threads.pyi @@ -1,6 +1,7 @@ from typing import Callable, TypeVar from typing_extensions import ParamSpec +__all__ = ("to_thread",) _P = ParamSpec("_P") _R = TypeVar("_R")