Project v1

This commit is contained in:
Ádám Kovács
2023-11-02 16:02:16 +01:00
parent 70e8d2d79a
commit db76621806
171 changed files with 23617 additions and 0 deletions

33
.vscode/Pico-W-Stub/uarray.pyi vendored Normal file
View File

@@ -0,0 +1,33 @@
"""
Efficient arrays of numeric data.
MicroPython module: https://docs.micropython.org/en/v1.21.0/library/array.html
CPython module: :mod:`python:array` https://docs.python.org/3/library/array.html .
Supported format codes: ``b``, ``B``, ``h``, ``H``, ``i``, ``I``, ``l``,
``L``, ``q``, ``Q``, ``f``, ``d`` (the latter 2 depending on the
floating-point support).
"""
from _typeshed import Incomplete, Incomplete as Incomplete
from typing import Any, List, Optional
class array:
"""
Create array with elements of given type. Initial contents of the
array are given by *iterable*. If it is not provided, an empty
array is created.
"""
def extend(self, iterable) -> Incomplete:
"""
Append new elements as contained in *iterable* to the end of
array, growing it.
"""
...
def append(self, val) -> Incomplete:
"""
Append new element *val* to the end of array, growing it.
"""
...
def __init__(self, typecode, iterable: Optional[Any] = None) -> None: ...