16 lines
565 B
Python
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: ...
|