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 # <<<<<<<<<<<<<<
@@ -1903,7 +1903,7 @@ struct __pyx_MemviewEnum_obj;
1903
1903
  struct __pyx_memoryview_obj;
1904
1904
  struct __pyx_memoryviewslice_obj;
1905
1905
 
1906
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1906
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1907
1907
  * ctypedef npy_longdouble longdouble_t
1908
1908
  *
1909
1909
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1912,7 +1912,7 @@ struct __pyx_memoryviewslice_obj;
1912
1912
  */
1913
1913
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1914
1914
 
1915
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1915
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1916
1916
  *
1917
1917
  * ctypedef npy_cfloat cfloat_t
1918
1918
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1921,7 +1921,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1921
1921
  */
1922
1922
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1923
1923
 
1924
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1924
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1925
1925
  * ctypedef npy_cfloat cfloat_t
1926
1926
  * ctypedef npy_cdouble cdouble_t
1927
1927
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1930,7 +1930,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1930
1930
  */
1931
1931
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1932
1932
 
1933
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1933
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1934
1934
  * ctypedef npy_clongdouble clongdouble_t
1935
1935
  *
1936
1936
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -18779,7 +18779,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18779
18779
  return __pyx_r;
18780
18780
  }
18781
18781
 
18782
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18782
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18783
18783
  *
18784
18784
  * @property
18785
18785
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18790,7 +18790,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18790
18790
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
18791
18791
  PyObject *__pyx_r;
18792
18792
 
18793
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
18793
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
18794
18794
  * """Returns a borrowed reference to the object owning the data/memory.
18795
18795
  * """
18796
18796
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -18800,7 +18800,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18800
18800
  __pyx_r = PyArray_BASE(__pyx_v_self);
18801
18801
  goto __pyx_L0;
18802
18802
 
18803
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18803
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18804
18804
  *
18805
18805
  * @property
18806
18806
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18813,7 +18813,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18813
18813
  return __pyx_r;
18814
18814
  }
18815
18815
 
18816
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18816
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18817
18817
  *
18818
18818
  * @property
18819
18819
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18827,7 +18827,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18827
18827
  PyArray_Descr *__pyx_t_1;
18828
18828
  __Pyx_RefNannySetupContext("descr", 1);
18829
18829
 
18830
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
18830
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
18831
18831
  * """Returns an owned reference to the dtype of the array.
18832
18832
  * """
18833
18833
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -18840,7 +18840,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18840
18840
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
18841
18841
  goto __pyx_L0;
18842
18842
 
18843
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18843
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18844
18844
  *
18845
18845
  * @property
18846
18846
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18855,7 +18855,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18855
18855
  return __pyx_r;
18856
18856
  }
18857
18857
 
18858
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18858
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18859
18859
  *
18860
18860
  * @property
18861
18861
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18866,7 +18866,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18866
18866
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
18867
18867
  int __pyx_r;
18868
18868
 
18869
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
18869
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
18870
18870
  * """Returns the number of dimensions in the array.
18871
18871
  * """
18872
18872
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -18876,7 +18876,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18876
18876
  __pyx_r = PyArray_NDIM(__pyx_v_self);
18877
18877
  goto __pyx_L0;
18878
18878
 
18879
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18879
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18880
18880
  *
18881
18881
  * @property
18882
18882
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18889,7 +18889,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18889
18889
  return __pyx_r;
18890
18890
  }
18891
18891
 
18892
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18892
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18893
18893
  *
18894
18894
  * @property
18895
18895
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18900,7 +18900,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18900
18900
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
18901
18901
  npy_intp *__pyx_r;
18902
18902
 
18903
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
18903
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
18904
18904
  * Can return NULL for 0-dimensional arrays.
18905
18905
  * """
18906
18906
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -18910,7 +18910,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18910
18910
  __pyx_r = PyArray_DIMS(__pyx_v_self);
18911
18911
  goto __pyx_L0;
18912
18912
 
18913
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18913
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18914
18914
  *
18915
18915
  * @property
18916
18916
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18923,7 +18923,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18923
18923
  return __pyx_r;
18924
18924
  }
18925
18925
 
18926
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18926
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18927
18927
  *
18928
18928
  * @property
18929
18929
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18934,7 +18934,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18934
18934
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
18935
18935
  npy_intp *__pyx_r;
18936
18936
 
18937
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
18937
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
18938
18938
  * The number of elements matches the number of dimensions of the array (ndim).
18939
18939
  * """
18940
18940
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -18944,7 +18944,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18944
18944
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
18945
18945
  goto __pyx_L0;
18946
18946
 
18947
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18947
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18948
18948
  *
18949
18949
  * @property
18950
18950
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18957,7 +18957,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18957
18957
  return __pyx_r;
18958
18958
  }
18959
18959
 
18960
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18960
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18961
18961
  *
18962
18962
  * @property
18963
18963
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18968,7 +18968,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18968
18968
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
18969
18969
  npy_intp __pyx_r;
18970
18970
 
18971
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
18971
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
18972
18972
  * """Returns the total size (in number of elements) of the array.
18973
18973
  * """
18974
18974
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -18978,7 +18978,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18978
18978
  __pyx_r = PyArray_SIZE(__pyx_v_self);
18979
18979
  goto __pyx_L0;
18980
18980
 
18981
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18981
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18982
18982
  *
18983
18983
  * @property
18984
18984
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18991,7 +18991,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18991
18991
  return __pyx_r;
18992
18992
  }
18993
18993
 
18994
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18994
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18995
18995
  *
18996
18996
  * @property
18997
18997
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -19002,7 +19002,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19002
19002
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
19003
19003
  char *__pyx_r;
19004
19004
 
19005
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
19005
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
19006
19006
  * of `PyArray_DATA()` instead, which returns a 'void*'.
19007
19007
  * """
19008
19008
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -19012,7 +19012,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
19012
19012
  __pyx_r = PyArray_BYTES(__pyx_v_self);
19013
19013
  goto __pyx_L0;
19014
19014
 
19015
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19015
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19016
19016
  *
19017
19017
  * @property
19018
19018
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -19025,7 +19025,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
19025
19025
  return __pyx_r;
19026
19026
  }
19027
19027
 
19028
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19028
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19029
19029
  * ctypedef npy_cdouble complex_t
19030
19030
  *
19031
19031
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19042,7 +19042,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19042
19042
  int __pyx_clineno = 0;
19043
19043
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
19044
19044
 
19045
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
19045
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
19046
19046
  *
19047
19047
  * cdef inline object PyArray_MultiIterNew1(a):
19048
19048
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -19056,7 +19056,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19056
19056
  __pyx_t_1 = 0;
19057
19057
  goto __pyx_L0;
19058
19058
 
19059
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19059
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19060
19060
  * ctypedef npy_cdouble complex_t
19061
19061
  *
19062
19062
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19075,7 +19075,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19075
19075
  return __pyx_r;
19076
19076
  }
19077
19077
 
19078
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19078
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19079
19079
  * return PyArray_MultiIterNew(1, <void*>a)
19080
19080
  *
19081
19081
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19092,7 +19092,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19092
19092
  int __pyx_clineno = 0;
19093
19093
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
19094
19094
 
19095
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
19095
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
19096
19096
  *
19097
19097
  * cdef inline object PyArray_MultiIterNew2(a, b):
19098
19098
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -19106,7 +19106,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19106
19106
  __pyx_t_1 = 0;
19107
19107
  goto __pyx_L0;
19108
19108
 
19109
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19109
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19110
19110
  * return PyArray_MultiIterNew(1, <void*>a)
19111
19111
  *
19112
19112
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19125,7 +19125,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19125
19125
  return __pyx_r;
19126
19126
  }
19127
19127
 
19128
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19128
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19129
19129
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19130
19130
  *
19131
19131
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19142,7 +19142,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19142
19142
  int __pyx_clineno = 0;
19143
19143
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
19144
19144
 
19145
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
19145
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
19146
19146
  *
19147
19147
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
19148
19148
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -19156,7 +19156,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19156
19156
  __pyx_t_1 = 0;
19157
19157
  goto __pyx_L0;
19158
19158
 
19159
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19159
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19160
19160
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19161
19161
  *
19162
19162
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19175,7 +19175,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19175
19175
  return __pyx_r;
19176
19176
  }
19177
19177
 
19178
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19178
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19179
19179
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19180
19180
  *
19181
19181
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19192,7 +19192,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19192
19192
  int __pyx_clineno = 0;
19193
19193
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
19194
19194
 
19195
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
19195
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
19196
19196
  *
19197
19197
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
19198
19198
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -19206,7 +19206,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19206
19206
  __pyx_t_1 = 0;
19207
19207
  goto __pyx_L0;
19208
19208
 
19209
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19209
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19210
19210
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19211
19211
  *
19212
19212
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19225,7 +19225,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19225
19225
  return __pyx_r;
19226
19226
  }
19227
19227
 
19228
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19228
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19229
19229
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19230
19230
  *
19231
19231
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19242,7 +19242,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19242
19242
  int __pyx_clineno = 0;
19243
19243
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
19244
19244
 
19245
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
19245
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
19246
19246
  *
19247
19247
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
19248
19248
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -19256,7 +19256,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19256
19256
  __pyx_t_1 = 0;
19257
19257
  goto __pyx_L0;
19258
19258
 
19259
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19259
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19260
19260
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19261
19261
  *
19262
19262
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19275,7 +19275,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19275
19275
  return __pyx_r;
19276
19276
  }
19277
19277
 
19278
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19278
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19279
19279
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19280
19280
  *
19281
19281
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19289,7 +19289,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19289
19289
  int __pyx_t_1;
19290
19290
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
19291
19291
 
19292
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19292
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19293
19293
  *
19294
19294
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19295
19295
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19299,7 +19299,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19299
19299
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
19300
19300
  if (__pyx_t_1) {
19301
19301
 
19302
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
19302
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
19303
19303
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19304
19304
  * if PyDataType_HASSUBARRAY(d):
19305
19305
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -19311,7 +19311,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19311
19311
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
19312
19312
  goto __pyx_L0;
19313
19313
 
19314
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19314
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19315
19315
  *
19316
19316
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19317
19317
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19320,7 +19320,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19320
19320
  */
19321
19321
  }
19322
19322
 
19323
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19323
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19324
19324
  * return <tuple>d.subarray.shape
19325
19325
  * else:
19326
19326
  * return () # <<<<<<<<<<<<<<
@@ -19334,7 +19334,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19334
19334
  goto __pyx_L0;
19335
19335
  }
19336
19336
 
19337
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19337
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19338
19338
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19339
19339
  *
19340
19340
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19349,7 +19349,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19349
19349
  return __pyx_r;
19350
19350
  }
19351
19351
 
19352
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19352
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19353
19353
  * int _import_umath() except -1
19354
19354
  *
19355
19355
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19363,7 +19363,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19363
19363
  const char *__pyx_filename = NULL;
19364
19364
  int __pyx_clineno = 0;
19365
19365
 
19366
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
19366
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
19367
19367
  *
19368
19368
  * cdef inline void set_array_base(ndarray arr, object base):
19369
19369
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -19372,7 +19372,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19372
19372
  */
19373
19373
  Py_INCREF(__pyx_v_base);
19374
19374
 
19375
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19375
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19376
19376
  * cdef inline void set_array_base(ndarray arr, object base):
19377
19377
  * Py_INCREF(base) # important to do this before stealing the reference below!
19378
19378
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -19381,7 +19381,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19381
19381
  */
19382
19382
  __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)
19383
19383
 
19384
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19384
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19385
19385
  * int _import_umath() except -1
19386
19386
  *
19387
19387
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19396,7 +19396,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19396
19396
  __pyx_L0:;
19397
19397
  }
19398
19398
 
19399
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19399
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19400
19400
  * PyArray_SetBaseObject(arr, base)
19401
19401
  *
19402
19402
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19411,7 +19411,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19411
19411
  int __pyx_t_1;
19412
19412
  __Pyx_RefNannySetupContext("get_array_base", 1);
19413
19413
 
19414
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
19414
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
19415
19415
  *
19416
19416
  * cdef inline object get_array_base(ndarray arr):
19417
19417
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -19420,7 +19420,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19420
19420
  */
19421
19421
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
19422
19422
 
19423
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19423
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19424
19424
  * cdef inline object get_array_base(ndarray arr):
19425
19425
  * base = PyArray_BASE(arr)
19426
19426
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19430,7 +19430,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19430
19430
  __pyx_t_1 = (__pyx_v_base == NULL);
19431
19431
  if (__pyx_t_1) {
19432
19432
 
19433
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19433
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19434
19434
  * base = PyArray_BASE(arr)
19435
19435
  * if base is NULL:
19436
19436
  * return None # <<<<<<<<<<<<<<
@@ -19441,7 +19441,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19441
19441
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
19442
19442
  goto __pyx_L0;
19443
19443
 
19444
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19444
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19445
19445
  * cdef inline object get_array_base(ndarray arr):
19446
19446
  * base = PyArray_BASE(arr)
19447
19447
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19450,7 +19450,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19450
19450
  */
19451
19451
  }
19452
19452
 
19453
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19453
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19454
19454
  * if base is NULL:
19455
19455
  * return None
19456
19456
  * return <object>base # <<<<<<<<<<<<<<
@@ -19462,7 +19462,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19462
19462
  __pyx_r = ((PyObject *)__pyx_v_base);
19463
19463
  goto __pyx_L0;
19464
19464
 
19465
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19465
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19466
19466
  * PyArray_SetBaseObject(arr, base)
19467
19467
  *
19468
19468
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19477,7 +19477,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19477
19477
  return __pyx_r;
19478
19478
  }
19479
19479
 
19480
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19480
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19481
19481
  * # Versions of the import_* functions which are more suitable for
19482
19482
  * # Cython code.
19483
19483
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19501,7 +19501,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19501
19501
  int __pyx_clineno = 0;
19502
19502
  __Pyx_RefNannySetupContext("import_array", 1);
19503
19503
 
19504
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19504
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19505
19505
  * # Cython code.
19506
19506
  * cdef inline int import_array() except -1:
19507
19507
  * try: # <<<<<<<<<<<<<<
@@ -19517,7 +19517,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19517
19517
  __Pyx_XGOTREF(__pyx_t_3);
19518
19518
  /*try:*/ {
19519
19519
 
19520
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19520
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19521
19521
  * cdef inline int import_array() except -1:
19522
19522
  * try:
19523
19523
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -19526,7 +19526,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19526
19526
  */
19527
19527
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
19528
19528
 
19529
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19529
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19530
19530
  * # Cython code.
19531
19531
  * cdef inline int import_array() except -1:
19532
19532
  * try: # <<<<<<<<<<<<<<
@@ -19540,7 +19540,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19540
19540
  goto __pyx_L8_try_end;
19541
19541
  __pyx_L3_error:;
19542
19542
 
19543
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19543
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19544
19544
  * try:
19545
19545
  * __pyx_import_array()
19546
19546
  * except Exception: # <<<<<<<<<<<<<<
@@ -19555,7 +19555,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19555
19555
  __Pyx_XGOTREF(__pyx_t_6);
19556
19556
  __Pyx_XGOTREF(__pyx_t_7);
19557
19557
 
19558
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19558
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19559
19559
  * __pyx_import_array()
19560
19560
  * except Exception:
19561
19561
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -19570,7 +19570,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19570
19570
  }
19571
19571
  goto __pyx_L5_except_error;
19572
19572
 
19573
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19573
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19574
19574
  * # Cython code.
19575
19575
  * cdef inline int import_array() except -1:
19576
19576
  * try: # <<<<<<<<<<<<<<
@@ -19586,7 +19586,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19586
19586
  __pyx_L8_try_end:;
19587
19587
  }
19588
19588
 
19589
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19589
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19590
19590
  * # Versions of the import_* functions which are more suitable for
19591
19591
  * # Cython code.
19592
19592
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19609,7 +19609,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19609
19609
  return __pyx_r;
19610
19610
  }
19611
19611
 
19612
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19612
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19613
19613
  * raise ImportError("numpy.core.multiarray failed to import")
19614
19614
  *
19615
19615
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19633,7 +19633,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19633
19633
  int __pyx_clineno = 0;
19634
19634
  __Pyx_RefNannySetupContext("import_umath", 1);
19635
19635
 
19636
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19636
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19637
19637
  *
19638
19638
  * cdef inline int import_umath() except -1:
19639
19639
  * try: # <<<<<<<<<<<<<<
@@ -19649,7 +19649,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19649
19649
  __Pyx_XGOTREF(__pyx_t_3);
19650
19650
  /*try:*/ {
19651
19651
 
19652
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19652
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19653
19653
  * cdef inline int import_umath() except -1:
19654
19654
  * try:
19655
19655
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19658,7 +19658,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19658
19658
  */
19659
19659
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
19660
19660
 
19661
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19661
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19662
19662
  *
19663
19663
  * cdef inline int import_umath() except -1:
19664
19664
  * try: # <<<<<<<<<<<<<<
@@ -19672,7 +19672,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19672
19672
  goto __pyx_L8_try_end;
19673
19673
  __pyx_L3_error:;
19674
19674
 
19675
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19675
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19676
19676
  * try:
19677
19677
  * _import_umath()
19678
19678
  * except Exception: # <<<<<<<<<<<<<<
@@ -19687,7 +19687,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19687
19687
  __Pyx_XGOTREF(__pyx_t_6);
19688
19688
  __Pyx_XGOTREF(__pyx_t_7);
19689
19689
 
19690
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19690
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19691
19691
  * _import_umath()
19692
19692
  * except Exception:
19693
19693
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19702,7 +19702,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19702
19702
  }
19703
19703
  goto __pyx_L5_except_error;
19704
19704
 
19705
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19705
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19706
19706
  *
19707
19707
  * cdef inline int import_umath() except -1:
19708
19708
  * try: # <<<<<<<<<<<<<<
@@ -19718,7 +19718,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19718
19718
  __pyx_L8_try_end:;
19719
19719
  }
19720
19720
 
19721
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19721
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19722
19722
  * raise ImportError("numpy.core.multiarray failed to import")
19723
19723
  *
19724
19724
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19741,7 +19741,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19741
19741
  return __pyx_r;
19742
19742
  }
19743
19743
 
19744
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19744
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19745
19745
  * raise ImportError("numpy.core.umath failed to import")
19746
19746
  *
19747
19747
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19765,7 +19765,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19765
19765
  int __pyx_clineno = 0;
19766
19766
  __Pyx_RefNannySetupContext("import_ufunc", 1);
19767
19767
 
19768
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19768
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19769
19769
  *
19770
19770
  * cdef inline int import_ufunc() except -1:
19771
19771
  * try: # <<<<<<<<<<<<<<
@@ -19781,7 +19781,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19781
19781
  __Pyx_XGOTREF(__pyx_t_3);
19782
19782
  /*try:*/ {
19783
19783
 
19784
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19784
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19785
19785
  * cdef inline int import_ufunc() except -1:
19786
19786
  * try:
19787
19787
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19790,7 +19790,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19790
19790
  */
19791
19791
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
19792
19792
 
19793
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19793
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19794
19794
  *
19795
19795
  * cdef inline int import_ufunc() except -1:
19796
19796
  * try: # <<<<<<<<<<<<<<
@@ -19804,7 +19804,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19804
19804
  goto __pyx_L8_try_end;
19805
19805
  __pyx_L3_error:;
19806
19806
 
19807
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19807
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19808
19808
  * try:
19809
19809
  * _import_umath()
19810
19810
  * except Exception: # <<<<<<<<<<<<<<
@@ -19819,7 +19819,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19819
19819
  __Pyx_XGOTREF(__pyx_t_6);
19820
19820
  __Pyx_XGOTREF(__pyx_t_7);
19821
19821
 
19822
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19822
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19823
19823
  * _import_umath()
19824
19824
  * except Exception:
19825
19825
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19834,7 +19834,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19834
19834
  }
19835
19835
  goto __pyx_L5_except_error;
19836
19836
 
19837
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19837
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19838
19838
  *
19839
19839
  * cdef inline int import_ufunc() except -1:
19840
19840
  * try: # <<<<<<<<<<<<<<
@@ -19850,7 +19850,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19850
19850
  __pyx_L8_try_end:;
19851
19851
  }
19852
19852
 
19853
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19853
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19854
19854
  * raise ImportError("numpy.core.umath failed to import")
19855
19855
  *
19856
19856
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19873,7 +19873,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19873
19873
  return __pyx_r;
19874
19874
  }
19875
19875
 
19876
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19876
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19877
19877
  *
19878
19878
  *
19879
19879
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19884,7 +19884,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19884
19884
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
19885
19885
  int __pyx_r;
19886
19886
 
19887
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
19887
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
19888
19888
  * bool
19889
19889
  * """
19890
19890
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -19894,7 +19894,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19894
19894
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
19895
19895
  goto __pyx_L0;
19896
19896
 
19897
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19897
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19898
19898
  *
19899
19899
  *
19900
19900
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19907,7 +19907,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19907
19907
  return __pyx_r;
19908
19908
  }
19909
19909
 
19910
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19910
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19911
19911
  *
19912
19912
  *
19913
19913
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19918,7 +19918,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19918
19918
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
19919
19919
  int __pyx_r;
19920
19920
 
19921
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
19921
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
19922
19922
  * bool
19923
19923
  * """
19924
19924
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -19928,7 +19928,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19928
19928
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
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":1014
19931
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19932
19932
  *
19933
19933
  *
19934
19934
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19941,7 +19941,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19941
19941
  return __pyx_r;
19942
19942
  }
19943
19943
 
19944
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19944
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19945
19945
  *
19946
19946
  *
19947
19947
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19952,7 +19952,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19952
19952
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
19953
19953
  npy_datetime __pyx_r;
19954
19954
 
19955
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
19955
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
19956
19956
  * also needed. That can be found using `get_datetime64_unit`.
19957
19957
  * """
19958
19958
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19962,7 +19962,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19962
19962
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
19963
19963
  goto __pyx_L0;
19964
19964
 
19965
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19965
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19966
19966
  *
19967
19967
  *
19968
19968
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19975,7 +19975,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19975
19975
  return __pyx_r;
19976
19976
  }
19977
19977
 
19978
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19978
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19979
19979
  *
19980
19980
  *
19981
19981
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19986,7 +19986,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19986
19986
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
19987
19987
  npy_timedelta __pyx_r;
19988
19988
 
19989
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
19989
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
19990
19990
  * returns the int64 value underlying scalar numpy timedelta64 object
19991
19991
  * """
19992
19992
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19996,7 +19996,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19996
19996
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
19997
19997
  goto __pyx_L0;
19998
19998
 
19999
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19999
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
20000
20000
  *
20001
20001
  *
20002
20002
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20009,7 +20009,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20009
20009
  return __pyx_r;
20010
20010
  }
20011
20011
 
20012
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20012
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20013
20013
  *
20014
20014
  *
20015
20015
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20020,7 +20020,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20020
20020
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
20021
20021
  NPY_DATETIMEUNIT __pyx_r;
20022
20022
 
20023
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
20023
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
20024
20024
  * returns the unit part of the dtype for a numpy datetime64 object.
20025
20025
  * """
20026
20026
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -20028,7 +20028,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
20028
20028
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
20029
20029
  goto __pyx_L0;
20030
20030
 
20031
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20031
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20032
20032
  *
20033
20033
  *
20034
20034
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -25070,7 +25070,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
25070
25070
  __Pyx_GOTREF(__pyx_tuple__8);
25071
25071
  __Pyx_GIVEREF(__pyx_tuple__8);
25072
25072
 
25073
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
25073
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
25074
25074
  * __pyx_import_array()
25075
25075
  * except Exception:
25076
25076
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -25081,7 +25081,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
25081
25081
  __Pyx_GOTREF(__pyx_tuple__9);
25082
25082
  __Pyx_GIVEREF(__pyx_tuple__9);
25083
25083
 
25084
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
25084
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
25085
25085
  * _import_umath()
25086
25086
  * except Exception:
25087
25087
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<