_nbit.py 345 B

12345678910111213141516
  1. """A module with the precisions of platform-specific `~numpy.number`s."""
  2. from typing import Any
  3. # To-be replaced with a `npt.NBitBase` subclass by numpy's mypy plugin
  4. _NBitByte = Any
  5. _NBitShort = Any
  6. _NBitIntC = Any
  7. _NBitIntP = Any
  8. _NBitInt = Any
  9. _NBitLongLong = Any
  10. _NBitHalf = Any
  11. _NBitSingle = Any
  12. _NBitDouble = Any
  13. _NBitLongDouble = Any