Files
PiDoorbell/.vscode/Pico-W-Stub/stdlib/asyncio/mixins.pyi
Ádám Kovács db76621806 Project v1
2023-11-02 16:02:16 +01:00

11 lines
232 B
Python

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