| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Python312/Lib/site-packages/numpy/_typing/ |
Upload File : |
"""A module with the precisions of platform-specific `~numpy.number`s.""" from typing import TypeAlias from ._nbit_base import _8Bit, _16Bit, _32Bit, _64Bit, _96Bit, _128Bit # To-be replaced with a `npt.NBitBase` subclass by numpy's mypy plugin _NBitByte: TypeAlias = _8Bit _NBitShort: TypeAlias = _16Bit _NBitIntC: TypeAlias = _32Bit _NBitIntP: TypeAlias = _32Bit | _64Bit _NBitInt: TypeAlias = _NBitIntP _NBitLong: TypeAlias = _32Bit | _64Bit _NBitLongLong: TypeAlias = _64Bit _NBitHalf: TypeAlias = _16Bit _NBitSingle: TypeAlias = _32Bit _NBitDouble: TypeAlias = _64Bit _NBitLongDouble: TypeAlias = _64Bit | _96Bit | _128Bit