Files @ 88ca10c9e31a
Branch filter:

Location: light9/stubs/twisted/internet/threads.pyi

Drew Perttula
hack up stubs to pass mypy. they're very weak right now
Ignore-this: f4c854346bc206725a1065079d8d158f
# Stubs for twisted.internet.threads (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.

from typing import Any

def deferToThreadPool(reactor: Any, threadpool: Any, f: Any, *args: Any, **kwargs: Any): ...
def deferToThread(f: Any, *args: Any, **kwargs: Any): ...
def callMultipleInThread(tupleList: Any) -> None: ...
def blockingCallFromThread(reactor: Any, f: Any, *a: Any, **kw: Any): ...