10 lines
224 B
Python
10 lines
224 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: ...
|