mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
8 lines
160 B
Python
8 lines
160 B
Python
import threading
|
|
from typing import NoReturn
|
|
|
|
_global_lock: threading.Lock
|
|
|
|
class _LoopBoundMixin:
|
|
def __init__(self, *, loop: NoReturn = ...) -> None: ...
|