X7ROOT File Manager
Current Path:
/opt/cloudlinux/venv/lib/python3.11/site-packages/numpy/_typing
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
numpy
/
_typing
/
ðŸ“
..
📄
__init__.py
(6.84 KB)
ðŸ“
__pycache__
📄
_add_docstring.py
(3.83 KB)
📄
_array_like.py
(4.14 KB)
📄
_callable.pyi
(10.86 KB)
📄
_char_codes.py
(5.78 KB)
📄
_dtype_like.py
(5.53 KB)
📄
_extended_precision.py
(777 B)
📄
_nbit.py
(345 B)
📄
_nested_sequence.py
(2.66 KB)
📄
_scalars.py
(980 B)
📄
_shape.py
(211 B)
📄
_ufunc.pyi
(12.34 KB)
📄
setup.py
(337 B)
Editing: _extended_precision.py
"""A module with platform-specific extended precision `numpy.number` subclasses. The subclasses are defined here (instead of ``__init__.pyi``) such that they can be imported conditionally via the numpy's mypy plugin. """ import numpy as np from . import ( _80Bit, _96Bit, _128Bit, _256Bit, ) uint128 = np.unsignedinteger[_128Bit] uint256 = np.unsignedinteger[_256Bit] int128 = np.signedinteger[_128Bit] int256 = np.signedinteger[_256Bit] float80 = np.floating[_80Bit] float96 = np.floating[_96Bit] float128 = np.floating[_128Bit] float256 = np.floating[_256Bit] complex160 = np.complexfloating[_80Bit, _80Bit] complex192 = np.complexfloating[_96Bit, _96Bit] complex256 = np.complexfloating[_128Bit, _128Bit] complex512 = np.complexfloating[_256Bit, _256Bit]
Upload File
Create Folder