Initial configuration commit

This commit is contained in:
Alex Selimov 2023-10-24 22:54:55 -04:00
commit 31c8abea59
266 changed files with 780274 additions and 0 deletions

View file

@ -0,0 +1,11 @@
"""
This type stub file was generated by pyright.
"""
from numpy._pytesttester import PytestTester
from numpy import matrix as matrix
from numpy.matrixlib.defmatrix import asmatrix as asmatrix, bmat as bmat, mat as mat
__all__: list[str]
__path__: list[str]
test: PytestTester

View file

@ -0,0 +1,17 @@
"""
This type stub file was generated by pyright.
"""
from collections.abc import Mapping, Sequence
from typing import Any
from numpy import matrix as matrix
from numpy._typing import ArrayLike, DTypeLike, NDArray
__all__: list[str]
def bmat(obj: str | Sequence[ArrayLike] | NDArray[Any], ldict: None | Mapping[str, Any] = ..., gdict: None | Mapping[str, Any] = ...) -> matrix[Any, Any]:
...
def asmatrix(data: ArrayLike, dtype: DTypeLike = ...) -> matrix[Any, Any]:
...
mat = ...