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 # <<<<<<<<<<<<<<
@@ -1920,7 +1920,7 @@ struct __pyx_MemviewEnum_obj;
1920
1920
  struct __pyx_memoryview_obj;
1921
1921
  struct __pyx_memoryviewslice_obj;
1922
1922
 
1923
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1923
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1924
1924
  * ctypedef npy_longdouble longdouble_t
1925
1925
  *
1926
1926
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1929,7 +1929,7 @@ struct __pyx_memoryviewslice_obj;
1929
1929
  */
1930
1930
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1931
1931
 
1932
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1932
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1933
1933
  *
1934
1934
  * ctypedef npy_cfloat cfloat_t
1935
1935
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1938,7 +1938,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1938
1938
  */
1939
1939
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1940
1940
 
1941
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1941
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1942
1942
  * ctypedef npy_cfloat cfloat_t
1943
1943
  * ctypedef npy_cdouble cdouble_t
1944
1944
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1947,7 +1947,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1947
1947
  */
1948
1948
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1949
1949
 
1950
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1950
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1951
1951
  * ctypedef npy_clongdouble clongdouble_t
1952
1952
  *
1953
1953
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -18625,7 +18625,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
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":245
18628
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18629
18629
  *
18630
18630
  * @property
18631
18631
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18636,7 +18636,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18636
18636
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
18637
18637
  PyObject *__pyx_r;
18638
18638
 
18639
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
18639
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
18640
18640
  * """Returns a borrowed reference to the object owning the data/memory.
18641
18641
  * """
18642
18642
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -18646,7 +18646,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18646
18646
  __pyx_r = PyArray_BASE(__pyx_v_self);
18647
18647
  goto __pyx_L0;
18648
18648
 
18649
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18649
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18650
18650
  *
18651
18651
  * @property
18652
18652
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18659,7 +18659,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18659
18659
  return __pyx_r;
18660
18660
  }
18661
18661
 
18662
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18662
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18663
18663
  *
18664
18664
  * @property
18665
18665
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18673,7 +18673,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18673
18673
  PyArray_Descr *__pyx_t_1;
18674
18674
  __Pyx_RefNannySetupContext("descr", 1);
18675
18675
 
18676
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
18676
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
18677
18677
  * """Returns an owned reference to the dtype of the array.
18678
18678
  * """
18679
18679
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -18686,7 +18686,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18686
18686
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
18687
18687
  goto __pyx_L0;
18688
18688
 
18689
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18689
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18690
18690
  *
18691
18691
  * @property
18692
18692
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18701,7 +18701,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18701
18701
  return __pyx_r;
18702
18702
  }
18703
18703
 
18704
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18704
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18705
18705
  *
18706
18706
  * @property
18707
18707
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18712,7 +18712,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18712
18712
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
18713
18713
  int __pyx_r;
18714
18714
 
18715
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
18715
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
18716
18716
  * """Returns the number of dimensions in the array.
18717
18717
  * """
18718
18718
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -18722,7 +18722,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18722
18722
  __pyx_r = PyArray_NDIM(__pyx_v_self);
18723
18723
  goto __pyx_L0;
18724
18724
 
18725
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18725
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18726
18726
  *
18727
18727
  * @property
18728
18728
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18735,7 +18735,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18735
18735
  return __pyx_r;
18736
18736
  }
18737
18737
 
18738
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18738
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18739
18739
  *
18740
18740
  * @property
18741
18741
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18746,7 +18746,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18746
18746
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
18747
18747
  npy_intp *__pyx_r;
18748
18748
 
18749
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
18749
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
18750
18750
  * Can return NULL for 0-dimensional arrays.
18751
18751
  * """
18752
18752
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -18756,7 +18756,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18756
18756
  __pyx_r = PyArray_DIMS(__pyx_v_self);
18757
18757
  goto __pyx_L0;
18758
18758
 
18759
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18759
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18760
18760
  *
18761
18761
  * @property
18762
18762
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18769,7 +18769,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18769
18769
  return __pyx_r;
18770
18770
  }
18771
18771
 
18772
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18772
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18773
18773
  *
18774
18774
  * @property
18775
18775
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18780,7 +18780,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18780
18780
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
18781
18781
  npy_intp *__pyx_r;
18782
18782
 
18783
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
18783
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
18784
18784
  * The number of elements matches the number of dimensions of the array (ndim).
18785
18785
  * """
18786
18786
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -18790,7 +18790,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18790
18790
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
18791
18791
  goto __pyx_L0;
18792
18792
 
18793
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18793
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18794
18794
  *
18795
18795
  * @property
18796
18796
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18803,7 +18803,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18803
18803
  return __pyx_r;
18804
18804
  }
18805
18805
 
18806
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18806
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18807
18807
  *
18808
18808
  * @property
18809
18809
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18814,7 +18814,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18814
18814
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
18815
18815
  npy_intp __pyx_r;
18816
18816
 
18817
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
18817
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
18818
18818
  * """Returns the total size (in number of elements) of the array.
18819
18819
  * """
18820
18820
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -18824,7 +18824,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18824
18824
  __pyx_r = PyArray_SIZE(__pyx_v_self);
18825
18825
  goto __pyx_L0;
18826
18826
 
18827
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18827
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18828
18828
  *
18829
18829
  * @property
18830
18830
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18837,7 +18837,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18837
18837
  return __pyx_r;
18838
18838
  }
18839
18839
 
18840
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18840
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18841
18841
  *
18842
18842
  * @property
18843
18843
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18848,7 +18848,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18848
18848
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
18849
18849
  char *__pyx_r;
18850
18850
 
18851
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
18851
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
18852
18852
  * of `PyArray_DATA()` instead, which returns a 'void*'.
18853
18853
  * """
18854
18854
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -18858,7 +18858,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18858
18858
  __pyx_r = PyArray_BYTES(__pyx_v_self);
18859
18859
  goto __pyx_L0;
18860
18860
 
18861
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18861
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18862
18862
  *
18863
18863
  * @property
18864
18864
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18871,7 +18871,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18871
18871
  return __pyx_r;
18872
18872
  }
18873
18873
 
18874
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
18874
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
18875
18875
  * ctypedef npy_cdouble complex_t
18876
18876
  *
18877
18877
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18888,7 +18888,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18888
18888
  int __pyx_clineno = 0;
18889
18889
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
18890
18890
 
18891
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
18891
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
18892
18892
  *
18893
18893
  * cdef inline object PyArray_MultiIterNew1(a):
18894
18894
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -18902,7 +18902,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18902
18902
  __pyx_t_1 = 0;
18903
18903
  goto __pyx_L0;
18904
18904
 
18905
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
18905
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
18906
18906
  * ctypedef npy_cdouble complex_t
18907
18907
  *
18908
18908
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18921,7 +18921,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18921
18921
  return __pyx_r;
18922
18922
  }
18923
18923
 
18924
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18924
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18925
18925
  * return PyArray_MultiIterNew(1, <void*>a)
18926
18926
  *
18927
18927
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18938,7 +18938,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18938
18938
  int __pyx_clineno = 0;
18939
18939
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
18940
18940
 
18941
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18941
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18942
18942
  *
18943
18943
  * cdef inline object PyArray_MultiIterNew2(a, b):
18944
18944
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -18952,7 +18952,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18952
18952
  __pyx_t_1 = 0;
18953
18953
  goto __pyx_L0;
18954
18954
 
18955
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18955
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18956
18956
  * return PyArray_MultiIterNew(1, <void*>a)
18957
18957
  *
18958
18958
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18971,7 +18971,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18971
18971
  return __pyx_r;
18972
18972
  }
18973
18973
 
18974
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18974
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18975
18975
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18976
18976
  *
18977
18977
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18988,7 +18988,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18988
18988
  int __pyx_clineno = 0;
18989
18989
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
18990
18990
 
18991
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18991
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18992
18992
  *
18993
18993
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
18994
18994
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -19002,7 +19002,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19002
19002
  __pyx_t_1 = 0;
19003
19003
  goto __pyx_L0;
19004
19004
 
19005
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19005
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19006
19006
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19007
19007
  *
19008
19008
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19021,7 +19021,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19021
19021
  return __pyx_r;
19022
19022
  }
19023
19023
 
19024
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19024
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19025
19025
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19026
19026
  *
19027
19027
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19038,7 +19038,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19038
19038
  int __pyx_clineno = 0;
19039
19039
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
19040
19040
 
19041
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
19041
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
19042
19042
  *
19043
19043
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
19044
19044
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -19052,7 +19052,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19052
19052
  __pyx_t_1 = 0;
19053
19053
  goto __pyx_L0;
19054
19054
 
19055
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19055
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19056
19056
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19057
19057
  *
19058
19058
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19071,7 +19071,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19071
19071
  return __pyx_r;
19072
19072
  }
19073
19073
 
19074
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19074
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19075
19075
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19076
19076
  *
19077
19077
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19088,7 +19088,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19088
19088
  int __pyx_clineno = 0;
19089
19089
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
19090
19090
 
19091
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
19091
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
19092
19092
  *
19093
19093
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
19094
19094
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -19102,7 +19102,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19102
19102
  __pyx_t_1 = 0;
19103
19103
  goto __pyx_L0;
19104
19104
 
19105
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19105
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19106
19106
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19107
19107
  *
19108
19108
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19121,7 +19121,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19121
19121
  return __pyx_r;
19122
19122
  }
19123
19123
 
19124
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19124
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19125
19125
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19126
19126
  *
19127
19127
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19135,7 +19135,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19135
19135
  int __pyx_t_1;
19136
19136
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
19137
19137
 
19138
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19138
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19139
19139
  *
19140
19140
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19141
19141
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19145,7 +19145,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19145
19145
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
19146
19146
  if (__pyx_t_1) {
19147
19147
 
19148
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
19148
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
19149
19149
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19150
19150
  * if PyDataType_HASSUBARRAY(d):
19151
19151
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -19157,7 +19157,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19157
19157
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
19158
19158
  goto __pyx_L0;
19159
19159
 
19160
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19160
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19161
19161
  *
19162
19162
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19163
19163
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19166,7 +19166,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19166
19166
  */
19167
19167
  }
19168
19168
 
19169
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19169
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19170
19170
  * return <tuple>d.subarray.shape
19171
19171
  * else:
19172
19172
  * return () # <<<<<<<<<<<<<<
@@ -19180,7 +19180,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19180
19180
  goto __pyx_L0;
19181
19181
  }
19182
19182
 
19183
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19183
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19184
19184
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19185
19185
  *
19186
19186
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19195,7 +19195,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19195
19195
  return __pyx_r;
19196
19196
  }
19197
19197
 
19198
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19198
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19199
19199
  * int _import_umath() except -1
19200
19200
  *
19201
19201
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19209,7 +19209,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19209
19209
  const char *__pyx_filename = NULL;
19210
19210
  int __pyx_clineno = 0;
19211
19211
 
19212
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
19212
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
19213
19213
  *
19214
19214
  * cdef inline void set_array_base(ndarray arr, object base):
19215
19215
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -19218,7 +19218,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19218
19218
  */
19219
19219
  Py_INCREF(__pyx_v_base);
19220
19220
 
19221
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19221
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19222
19222
  * cdef inline void set_array_base(ndarray arr, object base):
19223
19223
  * Py_INCREF(base) # important to do this before stealing the reference below!
19224
19224
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -19227,7 +19227,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19227
19227
  */
19228
19228
  __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)
19229
19229
 
19230
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19230
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19231
19231
  * int _import_umath() except -1
19232
19232
  *
19233
19233
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19242,7 +19242,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19242
19242
  __pyx_L0:;
19243
19243
  }
19244
19244
 
19245
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19245
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19246
19246
  * PyArray_SetBaseObject(arr, base)
19247
19247
  *
19248
19248
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19257,7 +19257,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19257
19257
  int __pyx_t_1;
19258
19258
  __Pyx_RefNannySetupContext("get_array_base", 1);
19259
19259
 
19260
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
19260
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
19261
19261
  *
19262
19262
  * cdef inline object get_array_base(ndarray arr):
19263
19263
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -19266,7 +19266,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19266
19266
  */
19267
19267
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
19268
19268
 
19269
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19269
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19270
19270
  * cdef inline object get_array_base(ndarray arr):
19271
19271
  * base = PyArray_BASE(arr)
19272
19272
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19276,7 +19276,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19276
19276
  __pyx_t_1 = (__pyx_v_base == NULL);
19277
19277
  if (__pyx_t_1) {
19278
19278
 
19279
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19279
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19280
19280
  * base = PyArray_BASE(arr)
19281
19281
  * if base is NULL:
19282
19282
  * return None # <<<<<<<<<<<<<<
@@ -19287,7 +19287,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19287
19287
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
19288
19288
  goto __pyx_L0;
19289
19289
 
19290
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19290
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19291
19291
  * cdef inline object get_array_base(ndarray arr):
19292
19292
  * base = PyArray_BASE(arr)
19293
19293
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19296,7 +19296,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19296
19296
  */
19297
19297
  }
19298
19298
 
19299
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19299
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19300
19300
  * if base is NULL:
19301
19301
  * return None
19302
19302
  * return <object>base # <<<<<<<<<<<<<<
@@ -19308,7 +19308,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19308
19308
  __pyx_r = ((PyObject *)__pyx_v_base);
19309
19309
  goto __pyx_L0;
19310
19310
 
19311
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19311
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19312
19312
  * PyArray_SetBaseObject(arr, base)
19313
19313
  *
19314
19314
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19323,7 +19323,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19323
19323
  return __pyx_r;
19324
19324
  }
19325
19325
 
19326
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19326
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19327
19327
  * # Versions of the import_* functions which are more suitable for
19328
19328
  * # Cython code.
19329
19329
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19347,7 +19347,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19347
19347
  int __pyx_clineno = 0;
19348
19348
  __Pyx_RefNannySetupContext("import_array", 1);
19349
19349
 
19350
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19350
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19351
19351
  * # Cython code.
19352
19352
  * cdef inline int import_array() except -1:
19353
19353
  * try: # <<<<<<<<<<<<<<
@@ -19363,7 +19363,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19363
19363
  __Pyx_XGOTREF(__pyx_t_3);
19364
19364
  /*try:*/ {
19365
19365
 
19366
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19366
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19367
19367
  * cdef inline int import_array() except -1:
19368
19368
  * try:
19369
19369
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -19372,7 +19372,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19372
19372
  */
19373
19373
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
19374
19374
 
19375
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19375
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19376
19376
  * # Cython code.
19377
19377
  * cdef inline int import_array() except -1:
19378
19378
  * try: # <<<<<<<<<<<<<<
@@ -19386,7 +19386,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19386
19386
  goto __pyx_L8_try_end;
19387
19387
  __pyx_L3_error:;
19388
19388
 
19389
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19389
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19390
19390
  * try:
19391
19391
  * __pyx_import_array()
19392
19392
  * except Exception: # <<<<<<<<<<<<<<
@@ -19401,7 +19401,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19401
19401
  __Pyx_XGOTREF(__pyx_t_6);
19402
19402
  __Pyx_XGOTREF(__pyx_t_7);
19403
19403
 
19404
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19404
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19405
19405
  * __pyx_import_array()
19406
19406
  * except Exception:
19407
19407
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -19416,7 +19416,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19416
19416
  }
19417
19417
  goto __pyx_L5_except_error;
19418
19418
 
19419
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19419
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19420
19420
  * # Cython code.
19421
19421
  * cdef inline int import_array() except -1:
19422
19422
  * try: # <<<<<<<<<<<<<<
@@ -19432,7 +19432,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19432
19432
  __pyx_L8_try_end:;
19433
19433
  }
19434
19434
 
19435
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19435
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19436
19436
  * # Versions of the import_* functions which are more suitable for
19437
19437
  * # Cython code.
19438
19438
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19455,7 +19455,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19455
19455
  return __pyx_r;
19456
19456
  }
19457
19457
 
19458
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19458
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19459
19459
  * raise ImportError("numpy.core.multiarray failed to import")
19460
19460
  *
19461
19461
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19479,7 +19479,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19479
19479
  int __pyx_clineno = 0;
19480
19480
  __Pyx_RefNannySetupContext("import_umath", 1);
19481
19481
 
19482
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19482
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19483
19483
  *
19484
19484
  * cdef inline int import_umath() except -1:
19485
19485
  * try: # <<<<<<<<<<<<<<
@@ -19495,7 +19495,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19495
19495
  __Pyx_XGOTREF(__pyx_t_3);
19496
19496
  /*try:*/ {
19497
19497
 
19498
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19498
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19499
19499
  * cdef inline int import_umath() except -1:
19500
19500
  * try:
19501
19501
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19504,7 +19504,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19504
19504
  */
19505
19505
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
19506
19506
 
19507
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19507
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19508
19508
  *
19509
19509
  * cdef inline int import_umath() except -1:
19510
19510
  * try: # <<<<<<<<<<<<<<
@@ -19518,7 +19518,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19518
19518
  goto __pyx_L8_try_end;
19519
19519
  __pyx_L3_error:;
19520
19520
 
19521
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19521
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19522
19522
  * try:
19523
19523
  * _import_umath()
19524
19524
  * except Exception: # <<<<<<<<<<<<<<
@@ -19533,7 +19533,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19533
19533
  __Pyx_XGOTREF(__pyx_t_6);
19534
19534
  __Pyx_XGOTREF(__pyx_t_7);
19535
19535
 
19536
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19536
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19537
19537
  * _import_umath()
19538
19538
  * except Exception:
19539
19539
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19548,7 +19548,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19548
19548
  }
19549
19549
  goto __pyx_L5_except_error;
19550
19550
 
19551
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19551
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19552
19552
  *
19553
19553
  * cdef inline int import_umath() except -1:
19554
19554
  * try: # <<<<<<<<<<<<<<
@@ -19564,7 +19564,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19564
19564
  __pyx_L8_try_end:;
19565
19565
  }
19566
19566
 
19567
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19567
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19568
19568
  * raise ImportError("numpy.core.multiarray failed to import")
19569
19569
  *
19570
19570
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19587,7 +19587,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19587
19587
  return __pyx_r;
19588
19588
  }
19589
19589
 
19590
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19590
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19591
19591
  * raise ImportError("numpy.core.umath failed to import")
19592
19592
  *
19593
19593
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19611,7 +19611,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19611
19611
  int __pyx_clineno = 0;
19612
19612
  __Pyx_RefNannySetupContext("import_ufunc", 1);
19613
19613
 
19614
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19614
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19615
19615
  *
19616
19616
  * cdef inline int import_ufunc() except -1:
19617
19617
  * try: # <<<<<<<<<<<<<<
@@ -19627,7 +19627,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19627
19627
  __Pyx_XGOTREF(__pyx_t_3);
19628
19628
  /*try:*/ {
19629
19629
 
19630
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19630
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19631
19631
  * cdef inline int import_ufunc() except -1:
19632
19632
  * try:
19633
19633
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19636,7 +19636,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19636
19636
  */
19637
19637
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
19638
19638
 
19639
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19639
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19640
19640
  *
19641
19641
  * cdef inline int import_ufunc() except -1:
19642
19642
  * try: # <<<<<<<<<<<<<<
@@ -19650,7 +19650,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19650
19650
  goto __pyx_L8_try_end;
19651
19651
  __pyx_L3_error:;
19652
19652
 
19653
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19653
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19654
19654
  * try:
19655
19655
  * _import_umath()
19656
19656
  * except Exception: # <<<<<<<<<<<<<<
@@ -19665,7 +19665,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19665
19665
  __Pyx_XGOTREF(__pyx_t_6);
19666
19666
  __Pyx_XGOTREF(__pyx_t_7);
19667
19667
 
19668
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19668
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19669
19669
  * _import_umath()
19670
19670
  * except Exception:
19671
19671
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19680,7 +19680,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19680
19680
  }
19681
19681
  goto __pyx_L5_except_error;
19682
19682
 
19683
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19683
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19684
19684
  *
19685
19685
  * cdef inline int import_ufunc() except -1:
19686
19686
  * try: # <<<<<<<<<<<<<<
@@ -19696,7 +19696,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19696
19696
  __pyx_L8_try_end:;
19697
19697
  }
19698
19698
 
19699
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19699
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19700
19700
  * raise ImportError("numpy.core.umath failed to import")
19701
19701
  *
19702
19702
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19719,7 +19719,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19719
19719
  return __pyx_r;
19720
19720
  }
19721
19721
 
19722
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19722
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19723
19723
  *
19724
19724
  *
19725
19725
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19730,7 +19730,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19730
19730
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
19731
19731
  int __pyx_r;
19732
19732
 
19733
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
19733
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
19734
19734
  * bool
19735
19735
  * """
19736
19736
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -19740,7 +19740,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19740
19740
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
19741
19741
  goto __pyx_L0;
19742
19742
 
19743
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19743
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19744
19744
  *
19745
19745
  *
19746
19746
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19753,7 +19753,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19753
19753
  return __pyx_r;
19754
19754
  }
19755
19755
 
19756
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19756
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19757
19757
  *
19758
19758
  *
19759
19759
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19764,7 +19764,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19764
19764
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
19765
19765
  int __pyx_r;
19766
19766
 
19767
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
19767
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
19768
19768
  * bool
19769
19769
  * """
19770
19770
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -19774,7 +19774,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19774
19774
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
19775
19775
  goto __pyx_L0;
19776
19776
 
19777
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19777
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19778
19778
  *
19779
19779
  *
19780
19780
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19787,7 +19787,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19787
19787
  return __pyx_r;
19788
19788
  }
19789
19789
 
19790
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19790
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19791
19791
  *
19792
19792
  *
19793
19793
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19798,7 +19798,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19798
19798
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
19799
19799
  npy_datetime __pyx_r;
19800
19800
 
19801
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
19801
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
19802
19802
  * also needed. That can be found using `get_datetime64_unit`.
19803
19803
  * """
19804
19804
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19808,7 +19808,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19808
19808
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
19809
19809
  goto __pyx_L0;
19810
19810
 
19811
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19811
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19812
19812
  *
19813
19813
  *
19814
19814
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19821,7 +19821,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19821
19821
  return __pyx_r;
19822
19822
  }
19823
19823
 
19824
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19824
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19825
19825
  *
19826
19826
  *
19827
19827
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19832,7 +19832,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19832
19832
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
19833
19833
  npy_timedelta __pyx_r;
19834
19834
 
19835
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
19835
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
19836
19836
  * returns the int64 value underlying scalar numpy timedelta64 object
19837
19837
  * """
19838
19838
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19842,7 +19842,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19842
19842
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
19843
19843
  goto __pyx_L0;
19844
19844
 
19845
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19845
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19846
19846
  *
19847
19847
  *
19848
19848
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19855,7 +19855,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19855
19855
  return __pyx_r;
19856
19856
  }
19857
19857
 
19858
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19858
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19859
19859
  *
19860
19860
  *
19861
19861
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19866,7 +19866,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19866
19866
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
19867
19867
  NPY_DATETIMEUNIT __pyx_r;
19868
19868
 
19869
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
19869
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
19870
19870
  * returns the unit part of the dtype for a numpy datetime64 object.
19871
19871
  * """
19872
19872
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -19874,7 +19874,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
19874
19874
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
19875
19875
  goto __pyx_L0;
19876
19876
 
19877
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19877
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19878
19878
  *
19879
19879
  *
19880
19880
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -29733,7 +29733,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
29733
29733
  __Pyx_GOTREF(__pyx_tuple__8);
29734
29734
  __Pyx_GIVEREF(__pyx_tuple__8);
29735
29735
 
29736
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
29736
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
29737
29737
  * __pyx_import_array()
29738
29738
  * except Exception:
29739
29739
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -29744,7 +29744,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
29744
29744
  __Pyx_GOTREF(__pyx_tuple__9);
29745
29745
  __Pyx_GIVEREF(__pyx_tuple__9);
29746
29746
 
29747
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
29747
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
29748
29748
  * _import_umath()
29749
29749
  * except Exception:
29750
29750
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<