Add asyncio.threads.__all__ (#7277)

This commit is contained in:
Alex Waygood
2022-02-19 02:45:58 +00:00
committed by GitHub
parent a9f80c64b9
commit e3e3db6fe5

View File

@@ -1,6 +1,7 @@
from typing import Callable, TypeVar
from typing_extensions import ParamSpec
__all__ = ("to_thread",)
_P = ParamSpec("_P")
_R = TypeVar("_R")