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 # <<<<<<<<<<<<<<
@@ -19264,7 +19264,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
19264
19264
  return __pyx_r;
19265
19265
  }
19266
19266
 
19267
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19267
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19268
19268
  *
19269
19269
  * @property
19270
19270
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -19275,7 +19275,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
19275
19275
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
19276
19276
  PyObject *__pyx_r;
19277
19277
 
19278
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
19278
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
19279
19279
  * """Returns a borrowed reference to the object owning the data/memory.
19280
19280
  * """
19281
19281
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -19285,7 +19285,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
19285
19285
  __pyx_r = PyArray_BASE(__pyx_v_self);
19286
19286
  goto __pyx_L0;
19287
19287
 
19288
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19288
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19289
19289
  *
19290
19290
  * @property
19291
19291
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -19298,7 +19298,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
19298
19298
  return __pyx_r;
19299
19299
  }
19300
19300
 
19301
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19301
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19302
19302
  *
19303
19303
  * @property
19304
19304
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -19312,7 +19312,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19312
19312
  PyArray_Descr *__pyx_t_1;
19313
19313
  __Pyx_RefNannySetupContext("descr", 1);
19314
19314
 
19315
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
19315
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
19316
19316
  * """Returns an owned reference to the dtype of the array.
19317
19317
  * """
19318
19318
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -19325,7 +19325,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19325
19325
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
19326
19326
  goto __pyx_L0;
19327
19327
 
19328
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19328
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19329
19329
  *
19330
19330
  * @property
19331
19331
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -19340,7 +19340,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19340
19340
  return __pyx_r;
19341
19341
  }
19342
19342
 
19343
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19343
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19344
19344
  *
19345
19345
  * @property
19346
19346
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -19351,7 +19351,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19351
19351
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
19352
19352
  int __pyx_r;
19353
19353
 
19354
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
19354
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
19355
19355
  * """Returns the number of dimensions in the array.
19356
19356
  * """
19357
19357
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -19361,7 +19361,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19361
19361
  __pyx_r = PyArray_NDIM(__pyx_v_self);
19362
19362
  goto __pyx_L0;
19363
19363
 
19364
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19364
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19365
19365
  *
19366
19366
  * @property
19367
19367
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -19374,7 +19374,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19374
19374
  return __pyx_r;
19375
19375
  }
19376
19376
 
19377
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19377
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19378
19378
  *
19379
19379
  * @property
19380
19380
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -19385,7 +19385,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19385
19385
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
19386
19386
  npy_intp *__pyx_r;
19387
19387
 
19388
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
19388
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
19389
19389
  * Can return NULL for 0-dimensional arrays.
19390
19390
  * """
19391
19391
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -19395,7 +19395,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19395
19395
  __pyx_r = PyArray_DIMS(__pyx_v_self);
19396
19396
  goto __pyx_L0;
19397
19397
 
19398
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19398
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19399
19399
  *
19400
19400
  * @property
19401
19401
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -19408,7 +19408,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19408
19408
  return __pyx_r;
19409
19409
  }
19410
19410
 
19411
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19411
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19412
19412
  *
19413
19413
  * @property
19414
19414
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -19419,7 +19419,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19419
19419
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
19420
19420
  npy_intp *__pyx_r;
19421
19421
 
19422
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
19422
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
19423
19423
  * The number of elements matches the number of dimensions of the array (ndim).
19424
19424
  * """
19425
19425
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -19429,7 +19429,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19429
19429
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
19430
19430
  goto __pyx_L0;
19431
19431
 
19432
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19432
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19433
19433
  *
19434
19434
  * @property
19435
19435
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -19442,7 +19442,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19442
19442
  return __pyx_r;
19443
19443
  }
19444
19444
 
19445
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19445
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19446
19446
  *
19447
19447
  * @property
19448
19448
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -19453,7 +19453,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19453
19453
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
19454
19454
  npy_intp __pyx_r;
19455
19455
 
19456
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
19456
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
19457
19457
  * """Returns the total size (in number of elements) of the array.
19458
19458
  * """
19459
19459
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -19463,7 +19463,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19463
19463
  __pyx_r = PyArray_SIZE(__pyx_v_self);
19464
19464
  goto __pyx_L0;
19465
19465
 
19466
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19466
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19467
19467
  *
19468
19468
  * @property
19469
19469
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -19476,7 +19476,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19476
19476
  return __pyx_r;
19477
19477
  }
19478
19478
 
19479
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19479
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19480
19480
  *
19481
19481
  * @property
19482
19482
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -19487,7 +19487,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19487
19487
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
19488
19488
  char *__pyx_r;
19489
19489
 
19490
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
19490
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
19491
19491
  * of `PyArray_DATA()` instead, which returns a 'void*'.
19492
19492
  * """
19493
19493
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -19497,7 +19497,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
19497
19497
  __pyx_r = PyArray_BYTES(__pyx_v_self);
19498
19498
  goto __pyx_L0;
19499
19499
 
19500
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19500
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19501
19501
  *
19502
19502
  * @property
19503
19503
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -19510,7 +19510,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
19510
19510
  return __pyx_r;
19511
19511
  }
19512
19512
 
19513
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19513
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19514
19514
  * ctypedef npy_cdouble complex_t
19515
19515
  *
19516
19516
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19527,7 +19527,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19527
19527
  int __pyx_clineno = 0;
19528
19528
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
19529
19529
 
19530
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
19530
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
19531
19531
  *
19532
19532
  * cdef inline object PyArray_MultiIterNew1(a):
19533
19533
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -19541,7 +19541,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19541
19541
  __pyx_t_1 = 0;
19542
19542
  goto __pyx_L0;
19543
19543
 
19544
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19544
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19545
19545
  * ctypedef npy_cdouble complex_t
19546
19546
  *
19547
19547
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19560,7 +19560,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19560
19560
  return __pyx_r;
19561
19561
  }
19562
19562
 
19563
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19563
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19564
19564
  * return PyArray_MultiIterNew(1, <void*>a)
19565
19565
  *
19566
19566
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19577,7 +19577,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19577
19577
  int __pyx_clineno = 0;
19578
19578
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
19579
19579
 
19580
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
19580
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
19581
19581
  *
19582
19582
  * cdef inline object PyArray_MultiIterNew2(a, b):
19583
19583
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -19591,7 +19591,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19591
19591
  __pyx_t_1 = 0;
19592
19592
  goto __pyx_L0;
19593
19593
 
19594
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19594
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19595
19595
  * return PyArray_MultiIterNew(1, <void*>a)
19596
19596
  *
19597
19597
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19610,7 +19610,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19610
19610
  return __pyx_r;
19611
19611
  }
19612
19612
 
19613
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19613
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19614
19614
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19615
19615
  *
19616
19616
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19627,7 +19627,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19627
19627
  int __pyx_clineno = 0;
19628
19628
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
19629
19629
 
19630
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
19630
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
19631
19631
  *
19632
19632
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
19633
19633
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -19641,7 +19641,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19641
19641
  __pyx_t_1 = 0;
19642
19642
  goto __pyx_L0;
19643
19643
 
19644
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19644
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19645
19645
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19646
19646
  *
19647
19647
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19660,7 +19660,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19660
19660
  return __pyx_r;
19661
19661
  }
19662
19662
 
19663
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19663
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19664
19664
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19665
19665
  *
19666
19666
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19677,7 +19677,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19677
19677
  int __pyx_clineno = 0;
19678
19678
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
19679
19679
 
19680
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
19680
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
19681
19681
  *
19682
19682
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
19683
19683
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -19691,7 +19691,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19691
19691
  __pyx_t_1 = 0;
19692
19692
  goto __pyx_L0;
19693
19693
 
19694
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19694
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19695
19695
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19696
19696
  *
19697
19697
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19710,7 +19710,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19710
19710
  return __pyx_r;
19711
19711
  }
19712
19712
 
19713
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19713
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19714
19714
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19715
19715
  *
19716
19716
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19727,7 +19727,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19727
19727
  int __pyx_clineno = 0;
19728
19728
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
19729
19729
 
19730
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
19730
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
19731
19731
  *
19732
19732
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
19733
19733
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -19741,7 +19741,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19741
19741
  __pyx_t_1 = 0;
19742
19742
  goto __pyx_L0;
19743
19743
 
19744
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19744
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19745
19745
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19746
19746
  *
19747
19747
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19760,7 +19760,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19760
19760
  return __pyx_r;
19761
19761
  }
19762
19762
 
19763
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19763
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19764
19764
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19765
19765
  *
19766
19766
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19774,7 +19774,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19774
19774
  int __pyx_t_1;
19775
19775
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
19776
19776
 
19777
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19777
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19778
19778
  *
19779
19779
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19780
19780
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19784,7 +19784,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19784
19784
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
19785
19785
  if (__pyx_t_1) {
19786
19786
 
19787
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
19787
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
19788
19788
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19789
19789
  * if PyDataType_HASSUBARRAY(d):
19790
19790
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -19796,7 +19796,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19796
19796
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
19797
19797
  goto __pyx_L0;
19798
19798
 
19799
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19799
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19800
19800
  *
19801
19801
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19802
19802
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19805,7 +19805,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19805
19805
  */
19806
19806
  }
19807
19807
 
19808
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19808
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19809
19809
  * return <tuple>d.subarray.shape
19810
19810
  * else:
19811
19811
  * return () # <<<<<<<<<<<<<<
@@ -19819,7 +19819,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19819
19819
  goto __pyx_L0;
19820
19820
  }
19821
19821
 
19822
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19822
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19823
19823
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19824
19824
  *
19825
19825
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19834,7 +19834,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19834
19834
  return __pyx_r;
19835
19835
  }
19836
19836
 
19837
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19837
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19838
19838
  * int _import_umath() except -1
19839
19839
  *
19840
19840
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19848,7 +19848,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19848
19848
  const char *__pyx_filename = NULL;
19849
19849
  int __pyx_clineno = 0;
19850
19850
 
19851
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
19851
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
19852
19852
  *
19853
19853
  * cdef inline void set_array_base(ndarray arr, object base):
19854
19854
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -19857,7 +19857,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19857
19857
  */
19858
19858
  Py_INCREF(__pyx_v_base);
19859
19859
 
19860
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19860
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19861
19861
  * cdef inline void set_array_base(ndarray arr, object base):
19862
19862
  * Py_INCREF(base) # important to do this before stealing the reference below!
19863
19863
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -19866,7 +19866,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19866
19866
  */
19867
19867
  __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)
19868
19868
 
19869
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19869
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19870
19870
  * int _import_umath() except -1
19871
19871
  *
19872
19872
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19881,7 +19881,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19881
19881
  __pyx_L0:;
19882
19882
  }
19883
19883
 
19884
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19884
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19885
19885
  * PyArray_SetBaseObject(arr, base)
19886
19886
  *
19887
19887
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19896,7 +19896,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19896
19896
  int __pyx_t_1;
19897
19897
  __Pyx_RefNannySetupContext("get_array_base", 1);
19898
19898
 
19899
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
19899
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
19900
19900
  *
19901
19901
  * cdef inline object get_array_base(ndarray arr):
19902
19902
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -19905,7 +19905,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19905
19905
  */
19906
19906
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
19907
19907
 
19908
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19908
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19909
19909
  * cdef inline object get_array_base(ndarray arr):
19910
19910
  * base = PyArray_BASE(arr)
19911
19911
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19915,7 +19915,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19915
19915
  __pyx_t_1 = (__pyx_v_base == NULL);
19916
19916
  if (__pyx_t_1) {
19917
19917
 
19918
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19918
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19919
19919
  * base = PyArray_BASE(arr)
19920
19920
  * if base is NULL:
19921
19921
  * return None # <<<<<<<<<<<<<<
@@ -19926,7 +19926,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19926
19926
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
19927
19927
  goto __pyx_L0;
19928
19928
 
19929
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19929
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19930
19930
  * cdef inline object get_array_base(ndarray arr):
19931
19931
  * base = PyArray_BASE(arr)
19932
19932
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19935,7 +19935,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19935
19935
  */
19936
19936
  }
19937
19937
 
19938
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19938
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19939
19939
  * if base is NULL:
19940
19940
  * return None
19941
19941
  * return <object>base # <<<<<<<<<<<<<<
@@ -19947,7 +19947,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19947
19947
  __pyx_r = ((PyObject *)__pyx_v_base);
19948
19948
  goto __pyx_L0;
19949
19949
 
19950
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19950
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19951
19951
  * PyArray_SetBaseObject(arr, base)
19952
19952
  *
19953
19953
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19962,7 +19962,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19962
19962
  return __pyx_r;
19963
19963
  }
19964
19964
 
19965
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19965
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19966
19966
  * # Versions of the import_* functions which are more suitable for
19967
19967
  * # Cython code.
19968
19968
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19986,7 +19986,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19986
19986
  int __pyx_clineno = 0;
19987
19987
  __Pyx_RefNannySetupContext("import_array", 1);
19988
19988
 
19989
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19989
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19990
19990
  * # Cython code.
19991
19991
  * cdef inline int import_array() except -1:
19992
19992
  * try: # <<<<<<<<<<<<<<
@@ -20002,7 +20002,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20002
20002
  __Pyx_XGOTREF(__pyx_t_3);
20003
20003
  /*try:*/ {
20004
20004
 
20005
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
20005
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
20006
20006
  * cdef inline int import_array() except -1:
20007
20007
  * try:
20008
20008
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -20011,7 +20011,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20011
20011
  */
20012
20012
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
20013
20013
 
20014
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
20014
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
20015
20015
  * # Cython code.
20016
20016
  * cdef inline int import_array() except -1:
20017
20017
  * try: # <<<<<<<<<<<<<<
@@ -20025,7 +20025,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20025
20025
  goto __pyx_L8_try_end;
20026
20026
  __pyx_L3_error:;
20027
20027
 
20028
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
20028
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
20029
20029
  * try:
20030
20030
  * __pyx_import_array()
20031
20031
  * except Exception: # <<<<<<<<<<<<<<
@@ -20040,7 +20040,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20040
20040
  __Pyx_XGOTREF(__pyx_t_6);
20041
20041
  __Pyx_XGOTREF(__pyx_t_7);
20042
20042
 
20043
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
20043
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
20044
20044
  * __pyx_import_array()
20045
20045
  * except Exception:
20046
20046
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -20055,7 +20055,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20055
20055
  }
20056
20056
  goto __pyx_L5_except_error;
20057
20057
 
20058
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
20058
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
20059
20059
  * # Cython code.
20060
20060
  * cdef inline int import_array() except -1:
20061
20061
  * try: # <<<<<<<<<<<<<<
@@ -20071,7 +20071,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20071
20071
  __pyx_L8_try_end:;
20072
20072
  }
20073
20073
 
20074
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
20074
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
20075
20075
  * # Versions of the import_* functions which are more suitable for
20076
20076
  * # Cython code.
20077
20077
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -20094,7 +20094,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20094
20094
  return __pyx_r;
20095
20095
  }
20096
20096
 
20097
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
20097
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
20098
20098
  * raise ImportError("numpy.core.multiarray failed to import")
20099
20099
  *
20100
20100
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -20118,7 +20118,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20118
20118
  int __pyx_clineno = 0;
20119
20119
  __Pyx_RefNannySetupContext("import_umath", 1);
20120
20120
 
20121
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20121
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20122
20122
  *
20123
20123
  * cdef inline int import_umath() except -1:
20124
20124
  * try: # <<<<<<<<<<<<<<
@@ -20134,7 +20134,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20134
20134
  __Pyx_XGOTREF(__pyx_t_3);
20135
20135
  /*try:*/ {
20136
20136
 
20137
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
20137
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
20138
20138
  * cdef inline int import_umath() except -1:
20139
20139
  * try:
20140
20140
  * _import_umath() # <<<<<<<<<<<<<<
@@ -20143,7 +20143,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20143
20143
  */
20144
20144
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
20145
20145
 
20146
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20146
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20147
20147
  *
20148
20148
  * cdef inline int import_umath() except -1:
20149
20149
  * try: # <<<<<<<<<<<<<<
@@ -20157,7 +20157,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20157
20157
  goto __pyx_L8_try_end;
20158
20158
  __pyx_L3_error:;
20159
20159
 
20160
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
20160
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
20161
20161
  * try:
20162
20162
  * _import_umath()
20163
20163
  * except Exception: # <<<<<<<<<<<<<<
@@ -20172,7 +20172,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20172
20172
  __Pyx_XGOTREF(__pyx_t_6);
20173
20173
  __Pyx_XGOTREF(__pyx_t_7);
20174
20174
 
20175
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
20175
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
20176
20176
  * _import_umath()
20177
20177
  * except Exception:
20178
20178
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -20187,7 +20187,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20187
20187
  }
20188
20188
  goto __pyx_L5_except_error;
20189
20189
 
20190
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20190
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20191
20191
  *
20192
20192
  * cdef inline int import_umath() except -1:
20193
20193
  * try: # <<<<<<<<<<<<<<
@@ -20203,7 +20203,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20203
20203
  __pyx_L8_try_end:;
20204
20204
  }
20205
20205
 
20206
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
20206
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
20207
20207
  * raise ImportError("numpy.core.multiarray failed to import")
20208
20208
  *
20209
20209
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -20226,7 +20226,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20226
20226
  return __pyx_r;
20227
20227
  }
20228
20228
 
20229
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
20229
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
20230
20230
  * raise ImportError("numpy.core.umath failed to import")
20231
20231
  *
20232
20232
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -20250,7 +20250,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20250
20250
  int __pyx_clineno = 0;
20251
20251
  __Pyx_RefNannySetupContext("import_ufunc", 1);
20252
20252
 
20253
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20253
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20254
20254
  *
20255
20255
  * cdef inline int import_ufunc() except -1:
20256
20256
  * try: # <<<<<<<<<<<<<<
@@ -20266,7 +20266,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20266
20266
  __Pyx_XGOTREF(__pyx_t_3);
20267
20267
  /*try:*/ {
20268
20268
 
20269
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
20269
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
20270
20270
  * cdef inline int import_ufunc() except -1:
20271
20271
  * try:
20272
20272
  * _import_umath() # <<<<<<<<<<<<<<
@@ -20275,7 +20275,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20275
20275
  */
20276
20276
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
20277
20277
 
20278
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20278
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20279
20279
  *
20280
20280
  * cdef inline int import_ufunc() except -1:
20281
20281
  * try: # <<<<<<<<<<<<<<
@@ -20289,7 +20289,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20289
20289
  goto __pyx_L8_try_end;
20290
20290
  __pyx_L3_error:;
20291
20291
 
20292
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
20292
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
20293
20293
  * try:
20294
20294
  * _import_umath()
20295
20295
  * except Exception: # <<<<<<<<<<<<<<
@@ -20304,7 +20304,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20304
20304
  __Pyx_XGOTREF(__pyx_t_6);
20305
20305
  __Pyx_XGOTREF(__pyx_t_7);
20306
20306
 
20307
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
20307
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
20308
20308
  * _import_umath()
20309
20309
  * except Exception:
20310
20310
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -20319,7 +20319,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20319
20319
  }
20320
20320
  goto __pyx_L5_except_error;
20321
20321
 
20322
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20322
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20323
20323
  *
20324
20324
  * cdef inline int import_ufunc() except -1:
20325
20325
  * try: # <<<<<<<<<<<<<<
@@ -20335,7 +20335,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20335
20335
  __pyx_L8_try_end:;
20336
20336
  }
20337
20337
 
20338
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
20338
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
20339
20339
  * raise ImportError("numpy.core.umath failed to import")
20340
20340
  *
20341
20341
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -20358,7 +20358,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20358
20358
  return __pyx_r;
20359
20359
  }
20360
20360
 
20361
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
20361
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
20362
20362
  *
20363
20363
  *
20364
20364
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -20369,7 +20369,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20369
20369
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
20370
20370
  int __pyx_r;
20371
20371
 
20372
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
20372
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
20373
20373
  * bool
20374
20374
  * """
20375
20375
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -20379,7 +20379,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20379
20379
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
20380
20380
  goto __pyx_L0;
20381
20381
 
20382
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
20382
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
20383
20383
  *
20384
20384
  *
20385
20385
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -20392,7 +20392,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20392
20392
  return __pyx_r;
20393
20393
  }
20394
20394
 
20395
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
20395
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
20396
20396
  *
20397
20397
  *
20398
20398
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -20403,7 +20403,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20403
20403
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
20404
20404
  int __pyx_r;
20405
20405
 
20406
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
20406
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
20407
20407
  * bool
20408
20408
  * """
20409
20409
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -20413,7 +20413,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20413
20413
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
20414
20414
  goto __pyx_L0;
20415
20415
 
20416
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
20416
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
20417
20417
  *
20418
20418
  *
20419
20419
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -20426,7 +20426,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20426
20426
  return __pyx_r;
20427
20427
  }
20428
20428
 
20429
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
20429
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
20430
20430
  *
20431
20431
  *
20432
20432
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20437,7 +20437,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20437
20437
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
20438
20438
  npy_datetime __pyx_r;
20439
20439
 
20440
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
20440
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
20441
20441
  * also needed. That can be found using `get_datetime64_unit`.
20442
20442
  * """
20443
20443
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -20447,7 +20447,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20447
20447
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
20448
20448
  goto __pyx_L0;
20449
20449
 
20450
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
20450
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
20451
20451
  *
20452
20452
  *
20453
20453
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20460,7 +20460,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20460
20460
  return __pyx_r;
20461
20461
  }
20462
20462
 
20463
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
20463
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
20464
20464
  *
20465
20465
  *
20466
20466
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20471,7 +20471,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20471
20471
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
20472
20472
  npy_timedelta __pyx_r;
20473
20473
 
20474
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
20474
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
20475
20475
  * returns the int64 value underlying scalar numpy timedelta64 object
20476
20476
  * """
20477
20477
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -20481,7 +20481,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20481
20481
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
20482
20482
  goto __pyx_L0;
20483
20483
 
20484
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
20484
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
20485
20485
  *
20486
20486
  *
20487
20487
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20494,7 +20494,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20494
20494
  return __pyx_r;
20495
20495
  }
20496
20496
 
20497
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20497
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20498
20498
  *
20499
20499
  *
20500
20500
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20505,7 +20505,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20505
20505
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
20506
20506
  NPY_DATETIMEUNIT __pyx_r;
20507
20507
 
20508
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
20508
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
20509
20509
  * returns the unit part of the dtype for a numpy datetime64 object.
20510
20510
  * """
20511
20511
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -20513,7 +20513,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
20513
20513
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
20514
20514
  goto __pyx_L0;
20515
20515
 
20516
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20516
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20517
20517
  *
20518
20518
  *
20519
20519
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -92303,7 +92303,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
92303
92303
  __Pyx_GOTREF(__pyx_tuple__8);
92304
92304
  __Pyx_GIVEREF(__pyx_tuple__8);
92305
92305
 
92306
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
92306
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
92307
92307
  * __pyx_import_array()
92308
92308
  * except Exception:
92309
92309
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -92314,7 +92314,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
92314
92314
  __Pyx_GOTREF(__pyx_tuple__9);
92315
92315
  __Pyx_GIVEREF(__pyx_tuple__9);
92316
92316
 
92317
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
92317
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
92318
92318
  * _import_umath()
92319
92319
  * except Exception:
92320
92320
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<