Micropython project base
This commit is contained in:
13
.vscode/Pico-W-Stub/asyncio/lock.pyi
vendored
Normal file
13
.vscode/Pico-W-Stub/asyncio/lock.pyi
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
from . import core as core
|
||||
from _typeshed import Incomplete
|
||||
from collections.abc import Generator
|
||||
|
||||
class Lock:
|
||||
state: int
|
||||
waiting: Incomplete
|
||||
def __init__(self) -> None: ...
|
||||
def locked(self): ...
|
||||
def release(self) -> None: ...
|
||||
def acquire(self) -> Generator[None, None, Incomplete]: ...
|
||||
async def __aenter__(self): ...
|
||||
async def __aexit__(self, exc_type, exc, tb): ...
|
||||
Reference in New Issue
Block a user