06-WPO-23Z-projekt-python/.env/lib/python3.11/site-packages/numpy/core/_type_aliases.pyi
2024-01-13 18:51:41 +01:00

14 lines
404 B
Python

from typing import Any, TypedDict
from numpy import generic, signedinteger, unsignedinteger, floating, complexfloating
class _SCTypes(TypedDict):
int: list[type[signedinteger[Any]]]
uint: list[type[unsignedinteger[Any]]]
float: list[type[floating[Any]]]
complex: list[type[complexfloating[Any, Any]]]
others: list[type]
sctypeDict: dict[int | str, type[generic]]
sctypes: _SCTypes