You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/numpy/core/_type_aliases.pyi

20 lines
520 B

import sys
from typing import Dict, Union, Type, List
from numpy import generic, signedinteger, unsignedinteger, floating, complexfloating
if sys.version_info >= (3, 8):
from typing import TypedDict
else:
from typing_extensions import TypedDict
class _SCTypes(TypedDict):
int: List[Type[signedinteger]]
uint: List[Type[unsignedinteger]]
float: List[Type[floating]]
complex: List[Type[complexfloating]]
others: List[type]
sctypeDict: Dict[Union[int, str], Type[generic]]
sctypes: _SCTypes