Project v1
This commit is contained in:
25
.vscode/Pico-W-Stub/_thread.pyi
vendored
Normal file
25
.vscode/Pico-W-Stub/_thread.pyi
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
"""
|
||||
Multithreading support.
|
||||
|
||||
MicroPython module: https://docs.micropython.org/en/v1.21.0/library/_thread.html
|
||||
|
||||
CPython module: :mod:`python:_thread` https://docs.python.org/3/library/_thread.html .
|
||||
|
||||
This module implements multithreading support.
|
||||
|
||||
This module is highly experimental and its API is not yet fully settled
|
||||
and not yet described in this documentation.
|
||||
"""
|
||||
from _typeshed import Incomplete, Incomplete as Incomplete
|
||||
|
||||
def get_ident(*args, **kwargs) -> Incomplete: ...
|
||||
def start_new_thread(*args, **kwargs) -> Incomplete: ...
|
||||
def stack_size(*args, **kwargs) -> Incomplete: ...
|
||||
def exit(*args, **kwargs) -> Incomplete: ...
|
||||
def allocate_lock(*args, **kwargs) -> Incomplete: ...
|
||||
|
||||
class LockType:
|
||||
def locked(self, *args, **kwargs) -> Incomplete: ...
|
||||
def release(self, *args, **kwargs) -> Incomplete: ...
|
||||
def acquire(self, *args, **kwargs) -> Incomplete: ...
|
||||
def __init__(self, *argv, **kwargs) -> None: ...
|
||||
Reference in New Issue
Block a user