Files
PiThermostat/.vscode/Pico-W-Stub/stdlib/asyncio/mixins.pyi
Ádám Kovács 36638e2dd1 MicroPython stuff
2023-11-07 14:00:27 +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: ...