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
@@ -1663,7 +1663,7 @@ typedef struct {
1663
1663
 
1664
1664
  /* #### Code section: numeric_typedefs ### */
1665
1665
 
1666
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":730
1666
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":730
1667
1667
  * # in Cython to enable them only on the right systems.
1668
1668
  *
1669
1669
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1672,7 +1672,7 @@ typedef struct {
1672
1672
  */
1673
1673
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1674
1674
 
1675
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1675
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1676
1676
  *
1677
1677
  * ctypedef npy_int8 int8_t
1678
1678
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1681,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1681
1681
  */
1682
1682
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1683
1683
 
1684
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1684
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1685
1685
  * ctypedef npy_int8 int8_t
1686
1686
  * ctypedef npy_int16 int16_t
1687
1687
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1690,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1690
1690
  */
1691
1691
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1692
1692
 
1693
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1693
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1694
1694
  * ctypedef npy_int16 int16_t
1695
1695
  * ctypedef npy_int32 int32_t
1696
1696
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1699,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1699
1699
  */
1700
1700
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1701
1701
 
1702
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":737
1702
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":737
1703
1703
  * #ctypedef npy_int128 int128_t
1704
1704
  *
1705
1705
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1708,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1708
1708
  */
1709
1709
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1710
1710
 
1711
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1711
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1712
1712
  *
1713
1713
  * ctypedef npy_uint8 uint8_t
1714
1714
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1717,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1717
1717
  */
1718
1718
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1719
1719
 
1720
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1720
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1721
1721
  * ctypedef npy_uint8 uint8_t
1722
1722
  * ctypedef npy_uint16 uint16_t
1723
1723
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1726,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1726
1726
  */
1727
1727
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1728
1728
 
1729
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1729
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1730
1730
  * ctypedef npy_uint16 uint16_t
1731
1731
  * ctypedef npy_uint32 uint32_t
1732
1732
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1735,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1735
1735
  */
1736
1736
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1737
1737
 
1738
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":744
1738
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":744
1739
1739
  * #ctypedef npy_uint128 uint128_t
1740
1740
  *
1741
1741
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1744,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1744
1744
  */
1745
1745
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1746
1746
 
1747
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1747
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1748
1748
  *
1749
1749
  * ctypedef npy_float32 float32_t
1750
1750
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1753,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1753
1753
  */
1754
1754
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1755
1755
 
1756
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":754
1756
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":754
1757
1757
  * # The int types are mapped a bit surprising --
1758
1758
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1759
1759
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1762,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1762
1762
  */
1763
1763
  typedef npy_long __pyx_t_5numpy_int_t;
1764
1764
 
1765
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1765
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1766
1766
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1767
1767
  * ctypedef npy_long int_t
1768
1768
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1771,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1771
1771
  */
1772
1772
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1773
1773
 
1774
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1774
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1775
1775
  * ctypedef npy_longlong longlong_t
1776
1776
  *
1777
1777
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1780,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1780
1780
  */
1781
1781
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1782
1782
 
1783
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1783
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1784
1784
  *
1785
1785
  * ctypedef npy_ulong uint_t
1786
1786
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1789,7 +1789,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1789
1789
  */
1790
1790
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1791
1791
 
1792
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1792
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1793
1793
  * ctypedef npy_ulonglong ulonglong_t
1794
1794
  *
1795
1795
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1798,7 +1798,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1798
1798
  */
1799
1799
  typedef npy_intp __pyx_t_5numpy_intp_t;
1800
1800
 
1801
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1801
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1802
1802
  *
1803
1803
  * ctypedef npy_intp intp_t
1804
1804
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1807,7 +1807,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1807
1807
  */
1808
1808
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1809
1809
 
1810
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1810
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1811
1811
  * ctypedef npy_uintp uintp_t
1812
1812
  *
1813
1813
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1816,7 +1816,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1816
1816
  */
1817
1817
  typedef npy_double __pyx_t_5numpy_float_t;
1818
1818
 
1819
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1819
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1820
1820
  *
1821
1821
  * ctypedef npy_double float_t
1822
1822
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1825,7 +1825,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1825
1825
  */
1826
1826
  typedef npy_double __pyx_t_5numpy_double_t;
1827
1827
 
1828
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1828
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1829
1829
  * ctypedef npy_double float_t
1830
1830
  * ctypedef npy_double double_t
1831
1831
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1893,7 +1893,7 @@ struct __pyx_MemviewEnum_obj;
1893
1893
  struct __pyx_memoryview_obj;
1894
1894
  struct __pyx_memoryviewslice_obj;
1895
1895
 
1896
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1896
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1897
1897
  * ctypedef npy_longdouble longdouble_t
1898
1898
  *
1899
1899
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1902,7 +1902,7 @@ struct __pyx_memoryviewslice_obj;
1902
1902
  */
1903
1903
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1904
1904
 
1905
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1905
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1906
1906
  *
1907
1907
  * ctypedef npy_cfloat cfloat_t
1908
1908
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1911,7 +1911,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1911
1911
  */
1912
1912
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1913
1913
 
1914
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1914
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1915
1915
  * ctypedef npy_cfloat cfloat_t
1916
1916
  * ctypedef npy_cdouble cdouble_t
1917
1917
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1920,7 +1920,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1920
1920
  */
1921
1921
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1922
1922
 
1923
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1923
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1924
1924
  * ctypedef npy_clongdouble clongdouble_t
1925
1925
  *
1926
1926
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -18179,7 +18179,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18179
18179
  return __pyx_r;
18180
18180
  }
18181
18181
 
18182
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18182
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18183
18183
  *
18184
18184
  * @property
18185
18185
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18190,7 +18190,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18190
18190
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
18191
18191
  PyObject *__pyx_r;
18192
18192
 
18193
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
18193
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
18194
18194
  * """Returns a borrowed reference to the object owning the data/memory.
18195
18195
  * """
18196
18196
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -18200,7 +18200,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18200
18200
  __pyx_r = PyArray_BASE(__pyx_v_self);
18201
18201
  goto __pyx_L0;
18202
18202
 
18203
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18203
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18204
18204
  *
18205
18205
  * @property
18206
18206
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18213,7 +18213,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18213
18213
  return __pyx_r;
18214
18214
  }
18215
18215
 
18216
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18216
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18217
18217
  *
18218
18218
  * @property
18219
18219
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18227,7 +18227,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18227
18227
  PyArray_Descr *__pyx_t_1;
18228
18228
  __Pyx_RefNannySetupContext("descr", 1);
18229
18229
 
18230
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
18230
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
18231
18231
  * """Returns an owned reference to the dtype of the array.
18232
18232
  * """
18233
18233
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -18240,7 +18240,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18240
18240
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
18241
18241
  goto __pyx_L0;
18242
18242
 
18243
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18243
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18244
18244
  *
18245
18245
  * @property
18246
18246
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18255,7 +18255,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18255
18255
  return __pyx_r;
18256
18256
  }
18257
18257
 
18258
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18258
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18259
18259
  *
18260
18260
  * @property
18261
18261
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18266,7 +18266,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18266
18266
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
18267
18267
  int __pyx_r;
18268
18268
 
18269
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
18269
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
18270
18270
  * """Returns the number of dimensions in the array.
18271
18271
  * """
18272
18272
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -18276,7 +18276,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18276
18276
  __pyx_r = PyArray_NDIM(__pyx_v_self);
18277
18277
  goto __pyx_L0;
18278
18278
 
18279
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18279
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18280
18280
  *
18281
18281
  * @property
18282
18282
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18289,7 +18289,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18289
18289
  return __pyx_r;
18290
18290
  }
18291
18291
 
18292
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18292
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18293
18293
  *
18294
18294
  * @property
18295
18295
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18300,7 +18300,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18300
18300
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
18301
18301
  npy_intp *__pyx_r;
18302
18302
 
18303
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
18303
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
18304
18304
  * Can return NULL for 0-dimensional arrays.
18305
18305
  * """
18306
18306
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -18310,7 +18310,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18310
18310
  __pyx_r = PyArray_DIMS(__pyx_v_self);
18311
18311
  goto __pyx_L0;
18312
18312
 
18313
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18313
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18314
18314
  *
18315
18315
  * @property
18316
18316
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18323,7 +18323,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18323
18323
  return __pyx_r;
18324
18324
  }
18325
18325
 
18326
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18326
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18327
18327
  *
18328
18328
  * @property
18329
18329
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18334,7 +18334,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18334
18334
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
18335
18335
  npy_intp *__pyx_r;
18336
18336
 
18337
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
18337
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
18338
18338
  * The number of elements matches the number of dimensions of the array (ndim).
18339
18339
  * """
18340
18340
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -18344,7 +18344,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18344
18344
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
18345
18345
  goto __pyx_L0;
18346
18346
 
18347
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18347
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18348
18348
  *
18349
18349
  * @property
18350
18350
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18357,7 +18357,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18357
18357
  return __pyx_r;
18358
18358
  }
18359
18359
 
18360
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18360
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18361
18361
  *
18362
18362
  * @property
18363
18363
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18368,7 +18368,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18368
18368
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
18369
18369
  npy_intp __pyx_r;
18370
18370
 
18371
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
18371
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
18372
18372
  * """Returns the total size (in number of elements) of the array.
18373
18373
  * """
18374
18374
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -18378,7 +18378,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18378
18378
  __pyx_r = PyArray_SIZE(__pyx_v_self);
18379
18379
  goto __pyx_L0;
18380
18380
 
18381
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18381
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18382
18382
  *
18383
18383
  * @property
18384
18384
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18391,7 +18391,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18391
18391
  return __pyx_r;
18392
18392
  }
18393
18393
 
18394
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18394
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18395
18395
  *
18396
18396
  * @property
18397
18397
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18402,7 +18402,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18402
18402
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
18403
18403
  char *__pyx_r;
18404
18404
 
18405
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
18405
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
18406
18406
  * of `PyArray_DATA()` instead, which returns a 'void*'.
18407
18407
  * """
18408
18408
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -18412,7 +18412,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18412
18412
  __pyx_r = PyArray_BYTES(__pyx_v_self);
18413
18413
  goto __pyx_L0;
18414
18414
 
18415
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18415
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18416
18416
  *
18417
18417
  * @property
18418
18418
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18425,7 +18425,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18425
18425
  return __pyx_r;
18426
18426
  }
18427
18427
 
18428
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
18428
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
18429
18429
  * ctypedef npy_cdouble complex_t
18430
18430
  *
18431
18431
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18442,7 +18442,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18442
18442
  int __pyx_clineno = 0;
18443
18443
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
18444
18444
 
18445
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
18445
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
18446
18446
  *
18447
18447
  * cdef inline object PyArray_MultiIterNew1(a):
18448
18448
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -18456,7 +18456,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18456
18456
  __pyx_t_1 = 0;
18457
18457
  goto __pyx_L0;
18458
18458
 
18459
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
18459
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
18460
18460
  * ctypedef npy_cdouble complex_t
18461
18461
  *
18462
18462
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18475,7 +18475,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18475
18475
  return __pyx_r;
18476
18476
  }
18477
18477
 
18478
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18478
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18479
18479
  * return PyArray_MultiIterNew(1, <void*>a)
18480
18480
  *
18481
18481
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18492,7 +18492,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18492
18492
  int __pyx_clineno = 0;
18493
18493
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
18494
18494
 
18495
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18495
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18496
18496
  *
18497
18497
  * cdef inline object PyArray_MultiIterNew2(a, b):
18498
18498
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -18506,7 +18506,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18506
18506
  __pyx_t_1 = 0;
18507
18507
  goto __pyx_L0;
18508
18508
 
18509
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18509
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18510
18510
  * return PyArray_MultiIterNew(1, <void*>a)
18511
18511
  *
18512
18512
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18525,7 +18525,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18525
18525
  return __pyx_r;
18526
18526
  }
18527
18527
 
18528
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18528
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18529
18529
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18530
18530
  *
18531
18531
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18542,7 +18542,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18542
18542
  int __pyx_clineno = 0;
18543
18543
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
18544
18544
 
18545
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18545
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18546
18546
  *
18547
18547
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
18548
18548
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -18556,7 +18556,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18556
18556
  __pyx_t_1 = 0;
18557
18557
  goto __pyx_L0;
18558
18558
 
18559
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18559
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18560
18560
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18561
18561
  *
18562
18562
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18575,7 +18575,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18575
18575
  return __pyx_r;
18576
18576
  }
18577
18577
 
18578
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18578
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18579
18579
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18580
18580
  *
18581
18581
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18592,7 +18592,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18592
18592
  int __pyx_clineno = 0;
18593
18593
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
18594
18594
 
18595
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18595
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18596
18596
  *
18597
18597
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
18598
18598
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -18606,7 +18606,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18606
18606
  __pyx_t_1 = 0;
18607
18607
  goto __pyx_L0;
18608
18608
 
18609
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18609
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18610
18610
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18611
18611
  *
18612
18612
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18625,7 +18625,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18625
18625
  return __pyx_r;
18626
18626
  }
18627
18627
 
18628
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18628
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18629
18629
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18630
18630
  *
18631
18631
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18642,7 +18642,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18642
18642
  int __pyx_clineno = 0;
18643
18643
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
18644
18644
 
18645
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18645
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18646
18646
  *
18647
18647
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
18648
18648
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -18656,7 +18656,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18656
18656
  __pyx_t_1 = 0;
18657
18657
  goto __pyx_L0;
18658
18658
 
18659
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18659
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18660
18660
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18661
18661
  *
18662
18662
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18675,7 +18675,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18675
18675
  return __pyx_r;
18676
18676
  }
18677
18677
 
18678
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18678
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18679
18679
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18680
18680
  *
18681
18681
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18689,7 +18689,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18689
18689
  int __pyx_t_1;
18690
18690
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
18691
18691
 
18692
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18692
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18693
18693
  *
18694
18694
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18695
18695
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18699,7 +18699,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18699
18699
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
18700
18700
  if (__pyx_t_1) {
18701
18701
 
18702
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
18702
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
18703
18703
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18704
18704
  * if PyDataType_HASSUBARRAY(d):
18705
18705
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -18711,7 +18711,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18711
18711
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
18712
18712
  goto __pyx_L0;
18713
18713
 
18714
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18714
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18715
18715
  *
18716
18716
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18717
18717
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18720,7 +18720,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18720
18720
  */
18721
18721
  }
18722
18722
 
18723
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
18723
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
18724
18724
  * return <tuple>d.subarray.shape
18725
18725
  * else:
18726
18726
  * return () # <<<<<<<<<<<<<<
@@ -18734,7 +18734,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18734
18734
  goto __pyx_L0;
18735
18735
  }
18736
18736
 
18737
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18737
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18738
18738
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18739
18739
  *
18740
18740
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18749,7 +18749,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18749
18749
  return __pyx_r;
18750
18750
  }
18751
18751
 
18752
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
18752
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
18753
18753
  * int _import_umath() except -1
18754
18754
  *
18755
18755
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -18763,7 +18763,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18763
18763
  const char *__pyx_filename = NULL;
18764
18764
  int __pyx_clineno = 0;
18765
18765
 
18766
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
18766
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
18767
18767
  *
18768
18768
  * cdef inline void set_array_base(ndarray arr, object base):
18769
18769
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -18772,7 +18772,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18772
18772
  */
18773
18773
  Py_INCREF(__pyx_v_base);
18774
18774
 
18775
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
18775
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
18776
18776
  * cdef inline void set_array_base(ndarray arr, object base):
18777
18777
  * Py_INCREF(base) # important to do this before stealing the reference below!
18778
18778
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -18781,7 +18781,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18781
18781
  */
18782
18782
  __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)
18783
18783
 
18784
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
18784
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
18785
18785
  * int _import_umath() except -1
18786
18786
  *
18787
18787
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -18796,7 +18796,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18796
18796
  __pyx_L0:;
18797
18797
  }
18798
18798
 
18799
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
18799
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
18800
18800
  * PyArray_SetBaseObject(arr, base)
18801
18801
  *
18802
18802
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -18811,7 +18811,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18811
18811
  int __pyx_t_1;
18812
18812
  __Pyx_RefNannySetupContext("get_array_base", 1);
18813
18813
 
18814
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
18814
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
18815
18815
  *
18816
18816
  * cdef inline object get_array_base(ndarray arr):
18817
18817
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -18820,7 +18820,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18820
18820
  */
18821
18821
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
18822
18822
 
18823
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
18823
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
18824
18824
  * cdef inline object get_array_base(ndarray arr):
18825
18825
  * base = PyArray_BASE(arr)
18826
18826
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -18830,7 +18830,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18830
18830
  __pyx_t_1 = (__pyx_v_base == NULL);
18831
18831
  if (__pyx_t_1) {
18832
18832
 
18833
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
18833
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
18834
18834
  * base = PyArray_BASE(arr)
18835
18835
  * if base is NULL:
18836
18836
  * return None # <<<<<<<<<<<<<<
@@ -18841,7 +18841,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18841
18841
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
18842
18842
  goto __pyx_L0;
18843
18843
 
18844
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
18844
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
18845
18845
  * cdef inline object get_array_base(ndarray arr):
18846
18846
  * base = PyArray_BASE(arr)
18847
18847
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -18850,7 +18850,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18850
18850
  */
18851
18851
  }
18852
18852
 
18853
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
18853
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
18854
18854
  * if base is NULL:
18855
18855
  * return None
18856
18856
  * return <object>base # <<<<<<<<<<<<<<
@@ -18862,7 +18862,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18862
18862
  __pyx_r = ((PyObject *)__pyx_v_base);
18863
18863
  goto __pyx_L0;
18864
18864
 
18865
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
18865
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
18866
18866
  * PyArray_SetBaseObject(arr, base)
18867
18867
  *
18868
18868
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -18877,7 +18877,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18877
18877
  return __pyx_r;
18878
18878
  }
18879
18879
 
18880
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
18880
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
18881
18881
  * # Versions of the import_* functions which are more suitable for
18882
18882
  * # Cython code.
18883
18883
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -18901,7 +18901,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18901
18901
  int __pyx_clineno = 0;
18902
18902
  __Pyx_RefNannySetupContext("import_array", 1);
18903
18903
 
18904
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
18904
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
18905
18905
  * # Cython code.
18906
18906
  * cdef inline int import_array() except -1:
18907
18907
  * try: # <<<<<<<<<<<<<<
@@ -18917,7 +18917,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18917
18917
  __Pyx_XGOTREF(__pyx_t_3);
18918
18918
  /*try:*/ {
18919
18919
 
18920
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
18920
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
18921
18921
  * cdef inline int import_array() except -1:
18922
18922
  * try:
18923
18923
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -18926,7 +18926,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18926
18926
  */
18927
18927
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
18928
18928
 
18929
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
18929
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
18930
18930
  * # Cython code.
18931
18931
  * cdef inline int import_array() except -1:
18932
18932
  * try: # <<<<<<<<<<<<<<
@@ -18940,7 +18940,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18940
18940
  goto __pyx_L8_try_end;
18941
18941
  __pyx_L3_error:;
18942
18942
 
18943
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
18943
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
18944
18944
  * try:
18945
18945
  * __pyx_import_array()
18946
18946
  * except Exception: # <<<<<<<<<<<<<<
@@ -18955,7 +18955,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18955
18955
  __Pyx_XGOTREF(__pyx_t_6);
18956
18956
  __Pyx_XGOTREF(__pyx_t_7);
18957
18957
 
18958
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
18958
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
18959
18959
  * __pyx_import_array()
18960
18960
  * except Exception:
18961
18961
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -18970,7 +18970,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18970
18970
  }
18971
18971
  goto __pyx_L5_except_error;
18972
18972
 
18973
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
18973
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
18974
18974
  * # Cython code.
18975
18975
  * cdef inline int import_array() except -1:
18976
18976
  * try: # <<<<<<<<<<<<<<
@@ -18986,7 +18986,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18986
18986
  __pyx_L8_try_end:;
18987
18987
  }
18988
18988
 
18989
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
18989
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
18990
18990
  * # Versions of the import_* functions which are more suitable for
18991
18991
  * # Cython code.
18992
18992
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19009,7 +19009,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19009
19009
  return __pyx_r;
19010
19010
  }
19011
19011
 
19012
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19012
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19013
19013
  * raise ImportError("numpy.core.multiarray failed to import")
19014
19014
  *
19015
19015
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19033,7 +19033,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19033
19033
  int __pyx_clineno = 0;
19034
19034
  __Pyx_RefNannySetupContext("import_umath", 1);
19035
19035
 
19036
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19036
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19037
19037
  *
19038
19038
  * cdef inline int import_umath() except -1:
19039
19039
  * try: # <<<<<<<<<<<<<<
@@ -19049,7 +19049,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19049
19049
  __Pyx_XGOTREF(__pyx_t_3);
19050
19050
  /*try:*/ {
19051
19051
 
19052
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19052
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19053
19053
  * cdef inline int import_umath() except -1:
19054
19054
  * try:
19055
19055
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19058,7 +19058,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19058
19058
  */
19059
19059
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
19060
19060
 
19061
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19061
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19062
19062
  *
19063
19063
  * cdef inline int import_umath() except -1:
19064
19064
  * try: # <<<<<<<<<<<<<<
@@ -19072,7 +19072,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19072
19072
  goto __pyx_L8_try_end;
19073
19073
  __pyx_L3_error:;
19074
19074
 
19075
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19075
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19076
19076
  * try:
19077
19077
  * _import_umath()
19078
19078
  * except Exception: # <<<<<<<<<<<<<<
@@ -19087,7 +19087,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19087
19087
  __Pyx_XGOTREF(__pyx_t_6);
19088
19088
  __Pyx_XGOTREF(__pyx_t_7);
19089
19089
 
19090
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19090
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19091
19091
  * _import_umath()
19092
19092
  * except Exception:
19093
19093
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19102,7 +19102,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19102
19102
  }
19103
19103
  goto __pyx_L5_except_error;
19104
19104
 
19105
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19105
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19106
19106
  *
19107
19107
  * cdef inline int import_umath() except -1:
19108
19108
  * try: # <<<<<<<<<<<<<<
@@ -19118,7 +19118,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19118
19118
  __pyx_L8_try_end:;
19119
19119
  }
19120
19120
 
19121
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19121
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19122
19122
  * raise ImportError("numpy.core.multiarray failed to import")
19123
19123
  *
19124
19124
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19141,7 +19141,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19141
19141
  return __pyx_r;
19142
19142
  }
19143
19143
 
19144
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19144
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19145
19145
  * raise ImportError("numpy.core.umath failed to import")
19146
19146
  *
19147
19147
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19165,7 +19165,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19165
19165
  int __pyx_clineno = 0;
19166
19166
  __Pyx_RefNannySetupContext("import_ufunc", 1);
19167
19167
 
19168
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19168
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19169
19169
  *
19170
19170
  * cdef inline int import_ufunc() except -1:
19171
19171
  * try: # <<<<<<<<<<<<<<
@@ -19181,7 +19181,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19181
19181
  __Pyx_XGOTREF(__pyx_t_3);
19182
19182
  /*try:*/ {
19183
19183
 
19184
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19184
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19185
19185
  * cdef inline int import_ufunc() except -1:
19186
19186
  * try:
19187
19187
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19190,7 +19190,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19190
19190
  */
19191
19191
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
19192
19192
 
19193
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19193
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19194
19194
  *
19195
19195
  * cdef inline int import_ufunc() except -1:
19196
19196
  * try: # <<<<<<<<<<<<<<
@@ -19204,7 +19204,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19204
19204
  goto __pyx_L8_try_end;
19205
19205
  __pyx_L3_error:;
19206
19206
 
19207
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19207
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19208
19208
  * try:
19209
19209
  * _import_umath()
19210
19210
  * except Exception: # <<<<<<<<<<<<<<
@@ -19219,7 +19219,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19219
19219
  __Pyx_XGOTREF(__pyx_t_6);
19220
19220
  __Pyx_XGOTREF(__pyx_t_7);
19221
19221
 
19222
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19222
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19223
19223
  * _import_umath()
19224
19224
  * except Exception:
19225
19225
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19234,7 +19234,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19234
19234
  }
19235
19235
  goto __pyx_L5_except_error;
19236
19236
 
19237
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19237
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19238
19238
  *
19239
19239
  * cdef inline int import_ufunc() except -1:
19240
19240
  * try: # <<<<<<<<<<<<<<
@@ -19250,7 +19250,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19250
19250
  __pyx_L8_try_end:;
19251
19251
  }
19252
19252
 
19253
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19253
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19254
19254
  * raise ImportError("numpy.core.umath failed to import")
19255
19255
  *
19256
19256
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19273,7 +19273,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19273
19273
  return __pyx_r;
19274
19274
  }
19275
19275
 
19276
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19276
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19277
19277
  *
19278
19278
  *
19279
19279
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19284,7 +19284,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19284
19284
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
19285
19285
  int __pyx_r;
19286
19286
 
19287
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
19287
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
19288
19288
  * bool
19289
19289
  * """
19290
19290
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -19294,7 +19294,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19294
19294
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
19295
19295
  goto __pyx_L0;
19296
19296
 
19297
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19297
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19298
19298
  *
19299
19299
  *
19300
19300
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19307,7 +19307,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19307
19307
  return __pyx_r;
19308
19308
  }
19309
19309
 
19310
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19310
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19311
19311
  *
19312
19312
  *
19313
19313
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19318,7 +19318,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19318
19318
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
19319
19319
  int __pyx_r;
19320
19320
 
19321
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
19321
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
19322
19322
  * bool
19323
19323
  * """
19324
19324
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -19328,7 +19328,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19328
19328
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
19329
19329
  goto __pyx_L0;
19330
19330
 
19331
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19331
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19332
19332
  *
19333
19333
  *
19334
19334
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19341,7 +19341,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19341
19341
  return __pyx_r;
19342
19342
  }
19343
19343
 
19344
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19344
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19345
19345
  *
19346
19346
  *
19347
19347
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19352,7 +19352,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19352
19352
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
19353
19353
  npy_datetime __pyx_r;
19354
19354
 
19355
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
19355
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
19356
19356
  * also needed. That can be found using `get_datetime64_unit`.
19357
19357
  * """
19358
19358
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19362,7 +19362,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19362
19362
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
19363
19363
  goto __pyx_L0;
19364
19364
 
19365
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19365
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19366
19366
  *
19367
19367
  *
19368
19368
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19375,7 +19375,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19375
19375
  return __pyx_r;
19376
19376
  }
19377
19377
 
19378
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19378
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19379
19379
  *
19380
19380
  *
19381
19381
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19386,7 +19386,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19386
19386
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
19387
19387
  npy_timedelta __pyx_r;
19388
19388
 
19389
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
19389
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
19390
19390
  * returns the int64 value underlying scalar numpy timedelta64 object
19391
19391
  * """
19392
19392
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19396,7 +19396,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19396
19396
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
19397
19397
  goto __pyx_L0;
19398
19398
 
19399
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19399
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19400
19400
  *
19401
19401
  *
19402
19402
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19409,7 +19409,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19409
19409
  return __pyx_r;
19410
19410
  }
19411
19411
 
19412
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19412
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19413
19413
  *
19414
19414
  *
19415
19415
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19420,7 +19420,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19420
19420
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
19421
19421
  NPY_DATETIMEUNIT __pyx_r;
19422
19422
 
19423
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
19423
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
19424
19424
  * returns the unit part of the dtype for a numpy datetime64 object.
19425
19425
  * """
19426
19426
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -19428,7 +19428,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
19428
19428
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
19429
19429
  goto __pyx_L0;
19430
19430
 
19431
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19431
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19432
19432
  *
19433
19433
  *
19434
19434
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -22691,7 +22691,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
22691
22691
  __Pyx_GOTREF(__pyx_tuple__8);
22692
22692
  __Pyx_GIVEREF(__pyx_tuple__8);
22693
22693
 
22694
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
22694
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
22695
22695
  * __pyx_import_array()
22696
22696
  * except Exception:
22697
22697
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -22702,7 +22702,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
22702
22702
  __Pyx_GOTREF(__pyx_tuple__9);
22703
22703
  __Pyx_GIVEREF(__pyx_tuple__9);
22704
22704
 
22705
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
22705
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
22706
22706
  * _import_umath()
22707
22707
  * except Exception:
22708
22708
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<