Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pytype / typeshed / stdlib / asyncio / threads.pyi
Size: Mime:
import sys
from typing import Any, Callable, TypeVar

_T = TypeVar("_T")

if sys.version_info >= (3, 9):
    async def to_thread(__func: Callable[..., _T], *args: Any, **kwargs: Any) -> _T: ...