m2m模型翻译
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.

16 lines
345 B

6 months ago
  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