biotite 0.40.0__cp312-cp312-win_amd64.whl → 0.41.0__cp312-cp312-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of biotite might be problematic. Click here for more details.

Files changed (90) hide show
  1. biotite/__init__.py +1 -1
  2. biotite/database/pubchem/download.py +23 -23
  3. biotite/database/pubchem/query.py +7 -7
  4. biotite/file.py +17 -9
  5. biotite/sequence/align/banded.c +117 -117
  6. biotite/sequence/align/banded.cp312-win_amd64.pyd +0 -0
  7. biotite/sequence/align/cigar.py +60 -15
  8. biotite/sequence/align/kmeralphabet.c +117 -117
  9. biotite/sequence/align/kmeralphabet.cp312-win_amd64.pyd +0 -0
  10. biotite/sequence/align/kmersimilarity.c +117 -117
  11. biotite/sequence/align/kmersimilarity.cp312-win_amd64.pyd +0 -0
  12. biotite/sequence/align/kmertable.cp312-win_amd64.pyd +0 -0
  13. biotite/sequence/align/kmertable.cpp +117 -117
  14. biotite/sequence/align/localgapped.c +117 -117
  15. biotite/sequence/align/localgapped.cp312-win_amd64.pyd +0 -0
  16. biotite/sequence/align/localungapped.c +117 -117
  17. biotite/sequence/align/localungapped.cp312-win_amd64.pyd +0 -0
  18. biotite/sequence/align/multiple.c +117 -117
  19. biotite/sequence/align/multiple.cp312-win_amd64.pyd +0 -0
  20. biotite/sequence/align/pairwise.c +117 -117
  21. biotite/sequence/align/pairwise.cp312-win_amd64.pyd +0 -0
  22. biotite/sequence/align/permutation.c +117 -117
  23. biotite/sequence/align/permutation.cp312-win_amd64.pyd +0 -0
  24. biotite/sequence/align/selector.c +117 -117
  25. biotite/sequence/align/selector.cp312-win_amd64.pyd +0 -0
  26. biotite/sequence/align/tracetable.c +117 -117
  27. biotite/sequence/align/tracetable.cp312-win_amd64.pyd +0 -0
  28. biotite/sequence/annotation.py +2 -2
  29. biotite/sequence/codec.c +117 -117
  30. biotite/sequence/codec.cp312-win_amd64.pyd +0 -0
  31. biotite/sequence/io/fasta/convert.py +27 -24
  32. biotite/sequence/phylo/nj.c +117 -117
  33. biotite/sequence/phylo/nj.cp312-win_amd64.pyd +0 -0
  34. biotite/sequence/phylo/tree.c +117 -117
  35. biotite/sequence/phylo/tree.cp312-win_amd64.pyd +0 -0
  36. biotite/sequence/phylo/upgma.c +117 -117
  37. biotite/sequence/phylo/upgma.cp312-win_amd64.pyd +0 -0
  38. biotite/structure/__init__.py +2 -0
  39. biotite/structure/bonds.c +1122 -913
  40. biotite/structure/bonds.cp312-win_amd64.pyd +0 -0
  41. biotite/structure/celllist.c +117 -117
  42. biotite/structure/celllist.cp312-win_amd64.pyd +0 -0
  43. biotite/structure/charges.c +117 -117
  44. biotite/structure/charges.cp312-win_amd64.pyd +0 -0
  45. biotite/structure/dotbracket.py +2 -0
  46. biotite/structure/info/atoms.py +6 -1
  47. biotite/structure/info/bonds.py +1 -1
  48. biotite/structure/info/ccd/amino_acids.txt +17 -0
  49. biotite/structure/info/ccd/carbohydrates.txt +2 -0
  50. biotite/structure/info/ccd/components.bcif +0 -0
  51. biotite/structure/info/ccd/nucleotides.txt +1 -0
  52. biotite/structure/info/misc.py +69 -5
  53. biotite/structure/integrity.py +19 -70
  54. biotite/structure/io/ctab.py +12 -106
  55. biotite/structure/io/general.py +157 -165
  56. biotite/structure/io/gro/file.py +16 -16
  57. biotite/structure/io/mmtf/convertarray.c +117 -117
  58. biotite/structure/io/mmtf/convertarray.cp312-win_amd64.pyd +0 -0
  59. biotite/structure/io/mmtf/convertfile.c +117 -117
  60. biotite/structure/io/mmtf/convertfile.cp312-win_amd64.pyd +0 -0
  61. biotite/structure/io/mmtf/decode.c +117 -117
  62. biotite/structure/io/mmtf/decode.cp312-win_amd64.pyd +0 -0
  63. biotite/structure/io/mmtf/encode.c +117 -117
  64. biotite/structure/io/mmtf/encode.cp312-win_amd64.pyd +0 -0
  65. biotite/structure/io/mol/__init__.py +4 -2
  66. biotite/structure/io/mol/convert.py +71 -7
  67. biotite/structure/io/mol/ctab.py +414 -0
  68. biotite/structure/io/mol/header.py +116 -0
  69. biotite/structure/io/mol/{file.py → mol.py} +69 -82
  70. biotite/structure/io/mol/sdf.py +909 -0
  71. biotite/structure/io/pdb/file.py +84 -31
  72. biotite/structure/io/pdb/hybrid36.cp312-win_amd64.pyd +0 -0
  73. biotite/structure/io/pdbx/__init__.py +0 -1
  74. biotite/structure/io/pdbx/bcif.py +2 -3
  75. biotite/structure/io/pdbx/cif.py +9 -5
  76. biotite/structure/io/pdbx/component.py +4 -1
  77. biotite/structure/io/pdbx/convert.py +203 -79
  78. biotite/structure/io/pdbx/encoding.c +117 -117
  79. biotite/structure/io/pdbx/encoding.cp312-win_amd64.pyd +0 -0
  80. biotite/structure/repair.py +253 -0
  81. biotite/structure/sasa.c +117 -117
  82. biotite/structure/sasa.cp312-win_amd64.pyd +0 -0
  83. biotite/structure/sequence.py +112 -0
  84. biotite/structure/superimpose.py +472 -13
  85. {biotite-0.40.0.dist-info → biotite-0.41.0.dist-info}/METADATA +2 -2
  86. {biotite-0.40.0.dist-info → biotite-0.41.0.dist-info}/RECORD +89 -85
  87. biotite/structure/io/pdbx/error.py +0 -14
  88. {biotite-0.40.0.dist-info → biotite-0.41.0.dist-info}/LICENSE.rst +0 -0
  89. {biotite-0.40.0.dist-info → biotite-0.41.0.dist-info}/WHEEL +0 -0
  90. {biotite-0.40.0.dist-info → biotite-0.41.0.dist-info}/top_level.txt +0 -0
@@ -1664,7 +1664,7 @@ typedef struct {
1664
1664
 
1665
1665
  /* #### Code section: numeric_typedefs ### */
1666
1666
 
1667
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":730
1667
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":730
1668
1668
  * # in Cython to enable them only on the right systems.
1669
1669
  *
1670
1670
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1673,7 +1673,7 @@ typedef struct {
1673
1673
  */
1674
1674
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1675
1675
 
1676
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1676
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1677
1677
  *
1678
1678
  * ctypedef npy_int8 int8_t
1679
1679
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1682,7 +1682,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1682
1682
  */
1683
1683
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1684
1684
 
1685
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1685
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1686
1686
  * ctypedef npy_int8 int8_t
1687
1687
  * ctypedef npy_int16 int16_t
1688
1688
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1691,7 +1691,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1691
1691
  */
1692
1692
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1693
1693
 
1694
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1694
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1695
1695
  * ctypedef npy_int16 int16_t
1696
1696
  * ctypedef npy_int32 int32_t
1697
1697
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1700,7 +1700,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1700
1700
  */
1701
1701
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1702
1702
 
1703
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":737
1703
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":737
1704
1704
  * #ctypedef npy_int128 int128_t
1705
1705
  *
1706
1706
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1709,7 +1709,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1709
1709
  */
1710
1710
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1711
1711
 
1712
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1712
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1713
1713
  *
1714
1714
  * ctypedef npy_uint8 uint8_t
1715
1715
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1718,7 +1718,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1718
1718
  */
1719
1719
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1720
1720
 
1721
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1721
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1722
1722
  * ctypedef npy_uint8 uint8_t
1723
1723
  * ctypedef npy_uint16 uint16_t
1724
1724
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1727,7 +1727,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1727
1727
  */
1728
1728
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1729
1729
 
1730
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1730
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1731
1731
  * ctypedef npy_uint16 uint16_t
1732
1732
  * ctypedef npy_uint32 uint32_t
1733
1733
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1736,7 +1736,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1736
1736
  */
1737
1737
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1738
1738
 
1739
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":744
1739
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":744
1740
1740
  * #ctypedef npy_uint128 uint128_t
1741
1741
  *
1742
1742
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1745,7 +1745,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1745
1745
  */
1746
1746
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1747
1747
 
1748
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1748
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1749
1749
  *
1750
1750
  * ctypedef npy_float32 float32_t
1751
1751
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1754,7 +1754,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1754
1754
  */
1755
1755
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1756
1756
 
1757
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":754
1757
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":754
1758
1758
  * # The int types are mapped a bit surprising --
1759
1759
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1760
1760
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1763,7 +1763,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1763
1763
  */
1764
1764
  typedef npy_long __pyx_t_5numpy_int_t;
1765
1765
 
1766
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1766
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1767
1767
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1768
1768
  * ctypedef npy_long int_t
1769
1769
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1772,7 +1772,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1772
1772
  */
1773
1773
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1774
1774
 
1775
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1775
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1776
1776
  * ctypedef npy_longlong longlong_t
1777
1777
  *
1778
1778
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1781,7 +1781,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1781
1781
  */
1782
1782
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1783
1783
 
1784
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1784
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1785
1785
  *
1786
1786
  * ctypedef npy_ulong uint_t
1787
1787
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1790,7 +1790,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1790
1790
  */
1791
1791
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1792
1792
 
1793
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1793
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1794
1794
  * ctypedef npy_ulonglong ulonglong_t
1795
1795
  *
1796
1796
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1799,7 +1799,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1799
1799
  */
1800
1800
  typedef npy_intp __pyx_t_5numpy_intp_t;
1801
1801
 
1802
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1802
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1803
1803
  *
1804
1804
  * ctypedef npy_intp intp_t
1805
1805
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1808,7 +1808,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1808
1808
  */
1809
1809
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1810
1810
 
1811
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1811
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1812
1812
  * ctypedef npy_uintp uintp_t
1813
1813
  *
1814
1814
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1817,7 +1817,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1817
1817
  */
1818
1818
  typedef npy_double __pyx_t_5numpy_float_t;
1819
1819
 
1820
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1820
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1821
1821
  *
1822
1822
  * ctypedef npy_double float_t
1823
1823
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1826,7 +1826,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1826
1826
  */
1827
1827
  typedef npy_double __pyx_t_5numpy_double_t;
1828
1828
 
1829
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1829
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1830
1830
  * ctypedef npy_double float_t
1831
1831
  * ctypedef npy_double double_t
1832
1832
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1930,7 +1930,7 @@ struct __pyx_MemviewEnum_obj;
1930
1930
  struct __pyx_memoryview_obj;
1931
1931
  struct __pyx_memoryviewslice_obj;
1932
1932
 
1933
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1933
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1934
1934
  * ctypedef npy_longdouble longdouble_t
1935
1935
  *
1936
1936
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1939,7 +1939,7 @@ struct __pyx_memoryviewslice_obj;
1939
1939
  */
1940
1940
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1941
1941
 
1942
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1942
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1943
1943
  *
1944
1944
  * ctypedef npy_cfloat cfloat_t
1945
1945
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1948,7 +1948,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1948
1948
  */
1949
1949
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1950
1950
 
1951
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1951
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1952
1952
  * ctypedef npy_cfloat cfloat_t
1953
1953
  * ctypedef npy_cdouble cdouble_t
1954
1954
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1957,7 +1957,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1957
1957
  */
1958
1958
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1959
1959
 
1960
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1960
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1961
1961
  * ctypedef npy_clongdouble clongdouble_t
1962
1962
  *
1963
1963
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -19266,7 +19266,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
19266
19266
  return __pyx_r;
19267
19267
  }
19268
19268
 
19269
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19269
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19270
19270
  *
19271
19271
  * @property
19272
19272
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -19277,7 +19277,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
19277
19277
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
19278
19278
  PyObject *__pyx_r;
19279
19279
 
19280
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
19280
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
19281
19281
  * """Returns a borrowed reference to the object owning the data/memory.
19282
19282
  * """
19283
19283
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -19287,7 +19287,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
19287
19287
  __pyx_r = PyArray_BASE(__pyx_v_self);
19288
19288
  goto __pyx_L0;
19289
19289
 
19290
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19290
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19291
19291
  *
19292
19292
  * @property
19293
19293
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -19300,7 +19300,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
19300
19300
  return __pyx_r;
19301
19301
  }
19302
19302
 
19303
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19303
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19304
19304
  *
19305
19305
  * @property
19306
19306
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -19314,7 +19314,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19314
19314
  PyArray_Descr *__pyx_t_1;
19315
19315
  __Pyx_RefNannySetupContext("descr", 1);
19316
19316
 
19317
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
19317
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
19318
19318
  * """Returns an owned reference to the dtype of the array.
19319
19319
  * """
19320
19320
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -19327,7 +19327,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19327
19327
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
19328
19328
  goto __pyx_L0;
19329
19329
 
19330
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19330
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19331
19331
  *
19332
19332
  * @property
19333
19333
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -19342,7 +19342,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19342
19342
  return __pyx_r;
19343
19343
  }
19344
19344
 
19345
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19345
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19346
19346
  *
19347
19347
  * @property
19348
19348
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -19353,7 +19353,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19353
19353
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
19354
19354
  int __pyx_r;
19355
19355
 
19356
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
19356
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
19357
19357
  * """Returns the number of dimensions in the array.
19358
19358
  * """
19359
19359
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -19363,7 +19363,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19363
19363
  __pyx_r = PyArray_NDIM(__pyx_v_self);
19364
19364
  goto __pyx_L0;
19365
19365
 
19366
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19366
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19367
19367
  *
19368
19368
  * @property
19369
19369
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -19376,7 +19376,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19376
19376
  return __pyx_r;
19377
19377
  }
19378
19378
 
19379
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19379
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19380
19380
  *
19381
19381
  * @property
19382
19382
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -19387,7 +19387,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19387
19387
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
19388
19388
  npy_intp *__pyx_r;
19389
19389
 
19390
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
19390
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
19391
19391
  * Can return NULL for 0-dimensional arrays.
19392
19392
  * """
19393
19393
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -19397,7 +19397,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19397
19397
  __pyx_r = PyArray_DIMS(__pyx_v_self);
19398
19398
  goto __pyx_L0;
19399
19399
 
19400
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19400
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19401
19401
  *
19402
19402
  * @property
19403
19403
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -19410,7 +19410,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19410
19410
  return __pyx_r;
19411
19411
  }
19412
19412
 
19413
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19413
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19414
19414
  *
19415
19415
  * @property
19416
19416
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -19421,7 +19421,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19421
19421
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
19422
19422
  npy_intp *__pyx_r;
19423
19423
 
19424
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
19424
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
19425
19425
  * The number of elements matches the number of dimensions of the array (ndim).
19426
19426
  * """
19427
19427
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -19431,7 +19431,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19431
19431
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
19432
19432
  goto __pyx_L0;
19433
19433
 
19434
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19434
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19435
19435
  *
19436
19436
  * @property
19437
19437
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -19444,7 +19444,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19444
19444
  return __pyx_r;
19445
19445
  }
19446
19446
 
19447
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19447
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19448
19448
  *
19449
19449
  * @property
19450
19450
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -19455,7 +19455,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19455
19455
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
19456
19456
  npy_intp __pyx_r;
19457
19457
 
19458
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
19458
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
19459
19459
  * """Returns the total size (in number of elements) of the array.
19460
19460
  * """
19461
19461
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -19465,7 +19465,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19465
19465
  __pyx_r = PyArray_SIZE(__pyx_v_self);
19466
19466
  goto __pyx_L0;
19467
19467
 
19468
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19468
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19469
19469
  *
19470
19470
  * @property
19471
19471
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -19478,7 +19478,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19478
19478
  return __pyx_r;
19479
19479
  }
19480
19480
 
19481
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19481
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19482
19482
  *
19483
19483
  * @property
19484
19484
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -19489,7 +19489,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19489
19489
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
19490
19490
  char *__pyx_r;
19491
19491
 
19492
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
19492
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
19493
19493
  * of `PyArray_DATA()` instead, which returns a 'void*'.
19494
19494
  * """
19495
19495
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -19499,7 +19499,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
19499
19499
  __pyx_r = PyArray_BYTES(__pyx_v_self);
19500
19500
  goto __pyx_L0;
19501
19501
 
19502
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19502
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19503
19503
  *
19504
19504
  * @property
19505
19505
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -19512,7 +19512,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
19512
19512
  return __pyx_r;
19513
19513
  }
19514
19514
 
19515
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19515
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19516
19516
  * ctypedef npy_cdouble complex_t
19517
19517
  *
19518
19518
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19529,7 +19529,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19529
19529
  int __pyx_clineno = 0;
19530
19530
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
19531
19531
 
19532
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
19532
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
19533
19533
  *
19534
19534
  * cdef inline object PyArray_MultiIterNew1(a):
19535
19535
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -19543,7 +19543,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19543
19543
  __pyx_t_1 = 0;
19544
19544
  goto __pyx_L0;
19545
19545
 
19546
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19546
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19547
19547
  * ctypedef npy_cdouble complex_t
19548
19548
  *
19549
19549
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19562,7 +19562,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19562
19562
  return __pyx_r;
19563
19563
  }
19564
19564
 
19565
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19565
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19566
19566
  * return PyArray_MultiIterNew(1, <void*>a)
19567
19567
  *
19568
19568
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19579,7 +19579,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19579
19579
  int __pyx_clineno = 0;
19580
19580
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
19581
19581
 
19582
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
19582
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
19583
19583
  *
19584
19584
  * cdef inline object PyArray_MultiIterNew2(a, b):
19585
19585
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -19593,7 +19593,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19593
19593
  __pyx_t_1 = 0;
19594
19594
  goto __pyx_L0;
19595
19595
 
19596
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19596
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19597
19597
  * return PyArray_MultiIterNew(1, <void*>a)
19598
19598
  *
19599
19599
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19612,7 +19612,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19612
19612
  return __pyx_r;
19613
19613
  }
19614
19614
 
19615
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19615
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19616
19616
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19617
19617
  *
19618
19618
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19629,7 +19629,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19629
19629
  int __pyx_clineno = 0;
19630
19630
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
19631
19631
 
19632
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
19632
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
19633
19633
  *
19634
19634
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
19635
19635
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -19643,7 +19643,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19643
19643
  __pyx_t_1 = 0;
19644
19644
  goto __pyx_L0;
19645
19645
 
19646
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19646
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19647
19647
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19648
19648
  *
19649
19649
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19662,7 +19662,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19662
19662
  return __pyx_r;
19663
19663
  }
19664
19664
 
19665
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19665
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19666
19666
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19667
19667
  *
19668
19668
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19679,7 +19679,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19679
19679
  int __pyx_clineno = 0;
19680
19680
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
19681
19681
 
19682
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
19682
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
19683
19683
  *
19684
19684
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
19685
19685
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -19693,7 +19693,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19693
19693
  __pyx_t_1 = 0;
19694
19694
  goto __pyx_L0;
19695
19695
 
19696
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19696
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19697
19697
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19698
19698
  *
19699
19699
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19712,7 +19712,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19712
19712
  return __pyx_r;
19713
19713
  }
19714
19714
 
19715
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19715
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19716
19716
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19717
19717
  *
19718
19718
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19729,7 +19729,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19729
19729
  int __pyx_clineno = 0;
19730
19730
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
19731
19731
 
19732
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
19732
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
19733
19733
  *
19734
19734
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
19735
19735
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -19743,7 +19743,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19743
19743
  __pyx_t_1 = 0;
19744
19744
  goto __pyx_L0;
19745
19745
 
19746
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19746
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19747
19747
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19748
19748
  *
19749
19749
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19762,7 +19762,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19762
19762
  return __pyx_r;
19763
19763
  }
19764
19764
 
19765
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19765
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19766
19766
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19767
19767
  *
19768
19768
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19776,7 +19776,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19776
19776
  int __pyx_t_1;
19777
19777
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
19778
19778
 
19779
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19779
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19780
19780
  *
19781
19781
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19782
19782
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19786,7 +19786,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19786
19786
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
19787
19787
  if (__pyx_t_1) {
19788
19788
 
19789
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
19789
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
19790
19790
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19791
19791
  * if PyDataType_HASSUBARRAY(d):
19792
19792
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -19798,7 +19798,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19798
19798
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
19799
19799
  goto __pyx_L0;
19800
19800
 
19801
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19801
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19802
19802
  *
19803
19803
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19804
19804
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19807,7 +19807,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19807
19807
  */
19808
19808
  }
19809
19809
 
19810
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19810
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19811
19811
  * return <tuple>d.subarray.shape
19812
19812
  * else:
19813
19813
  * return () # <<<<<<<<<<<<<<
@@ -19821,7 +19821,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19821
19821
  goto __pyx_L0;
19822
19822
  }
19823
19823
 
19824
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19824
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19825
19825
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19826
19826
  *
19827
19827
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19836,7 +19836,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19836
19836
  return __pyx_r;
19837
19837
  }
19838
19838
 
19839
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19839
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19840
19840
  * int _import_umath() except -1
19841
19841
  *
19842
19842
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19850,7 +19850,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19850
19850
  const char *__pyx_filename = NULL;
19851
19851
  int __pyx_clineno = 0;
19852
19852
 
19853
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
19853
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
19854
19854
  *
19855
19855
  * cdef inline void set_array_base(ndarray arr, object base):
19856
19856
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -19859,7 +19859,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19859
19859
  */
19860
19860
  Py_INCREF(__pyx_v_base);
19861
19861
 
19862
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19862
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19863
19863
  * cdef inline void set_array_base(ndarray arr, object base):
19864
19864
  * Py_INCREF(base) # important to do this before stealing the reference below!
19865
19865
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -19868,7 +19868,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19868
19868
  */
19869
19869
  __pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(2, 970, __pyx_L1_error)
19870
19870
 
19871
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19871
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19872
19872
  * int _import_umath() except -1
19873
19873
  *
19874
19874
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19883,7 +19883,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19883
19883
  __pyx_L0:;
19884
19884
  }
19885
19885
 
19886
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19886
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19887
19887
  * PyArray_SetBaseObject(arr, base)
19888
19888
  *
19889
19889
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19898,7 +19898,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19898
19898
  int __pyx_t_1;
19899
19899
  __Pyx_RefNannySetupContext("get_array_base", 1);
19900
19900
 
19901
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
19901
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
19902
19902
  *
19903
19903
  * cdef inline object get_array_base(ndarray arr):
19904
19904
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -19907,7 +19907,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19907
19907
  */
19908
19908
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
19909
19909
 
19910
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19910
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19911
19911
  * cdef inline object get_array_base(ndarray arr):
19912
19912
  * base = PyArray_BASE(arr)
19913
19913
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19917,7 +19917,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19917
19917
  __pyx_t_1 = (__pyx_v_base == NULL);
19918
19918
  if (__pyx_t_1) {
19919
19919
 
19920
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19920
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19921
19921
  * base = PyArray_BASE(arr)
19922
19922
  * if base is NULL:
19923
19923
  * return None # <<<<<<<<<<<<<<
@@ -19928,7 +19928,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19928
19928
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
19929
19929
  goto __pyx_L0;
19930
19930
 
19931
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19931
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19932
19932
  * cdef inline object get_array_base(ndarray arr):
19933
19933
  * base = PyArray_BASE(arr)
19934
19934
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19937,7 +19937,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19937
19937
  */
19938
19938
  }
19939
19939
 
19940
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19940
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19941
19941
  * if base is NULL:
19942
19942
  * return None
19943
19943
  * return <object>base # <<<<<<<<<<<<<<
@@ -19949,7 +19949,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19949
19949
  __pyx_r = ((PyObject *)__pyx_v_base);
19950
19950
  goto __pyx_L0;
19951
19951
 
19952
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19952
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19953
19953
  * PyArray_SetBaseObject(arr, base)
19954
19954
  *
19955
19955
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19964,7 +19964,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19964
19964
  return __pyx_r;
19965
19965
  }
19966
19966
 
19967
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19967
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19968
19968
  * # Versions of the import_* functions which are more suitable for
19969
19969
  * # Cython code.
19970
19970
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19988,7 +19988,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19988
19988
  int __pyx_clineno = 0;
19989
19989
  __Pyx_RefNannySetupContext("import_array", 1);
19990
19990
 
19991
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19991
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19992
19992
  * # Cython code.
19993
19993
  * cdef inline int import_array() except -1:
19994
19994
  * try: # <<<<<<<<<<<<<<
@@ -20004,7 +20004,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20004
20004
  __Pyx_XGOTREF(__pyx_t_3);
20005
20005
  /*try:*/ {
20006
20006
 
20007
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
20007
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
20008
20008
  * cdef inline int import_array() except -1:
20009
20009
  * try:
20010
20010
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -20013,7 +20013,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20013
20013
  */
20014
20014
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
20015
20015
 
20016
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
20016
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
20017
20017
  * # Cython code.
20018
20018
  * cdef inline int import_array() except -1:
20019
20019
  * try: # <<<<<<<<<<<<<<
@@ -20027,7 +20027,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20027
20027
  goto __pyx_L8_try_end;
20028
20028
  __pyx_L3_error:;
20029
20029
 
20030
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
20030
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
20031
20031
  * try:
20032
20032
  * __pyx_import_array()
20033
20033
  * except Exception: # <<<<<<<<<<<<<<
@@ -20042,7 +20042,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20042
20042
  __Pyx_XGOTREF(__pyx_t_6);
20043
20043
  __Pyx_XGOTREF(__pyx_t_7);
20044
20044
 
20045
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
20045
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
20046
20046
  * __pyx_import_array()
20047
20047
  * except Exception:
20048
20048
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -20057,7 +20057,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20057
20057
  }
20058
20058
  goto __pyx_L5_except_error;
20059
20059
 
20060
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
20060
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
20061
20061
  * # Cython code.
20062
20062
  * cdef inline int import_array() except -1:
20063
20063
  * try: # <<<<<<<<<<<<<<
@@ -20073,7 +20073,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20073
20073
  __pyx_L8_try_end:;
20074
20074
  }
20075
20075
 
20076
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
20076
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
20077
20077
  * # Versions of the import_* functions which are more suitable for
20078
20078
  * # Cython code.
20079
20079
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -20096,7 +20096,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20096
20096
  return __pyx_r;
20097
20097
  }
20098
20098
 
20099
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
20099
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
20100
20100
  * raise ImportError("numpy.core.multiarray failed to import")
20101
20101
  *
20102
20102
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -20120,7 +20120,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20120
20120
  int __pyx_clineno = 0;
20121
20121
  __Pyx_RefNannySetupContext("import_umath", 1);
20122
20122
 
20123
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20123
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20124
20124
  *
20125
20125
  * cdef inline int import_umath() except -1:
20126
20126
  * try: # <<<<<<<<<<<<<<
@@ -20136,7 +20136,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20136
20136
  __Pyx_XGOTREF(__pyx_t_3);
20137
20137
  /*try:*/ {
20138
20138
 
20139
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
20139
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
20140
20140
  * cdef inline int import_umath() except -1:
20141
20141
  * try:
20142
20142
  * _import_umath() # <<<<<<<<<<<<<<
@@ -20145,7 +20145,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20145
20145
  */
20146
20146
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
20147
20147
 
20148
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20148
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20149
20149
  *
20150
20150
  * cdef inline int import_umath() except -1:
20151
20151
  * try: # <<<<<<<<<<<<<<
@@ -20159,7 +20159,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20159
20159
  goto __pyx_L8_try_end;
20160
20160
  __pyx_L3_error:;
20161
20161
 
20162
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
20162
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
20163
20163
  * try:
20164
20164
  * _import_umath()
20165
20165
  * except Exception: # <<<<<<<<<<<<<<
@@ -20174,7 +20174,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20174
20174
  __Pyx_XGOTREF(__pyx_t_6);
20175
20175
  __Pyx_XGOTREF(__pyx_t_7);
20176
20176
 
20177
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
20177
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
20178
20178
  * _import_umath()
20179
20179
  * except Exception:
20180
20180
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -20189,7 +20189,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20189
20189
  }
20190
20190
  goto __pyx_L5_except_error;
20191
20191
 
20192
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20192
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20193
20193
  *
20194
20194
  * cdef inline int import_umath() except -1:
20195
20195
  * try: # <<<<<<<<<<<<<<
@@ -20205,7 +20205,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20205
20205
  __pyx_L8_try_end:;
20206
20206
  }
20207
20207
 
20208
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
20208
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
20209
20209
  * raise ImportError("numpy.core.multiarray failed to import")
20210
20210
  *
20211
20211
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -20228,7 +20228,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20228
20228
  return __pyx_r;
20229
20229
  }
20230
20230
 
20231
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
20231
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
20232
20232
  * raise ImportError("numpy.core.umath failed to import")
20233
20233
  *
20234
20234
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -20252,7 +20252,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20252
20252
  int __pyx_clineno = 0;
20253
20253
  __Pyx_RefNannySetupContext("import_ufunc", 1);
20254
20254
 
20255
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20255
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20256
20256
  *
20257
20257
  * cdef inline int import_ufunc() except -1:
20258
20258
  * try: # <<<<<<<<<<<<<<
@@ -20268,7 +20268,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20268
20268
  __Pyx_XGOTREF(__pyx_t_3);
20269
20269
  /*try:*/ {
20270
20270
 
20271
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
20271
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
20272
20272
  * cdef inline int import_ufunc() except -1:
20273
20273
  * try:
20274
20274
  * _import_umath() # <<<<<<<<<<<<<<
@@ -20277,7 +20277,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20277
20277
  */
20278
20278
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
20279
20279
 
20280
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20280
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20281
20281
  *
20282
20282
  * cdef inline int import_ufunc() except -1:
20283
20283
  * try: # <<<<<<<<<<<<<<
@@ -20291,7 +20291,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20291
20291
  goto __pyx_L8_try_end;
20292
20292
  __pyx_L3_error:;
20293
20293
 
20294
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
20294
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
20295
20295
  * try:
20296
20296
  * _import_umath()
20297
20297
  * except Exception: # <<<<<<<<<<<<<<
@@ -20306,7 +20306,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20306
20306
  __Pyx_XGOTREF(__pyx_t_6);
20307
20307
  __Pyx_XGOTREF(__pyx_t_7);
20308
20308
 
20309
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
20309
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
20310
20310
  * _import_umath()
20311
20311
  * except Exception:
20312
20312
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -20321,7 +20321,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20321
20321
  }
20322
20322
  goto __pyx_L5_except_error;
20323
20323
 
20324
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20324
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20325
20325
  *
20326
20326
  * cdef inline int import_ufunc() except -1:
20327
20327
  * try: # <<<<<<<<<<<<<<
@@ -20337,7 +20337,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20337
20337
  __pyx_L8_try_end:;
20338
20338
  }
20339
20339
 
20340
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
20340
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
20341
20341
  * raise ImportError("numpy.core.umath failed to import")
20342
20342
  *
20343
20343
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -20360,7 +20360,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20360
20360
  return __pyx_r;
20361
20361
  }
20362
20362
 
20363
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
20363
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
20364
20364
  *
20365
20365
  *
20366
20366
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -20371,7 +20371,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20371
20371
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
20372
20372
  int __pyx_r;
20373
20373
 
20374
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
20374
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
20375
20375
  * bool
20376
20376
  * """
20377
20377
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -20381,7 +20381,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20381
20381
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
20382
20382
  goto __pyx_L0;
20383
20383
 
20384
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
20384
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
20385
20385
  *
20386
20386
  *
20387
20387
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -20394,7 +20394,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20394
20394
  return __pyx_r;
20395
20395
  }
20396
20396
 
20397
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
20397
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
20398
20398
  *
20399
20399
  *
20400
20400
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -20405,7 +20405,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20405
20405
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
20406
20406
  int __pyx_r;
20407
20407
 
20408
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
20408
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
20409
20409
  * bool
20410
20410
  * """
20411
20411
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -20415,7 +20415,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20415
20415
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
20416
20416
  goto __pyx_L0;
20417
20417
 
20418
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
20418
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
20419
20419
  *
20420
20420
  *
20421
20421
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -20428,7 +20428,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20428
20428
  return __pyx_r;
20429
20429
  }
20430
20430
 
20431
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
20431
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
20432
20432
  *
20433
20433
  *
20434
20434
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20439,7 +20439,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20439
20439
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
20440
20440
  npy_datetime __pyx_r;
20441
20441
 
20442
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
20442
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
20443
20443
  * also needed. That can be found using `get_datetime64_unit`.
20444
20444
  * """
20445
20445
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -20449,7 +20449,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20449
20449
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
20450
20450
  goto __pyx_L0;
20451
20451
 
20452
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
20452
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
20453
20453
  *
20454
20454
  *
20455
20455
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20462,7 +20462,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20462
20462
  return __pyx_r;
20463
20463
  }
20464
20464
 
20465
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
20465
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
20466
20466
  *
20467
20467
  *
20468
20468
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20473,7 +20473,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20473
20473
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
20474
20474
  npy_timedelta __pyx_r;
20475
20475
 
20476
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
20476
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
20477
20477
  * returns the int64 value underlying scalar numpy timedelta64 object
20478
20478
  * """
20479
20479
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -20483,7 +20483,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20483
20483
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
20484
20484
  goto __pyx_L0;
20485
20485
 
20486
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
20486
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
20487
20487
  *
20488
20488
  *
20489
20489
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20496,7 +20496,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20496
20496
  return __pyx_r;
20497
20497
  }
20498
20498
 
20499
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20499
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20500
20500
  *
20501
20501
  *
20502
20502
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20507,7 +20507,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20507
20507
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
20508
20508
  NPY_DATETIMEUNIT __pyx_r;
20509
20509
 
20510
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
20510
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
20511
20511
  * returns the unit part of the dtype for a numpy datetime64 object.
20512
20512
  * """
20513
20513
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -20515,7 +20515,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
20515
20515
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
20516
20516
  goto __pyx_L0;
20517
20517
 
20518
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20518
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20519
20519
  *
20520
20520
  *
20521
20521
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -41395,7 +41395,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
41395
41395
  __Pyx_GOTREF(__pyx_tuple__8);
41396
41396
  __Pyx_GIVEREF(__pyx_tuple__8);
41397
41397
 
41398
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
41398
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
41399
41399
  * __pyx_import_array()
41400
41400
  * except Exception:
41401
41401
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -41406,7 +41406,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
41406
41406
  __Pyx_GOTREF(__pyx_tuple__9);
41407
41407
  __Pyx_GIVEREF(__pyx_tuple__9);
41408
41408
 
41409
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
41409
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
41410
41410
  * _import_umath()
41411
41411
  * except Exception:
41412
41412
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<