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

16 lines
565 B
Python

from _typeshed import Incomplete as Incomplete
class ThreadSafeFlag:
def set(self, *args, **kwargs) -> Incomplete: ...
def ioctl(self, *args, **kwargs) -> Incomplete: ...
def clear(self, *args, **kwargs) -> Incomplete: ...
wait: Incomplete
def __init__(self, *argv, **kwargs) -> None: ...
class Event:
def set(self, *args, **kwargs) -> Incomplete: ...
def is_set(self, *args, **kwargs) -> Incomplete: ...
def clear(self, *args, **kwargs) -> Incomplete: ...
wait: Incomplete
def __init__(self, *argv, **kwargs) -> None: ...