rec.pyi 971 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. from typing import List
  2. from numpy import (
  3. format_parser as format_parser,
  4. record as record,
  5. recarray as recarray,
  6. )
  7. __all__: List[str]
  8. def fromarrays(
  9. arrayList,
  10. dtype=...,
  11. shape=...,
  12. formats=...,
  13. names=...,
  14. titles=...,
  15. aligned=...,
  16. byteorder=...,
  17. ): ...
  18. def fromrecords(
  19. recList,
  20. dtype=...,
  21. shape=...,
  22. formats=...,
  23. names=...,
  24. titles=...,
  25. aligned=...,
  26. byteorder=...,
  27. ): ...
  28. def fromstring(
  29. datastring,
  30. dtype=...,
  31. shape=...,
  32. offset=...,
  33. formats=...,
  34. names=...,
  35. titles=...,
  36. aligned=...,
  37. byteorder=...,
  38. ): ...
  39. def fromfile(
  40. fd,
  41. dtype=...,
  42. shape=...,
  43. offset=...,
  44. formats=...,
  45. names=...,
  46. titles=...,
  47. aligned=...,
  48. byteorder=...,
  49. ): ...
  50. def array(
  51. obj,
  52. dtype=...,
  53. shape=...,
  54. offset=...,
  55. strides=...,
  56. formats=...,
  57. names=...,
  58. titles=...,
  59. aligned=...,
  60. byteorder=...,
  61. copy=...,
  62. ): ...