mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
10 lines
215 B
Python
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: ...
|