Files
typeshed/stdlib/asyncio/mixins.pyi
2022-08-17 21:53:40 +01:00

10 lines
215 B
Python

import sys
import threading
from typing_extensions import Never
_global_lock: threading.Lock
class _LoopBoundMixin:
if sys.version_info < (3, 11):
def __init__(self, *, loop: Never = ...) -> None: ...