biotite 0.40.0__cp310-cp310-win_amd64.whl → 0.41.0__cp310-cp310-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 +119 -119
  6. biotite/sequence/align/banded.cp310-win_amd64.pyd +0 -0
  7. biotite/sequence/align/cigar.py +60 -15
  8. biotite/sequence/align/kmeralphabet.c +119 -119
  9. biotite/sequence/align/kmeralphabet.cp310-win_amd64.pyd +0 -0
  10. biotite/sequence/align/kmersimilarity.c +119 -119
  11. biotite/sequence/align/kmersimilarity.cp310-win_amd64.pyd +0 -0
  12. biotite/sequence/align/kmertable.cp310-win_amd64.pyd +0 -0
  13. biotite/sequence/align/kmertable.cpp +119 -119
  14. biotite/sequence/align/localgapped.c +119 -119
  15. biotite/sequence/align/localgapped.cp310-win_amd64.pyd +0 -0
  16. biotite/sequence/align/localungapped.c +119 -119
  17. biotite/sequence/align/localungapped.cp310-win_amd64.pyd +0 -0
  18. biotite/sequence/align/multiple.c +119 -119
  19. biotite/sequence/align/multiple.cp310-win_amd64.pyd +0 -0
  20. biotite/sequence/align/pairwise.c +119 -119
  21. biotite/sequence/align/pairwise.cp310-win_amd64.pyd +0 -0
  22. biotite/sequence/align/permutation.c +119 -119
  23. biotite/sequence/align/permutation.cp310-win_amd64.pyd +0 -0
  24. biotite/sequence/align/selector.c +119 -119
  25. biotite/sequence/align/selector.cp310-win_amd64.pyd +0 -0
  26. biotite/sequence/align/tracetable.c +119 -119
  27. biotite/sequence/align/tracetable.cp310-win_amd64.pyd +0 -0
  28. biotite/sequence/annotation.py +2 -2
  29. biotite/sequence/codec.c +119 -119
  30. biotite/sequence/codec.cp310-win_amd64.pyd +0 -0
  31. biotite/sequence/io/fasta/convert.py +27 -24
  32. biotite/sequence/phylo/nj.c +119 -119
  33. biotite/sequence/phylo/nj.cp310-win_amd64.pyd +0 -0
  34. biotite/sequence/phylo/tree.c +119 -119
  35. biotite/sequence/phylo/tree.cp310-win_amd64.pyd +0 -0
  36. biotite/sequence/phylo/upgma.c +119 -119
  37. biotite/sequence/phylo/upgma.cp310-win_amd64.pyd +0 -0
  38. biotite/structure/__init__.py +2 -0
  39. biotite/structure/bonds.c +1124 -915
  40. biotite/structure/bonds.cp310-win_amd64.pyd +0 -0
  41. biotite/structure/celllist.c +119 -119
  42. biotite/structure/celllist.cp310-win_amd64.pyd +0 -0
  43. biotite/structure/charges.c +119 -119
  44. biotite/structure/charges.cp310-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 +119 -119
  58. biotite/structure/io/mmtf/convertarray.cp310-win_amd64.pyd +0 -0
  59. biotite/structure/io/mmtf/convertfile.c +119 -119
  60. biotite/structure/io/mmtf/convertfile.cp310-win_amd64.pyd +0 -0
  61. biotite/structure/io/mmtf/decode.c +119 -119
  62. biotite/structure/io/mmtf/decode.cp310-win_amd64.pyd +0 -0
  63. biotite/structure/io/mmtf/encode.c +119 -119
  64. biotite/structure/io/mmtf/encode.cp310-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.cp310-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 +119 -119
  79. biotite/structure/io/pdbx/encoding.cp310-win_amd64.pyd +0 -0
  80. biotite/structure/repair.py +253 -0
  81. biotite/structure/sasa.c +119 -119
  82. biotite/structure/sasa.cp310-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
biotite/sequence/codec.c CHANGED
@@ -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-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1666
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
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-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1675
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
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-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
1684
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
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-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":735
1693
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":735
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-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1702
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
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-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1711
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
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-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
1720
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
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-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":742
1729
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":742
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-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
1738
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
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-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":747
1747
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":747
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-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
1756
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
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-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1765
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1766
1766
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1767
1767
  * ctypedef npy_long int_t
1768
1768
  * ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
@@ -1771,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1771
1771
  */
1772
1772
  typedef npy_longlong __pyx_t_5numpy_long_t;
1773
1773
 
1774
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1774
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1775
1775
  * ctypedef npy_long int_t
1776
1776
  * ctypedef npy_longlong long_t
1777
1777
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1780,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
1780
1780
  */
1781
1781
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1782
1782
 
1783
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1783
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1784
1784
  * ctypedef npy_longlong longlong_t
1785
1785
  *
1786
1786
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1789,7 +1789,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1789
1789
  */
1790
1790
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1791
1791
 
1792
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1792
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1793
1793
  *
1794
1794
  * ctypedef npy_ulong uint_t
1795
1795
  * ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
@@ -1798,7 +1798,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1798
1798
  */
1799
1799
  typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1800
1800
 
1801
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":762
1801
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":762
1802
1802
  * ctypedef npy_ulong uint_t
1803
1803
  * ctypedef npy_ulonglong ulong_t
1804
1804
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1807,7 +1807,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1807
1807
  */
1808
1808
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1809
1809
 
1810
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1810
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1811
1811
  * ctypedef npy_ulonglong ulonglong_t
1812
1812
  *
1813
1813
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1816,7 +1816,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1816
1816
  */
1817
1817
  typedef npy_intp __pyx_t_5numpy_intp_t;
1818
1818
 
1819
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1819
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1820
1820
  *
1821
1821
  * ctypedef npy_intp intp_t
1822
1822
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1825,7 +1825,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1825
1825
  */
1826
1826
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1827
1827
 
1828
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1828
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1829
1829
  * ctypedef npy_uintp uintp_t
1830
1830
  *
1831
1831
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1834,7 +1834,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1834
1834
  */
1835
1835
  typedef npy_double __pyx_t_5numpy_float_t;
1836
1836
 
1837
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1837
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1838
1838
  *
1839
1839
  * ctypedef npy_double float_t
1840
1840
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1843,7 +1843,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1843
1843
  */
1844
1844
  typedef npy_double __pyx_t_5numpy_double_t;
1845
1845
 
1846
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1846
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1847
1847
  * ctypedef npy_double float_t
1848
1848
  * ctypedef npy_double double_t
1849
1849
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1929,7 +1929,7 @@ struct __pyx_MemviewEnum_obj;
1929
1929
  struct __pyx_memoryview_obj;
1930
1930
  struct __pyx_memoryviewslice_obj;
1931
1931
 
1932
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1932
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1933
1933
  * ctypedef npy_longdouble longdouble_t
1934
1934
  *
1935
1935
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1938,7 +1938,7 @@ struct __pyx_memoryviewslice_obj;
1938
1938
  */
1939
1939
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1940
1940
 
1941
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1941
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1942
1942
  *
1943
1943
  * ctypedef npy_cfloat cfloat_t
1944
1944
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1947,7 +1947,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1947
1947
  */
1948
1948
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1949
1949
 
1950
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
1950
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
1951
1951
  * ctypedef npy_cfloat cfloat_t
1952
1952
  * ctypedef npy_cdouble cdouble_t
1953
1953
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1956,7 +1956,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1956
1956
  */
1957
1957
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1958
1958
 
1959
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":775
1959
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":775
1960
1960
  * ctypedef npy_clongdouble clongdouble_t
1961
1961
  *
1962
1962
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -18544,7 +18544,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18544
18544
  return __pyx_r;
18545
18545
  }
18546
18546
 
18547
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
18547
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
18548
18548
  *
18549
18549
  * @property
18550
18550
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18555,7 +18555,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18555
18555
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
18556
18556
  PyObject *__pyx_r;
18557
18557
 
18558
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":249
18558
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":249
18559
18559
  * """Returns a borrowed reference to the object owning the data/memory.
18560
18560
  * """
18561
18561
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -18565,7 +18565,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18565
18565
  __pyx_r = PyArray_BASE(__pyx_v_self);
18566
18566
  goto __pyx_L0;
18567
18567
 
18568
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
18568
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
18569
18569
  *
18570
18570
  * @property
18571
18571
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18578,7 +18578,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18578
18578
  return __pyx_r;
18579
18579
  }
18580
18580
 
18581
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
18581
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
18582
18582
  *
18583
18583
  * @property
18584
18584
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18592,7 +18592,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18592
18592
  PyArray_Descr *__pyx_t_1;
18593
18593
  __Pyx_RefNannySetupContext("descr", 1);
18594
18594
 
18595
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":255
18595
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":255
18596
18596
  * """Returns an owned reference to the dtype of the array.
18597
18597
  * """
18598
18598
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -18605,7 +18605,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18605
18605
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
18606
18606
  goto __pyx_L0;
18607
18607
 
18608
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
18608
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
18609
18609
  *
18610
18610
  * @property
18611
18611
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18620,7 +18620,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18620
18620
  return __pyx_r;
18621
18621
  }
18622
18622
 
18623
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
18623
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
18624
18624
  *
18625
18625
  * @property
18626
18626
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18631,7 +18631,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18631
18631
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
18632
18632
  int __pyx_r;
18633
18633
 
18634
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":261
18634
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":261
18635
18635
  * """Returns the number of dimensions in the array.
18636
18636
  * """
18637
18637
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -18641,7 +18641,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18641
18641
  __pyx_r = PyArray_NDIM(__pyx_v_self);
18642
18642
  goto __pyx_L0;
18643
18643
 
18644
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
18644
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
18645
18645
  *
18646
18646
  * @property
18647
18647
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18654,7 +18654,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18654
18654
  return __pyx_r;
18655
18655
  }
18656
18656
 
18657
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
18657
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
18658
18658
  *
18659
18659
  * @property
18660
18660
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18665,7 +18665,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18665
18665
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
18666
18666
  npy_intp *__pyx_r;
18667
18667
 
18668
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":269
18668
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":269
18669
18669
  * Can return NULL for 0-dimensional arrays.
18670
18670
  * """
18671
18671
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -18675,7 +18675,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18675
18675
  __pyx_r = PyArray_DIMS(__pyx_v_self);
18676
18676
  goto __pyx_L0;
18677
18677
 
18678
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
18678
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
18679
18679
  *
18680
18680
  * @property
18681
18681
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18688,7 +18688,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18688
18688
  return __pyx_r;
18689
18689
  }
18690
18690
 
18691
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
18691
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
18692
18692
  *
18693
18693
  * @property
18694
18694
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18699,7 +18699,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18699
18699
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
18700
18700
  npy_intp *__pyx_r;
18701
18701
 
18702
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":276
18702
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":276
18703
18703
  * The number of elements matches the number of dimensions of the array (ndim).
18704
18704
  * """
18705
18705
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -18709,7 +18709,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18709
18709
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
18710
18710
  goto __pyx_L0;
18711
18711
 
18712
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
18712
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
18713
18713
  *
18714
18714
  * @property
18715
18715
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18722,7 +18722,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18722
18722
  return __pyx_r;
18723
18723
  }
18724
18724
 
18725
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
18725
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
18726
18726
  *
18727
18727
  * @property
18728
18728
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18733,7 +18733,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18733
18733
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
18734
18734
  npy_intp __pyx_r;
18735
18735
 
18736
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":282
18736
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":282
18737
18737
  * """Returns the total size (in number of elements) of the array.
18738
18738
  * """
18739
18739
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -18743,7 +18743,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18743
18743
  __pyx_r = PyArray_SIZE(__pyx_v_self);
18744
18744
  goto __pyx_L0;
18745
18745
 
18746
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
18746
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
18747
18747
  *
18748
18748
  * @property
18749
18749
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18756,7 +18756,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18756
18756
  return __pyx_r;
18757
18757
  }
18758
18758
 
18759
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
18759
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
18760
18760
  *
18761
18761
  * @property
18762
18762
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18767,7 +18767,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18767
18767
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
18768
18768
  char *__pyx_r;
18769
18769
 
18770
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":291
18770
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":291
18771
18771
  * of `PyArray_DATA()` instead, which returns a 'void*'.
18772
18772
  * """
18773
18773
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -18777,7 +18777,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18777
18777
  __pyx_r = PyArray_BYTES(__pyx_v_self);
18778
18778
  goto __pyx_L0;
18779
18779
 
18780
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
18780
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
18781
18781
  *
18782
18782
  * @property
18783
18783
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18790,7 +18790,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18790
18790
  return __pyx_r;
18791
18791
  }
18792
18792
 
18793
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18793
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18794
18794
  * ctypedef npy_cdouble complex_t
18795
18795
  *
18796
18796
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18807,7 +18807,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18807
18807
  int __pyx_clineno = 0;
18808
18808
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
18809
18809
 
18810
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":778
18810
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":778
18811
18811
  *
18812
18812
  * cdef inline object PyArray_MultiIterNew1(a):
18813
18813
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -18821,7 +18821,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18821
18821
  __pyx_t_1 = 0;
18822
18822
  goto __pyx_L0;
18823
18823
 
18824
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18824
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18825
18825
  * ctypedef npy_cdouble complex_t
18826
18826
  *
18827
18827
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18840,7 +18840,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18840
18840
  return __pyx_r;
18841
18841
  }
18842
18842
 
18843
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18843
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18844
18844
  * return PyArray_MultiIterNew(1, <void*>a)
18845
18845
  *
18846
18846
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18857,7 +18857,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18857
18857
  int __pyx_clineno = 0;
18858
18858
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
18859
18859
 
18860
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":781
18860
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":781
18861
18861
  *
18862
18862
  * cdef inline object PyArray_MultiIterNew2(a, b):
18863
18863
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -18871,7 +18871,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18871
18871
  __pyx_t_1 = 0;
18872
18872
  goto __pyx_L0;
18873
18873
 
18874
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18874
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18875
18875
  * return PyArray_MultiIterNew(1, <void*>a)
18876
18876
  *
18877
18877
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18890,7 +18890,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18890
18890
  return __pyx_r;
18891
18891
  }
18892
18892
 
18893
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18893
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18894
18894
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18895
18895
  *
18896
18896
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18907,7 +18907,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18907
18907
  int __pyx_clineno = 0;
18908
18908
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
18909
18909
 
18910
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":784
18910
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":784
18911
18911
  *
18912
18912
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
18913
18913
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -18921,7 +18921,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18921
18921
  __pyx_t_1 = 0;
18922
18922
  goto __pyx_L0;
18923
18923
 
18924
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18924
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18925
18925
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18926
18926
  *
18927
18927
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18940,7 +18940,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18940
18940
  return __pyx_r;
18941
18941
  }
18942
18942
 
18943
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18943
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18944
18944
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18945
18945
  *
18946
18946
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18957,7 +18957,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18957
18957
  int __pyx_clineno = 0;
18958
18958
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
18959
18959
 
18960
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":787
18960
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":787
18961
18961
  *
18962
18962
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
18963
18963
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -18971,7 +18971,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18971
18971
  __pyx_t_1 = 0;
18972
18972
  goto __pyx_L0;
18973
18973
 
18974
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18974
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18975
18975
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18976
18976
  *
18977
18977
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18990,7 +18990,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18990
18990
  return __pyx_r;
18991
18991
  }
18992
18992
 
18993
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18993
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18994
18994
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18995
18995
  *
18996
18996
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19007,7 +19007,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19007
19007
  int __pyx_clineno = 0;
19008
19008
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
19009
19009
 
19010
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
19010
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
19011
19011
  *
19012
19012
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
19013
19013
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -19021,7 +19021,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19021
19021
  __pyx_t_1 = 0;
19022
19022
  goto __pyx_L0;
19023
19023
 
19024
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19024
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19025
19025
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19026
19026
  *
19027
19027
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19040,7 +19040,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19040
19040
  return __pyx_r;
19041
19041
  }
19042
19042
 
19043
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19043
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19044
19044
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19045
19045
  *
19046
19046
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19054,7 +19054,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19054
19054
  int __pyx_t_1;
19055
19055
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
19056
19056
 
19057
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
19057
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
19058
19058
  *
19059
19059
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19060
19060
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19064,7 +19064,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19064
19064
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
19065
19065
  if (__pyx_t_1) {
19066
19066
 
19067
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":794
19067
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":794
19068
19068
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19069
19069
  * if PyDataType_HASSUBARRAY(d):
19070
19070
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -19076,7 +19076,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19076
19076
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
19077
19077
  goto __pyx_L0;
19078
19078
 
19079
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
19079
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
19080
19080
  *
19081
19081
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19082
19082
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19085,7 +19085,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19085
19085
  */
19086
19086
  }
19087
19087
 
19088
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":796
19088
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":796
19089
19089
  * return <tuple>d.subarray.shape
19090
19090
  * else:
19091
19091
  * return () # <<<<<<<<<<<<<<
@@ -19099,7 +19099,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19099
19099
  goto __pyx_L0;
19100
19100
  }
19101
19101
 
19102
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19102
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19103
19103
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19104
19104
  *
19105
19105
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19114,7 +19114,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19114
19114
  return __pyx_r;
19115
19115
  }
19116
19116
 
19117
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
19117
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
19118
19118
  * int _import_umath() except -1
19119
19119
  *
19120
19120
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19124,7 +19124,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19124
19124
 
19125
19125
  static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
19126
19126
 
19127
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19127
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19128
19128
  *
19129
19129
  * cdef inline void set_array_base(ndarray arr, object base):
19130
19130
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -19133,7 +19133,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19133
19133
  */
19134
19134
  Py_INCREF(__pyx_v_base);
19135
19135
 
19136
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
19136
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
19137
19137
  * cdef inline void set_array_base(ndarray arr, object base):
19138
19138
  * Py_INCREF(base) # important to do this before stealing the reference below!
19139
19139
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -19142,7 +19142,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19142
19142
  */
19143
19143
  (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
19144
19144
 
19145
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
19145
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
19146
19146
  * int _import_umath() except -1
19147
19147
  *
19148
19148
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19153,7 +19153,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19153
19153
  /* function exit code */
19154
19154
  }
19155
19155
 
19156
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19156
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19157
19157
  * PyArray_SetBaseObject(arr, base)
19158
19158
  *
19159
19159
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19168,7 +19168,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19168
19168
  int __pyx_t_1;
19169
19169
  __Pyx_RefNannySetupContext("get_array_base", 1);
19170
19170
 
19171
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19171
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19172
19172
  *
19173
19173
  * cdef inline object get_array_base(ndarray arr):
19174
19174
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -19177,7 +19177,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19177
19177
  */
19178
19178
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
19179
19179
 
19180
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
19180
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
19181
19181
  * cdef inline object get_array_base(ndarray arr):
19182
19182
  * base = PyArray_BASE(arr)
19183
19183
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19187,7 +19187,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19187
19187
  __pyx_t_1 = (__pyx_v_base == NULL);
19188
19188
  if (__pyx_t_1) {
19189
19189
 
19190
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
19190
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
19191
19191
  * base = PyArray_BASE(arr)
19192
19192
  * if base is NULL:
19193
19193
  * return None # <<<<<<<<<<<<<<
@@ -19198,7 +19198,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19198
19198
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
19199
19199
  goto __pyx_L0;
19200
19200
 
19201
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
19201
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
19202
19202
  * cdef inline object get_array_base(ndarray arr):
19203
19203
  * base = PyArray_BASE(arr)
19204
19204
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19207,7 +19207,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19207
19207
  */
19208
19208
  }
19209
19209
 
19210
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":979
19210
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":979
19211
19211
  * if base is NULL:
19212
19212
  * return None
19213
19213
  * return <object>base # <<<<<<<<<<<<<<
@@ -19219,7 +19219,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19219
19219
  __pyx_r = ((PyObject *)__pyx_v_base);
19220
19220
  goto __pyx_L0;
19221
19221
 
19222
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19222
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19223
19223
  * PyArray_SetBaseObject(arr, base)
19224
19224
  *
19225
19225
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19234,7 +19234,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19234
19234
  return __pyx_r;
19235
19235
  }
19236
19236
 
19237
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19237
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19238
19238
  * # Versions of the import_* functions which are more suitable for
19239
19239
  * # Cython code.
19240
19240
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19258,7 +19258,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19258
19258
  int __pyx_clineno = 0;
19259
19259
  __Pyx_RefNannySetupContext("import_array", 1);
19260
19260
 
19261
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19261
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19262
19262
  * # Cython code.
19263
19263
  * cdef inline int import_array() except -1:
19264
19264
  * try: # <<<<<<<<<<<<<<
@@ -19274,7 +19274,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19274
19274
  __Pyx_XGOTREF(__pyx_t_3);
19275
19275
  /*try:*/ {
19276
19276
 
19277
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
19277
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
19278
19278
  * cdef inline int import_array() except -1:
19279
19279
  * try:
19280
19280
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -19283,7 +19283,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19283
19283
  */
19284
19284
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 985, __pyx_L3_error)
19285
19285
 
19286
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19286
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19287
19287
  * # Cython code.
19288
19288
  * cdef inline int import_array() except -1:
19289
19289
  * try: # <<<<<<<<<<<<<<
@@ -19297,7 +19297,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19297
19297
  goto __pyx_L8_try_end;
19298
19298
  __pyx_L3_error:;
19299
19299
 
19300
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19300
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19301
19301
  * try:
19302
19302
  * __pyx_import_array()
19303
19303
  * except Exception: # <<<<<<<<<<<<<<
@@ -19312,7 +19312,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19312
19312
  __Pyx_XGOTREF(__pyx_t_6);
19313
19313
  __Pyx_XGOTREF(__pyx_t_7);
19314
19314
 
19315
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19315
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19316
19316
  * __pyx_import_array()
19317
19317
  * except Exception:
19318
19318
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -19327,7 +19327,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19327
19327
  }
19328
19328
  goto __pyx_L5_except_error;
19329
19329
 
19330
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19330
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19331
19331
  * # Cython code.
19332
19332
  * cdef inline int import_array() except -1:
19333
19333
  * try: # <<<<<<<<<<<<<<
@@ -19343,7 +19343,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19343
19343
  __pyx_L8_try_end:;
19344
19344
  }
19345
19345
 
19346
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19346
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19347
19347
  * # Versions of the import_* functions which are more suitable for
19348
19348
  * # Cython code.
19349
19349
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19366,7 +19366,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19366
19366
  return __pyx_r;
19367
19367
  }
19368
19368
 
19369
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19369
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19370
19370
  * raise ImportError("numpy.core.multiarray failed to import")
19371
19371
  *
19372
19372
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19390,7 +19390,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19390
19390
  int __pyx_clineno = 0;
19391
19391
  __Pyx_RefNannySetupContext("import_umath", 1);
19392
19392
 
19393
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19393
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19394
19394
  *
19395
19395
  * cdef inline int import_umath() except -1:
19396
19396
  * try: # <<<<<<<<<<<<<<
@@ -19406,7 +19406,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19406
19406
  __Pyx_XGOTREF(__pyx_t_3);
19407
19407
  /*try:*/ {
19408
19408
 
19409
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
19409
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
19410
19410
  * cdef inline int import_umath() except -1:
19411
19411
  * try:
19412
19412
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19415,7 +19415,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19415
19415
  */
19416
19416
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 991, __pyx_L3_error)
19417
19417
 
19418
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19418
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19419
19419
  *
19420
19420
  * cdef inline int import_umath() except -1:
19421
19421
  * try: # <<<<<<<<<<<<<<
@@ -19429,7 +19429,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19429
19429
  goto __pyx_L8_try_end;
19430
19430
  __pyx_L3_error:;
19431
19431
 
19432
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19432
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19433
19433
  * try:
19434
19434
  * _import_umath()
19435
19435
  * except Exception: # <<<<<<<<<<<<<<
@@ -19444,7 +19444,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19444
19444
  __Pyx_XGOTREF(__pyx_t_6);
19445
19445
  __Pyx_XGOTREF(__pyx_t_7);
19446
19446
 
19447
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19447
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19448
19448
  * _import_umath()
19449
19449
  * except Exception:
19450
19450
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19459,7 +19459,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19459
19459
  }
19460
19460
  goto __pyx_L5_except_error;
19461
19461
 
19462
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19462
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19463
19463
  *
19464
19464
  * cdef inline int import_umath() except -1:
19465
19465
  * try: # <<<<<<<<<<<<<<
@@ -19475,7 +19475,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19475
19475
  __pyx_L8_try_end:;
19476
19476
  }
19477
19477
 
19478
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19478
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19479
19479
  * raise ImportError("numpy.core.multiarray failed to import")
19480
19480
  *
19481
19481
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19498,7 +19498,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19498
19498
  return __pyx_r;
19499
19499
  }
19500
19500
 
19501
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19501
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19502
19502
  * raise ImportError("numpy.core.umath failed to import")
19503
19503
  *
19504
19504
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19522,7 +19522,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19522
19522
  int __pyx_clineno = 0;
19523
19523
  __Pyx_RefNannySetupContext("import_ufunc", 1);
19524
19524
 
19525
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19525
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19526
19526
  *
19527
19527
  * cdef inline int import_ufunc() except -1:
19528
19528
  * try: # <<<<<<<<<<<<<<
@@ -19538,7 +19538,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19538
19538
  __Pyx_XGOTREF(__pyx_t_3);
19539
19539
  /*try:*/ {
19540
19540
 
19541
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
19541
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
19542
19542
  * cdef inline int import_ufunc() except -1:
19543
19543
  * try:
19544
19544
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19547,7 +19547,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19547
19547
  */
19548
19548
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 997, __pyx_L3_error)
19549
19549
 
19550
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19550
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19551
19551
  *
19552
19552
  * cdef inline int import_ufunc() except -1:
19553
19553
  * try: # <<<<<<<<<<<<<<
@@ -19561,7 +19561,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19561
19561
  goto __pyx_L8_try_end;
19562
19562
  __pyx_L3_error:;
19563
19563
 
19564
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
19564
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
19565
19565
  * try:
19566
19566
  * _import_umath()
19567
19567
  * except Exception: # <<<<<<<<<<<<<<
@@ -19576,7 +19576,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19576
19576
  __Pyx_XGOTREF(__pyx_t_6);
19577
19577
  __Pyx_XGOTREF(__pyx_t_7);
19578
19578
 
19579
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19579
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19580
19580
  * _import_umath()
19581
19581
  * except Exception:
19582
19582
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19591,7 +19591,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19591
19591
  }
19592
19592
  goto __pyx_L5_except_error;
19593
19593
 
19594
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19594
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19595
19595
  *
19596
19596
  * cdef inline int import_ufunc() except -1:
19597
19597
  * try: # <<<<<<<<<<<<<<
@@ -19607,7 +19607,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19607
19607
  __pyx_L8_try_end:;
19608
19608
  }
19609
19609
 
19610
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19610
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19611
19611
  * raise ImportError("numpy.core.umath failed to import")
19612
19612
  *
19613
19613
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19630,7 +19630,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19630
19630
  return __pyx_r;
19631
19631
  }
19632
19632
 
19633
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
19633
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
19634
19634
  *
19635
19635
  *
19636
19636
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19641,7 +19641,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19641
19641
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
19642
19642
  int __pyx_r;
19643
19643
 
19644
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19644
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19645
19645
  * bool
19646
19646
  * """
19647
19647
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -19651,7 +19651,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19651
19651
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
19652
19652
  goto __pyx_L0;
19653
19653
 
19654
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
19654
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
19655
19655
  *
19656
19656
  *
19657
19657
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19664,7 +19664,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19664
19664
  return __pyx_r;
19665
19665
  }
19666
19666
 
19667
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
19667
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
19668
19668
  *
19669
19669
  *
19670
19670
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19675,7 +19675,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19675
19675
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
19676
19676
  int __pyx_r;
19677
19677
 
19678
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19678
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19679
19679
  * bool
19680
19680
  * """
19681
19681
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -19685,7 +19685,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19685
19685
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
19686
19686
  goto __pyx_L0;
19687
19687
 
19688
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
19688
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
19689
19689
  *
19690
19690
  *
19691
19691
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19698,7 +19698,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19698
19698
  return __pyx_r;
19699
19699
  }
19700
19700
 
19701
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
19701
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
19702
19702
  *
19703
19703
  *
19704
19704
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19709,7 +19709,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19709
19709
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
19710
19710
  npy_datetime __pyx_r;
19711
19711
 
19712
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19712
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19713
19713
  * also needed. That can be found using `get_datetime64_unit`.
19714
19714
  * """
19715
19715
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19719,7 +19719,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19719
19719
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
19720
19720
  goto __pyx_L0;
19721
19721
 
19722
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
19722
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
19723
19723
  *
19724
19724
  *
19725
19725
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19732,7 +19732,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19732
19732
  return __pyx_r;
19733
19733
  }
19734
19734
 
19735
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
19735
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
19736
19736
  *
19737
19737
  *
19738
19738
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19743,7 +19743,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19743
19743
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
19744
19744
  npy_timedelta __pyx_r;
19745
19745
 
19746
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19746
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19747
19747
  * returns the int64 value underlying scalar numpy timedelta64 object
19748
19748
  * """
19749
19749
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19753,7 +19753,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19753
19753
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
19754
19754
  goto __pyx_L0;
19755
19755
 
19756
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
19756
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
19757
19757
  *
19758
19758
  *
19759
19759
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19766,7 +19766,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19766
19766
  return __pyx_r;
19767
19767
  }
19768
19768
 
19769
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
19769
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
19770
19770
  *
19771
19771
  *
19772
19772
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19777,7 +19777,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19777
19777
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
19778
19778
  NPY_DATETIMEUNIT __pyx_r;
19779
19779
 
19780
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1053
19780
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1053
19781
19781
  * returns the unit part of the dtype for a numpy datetime64 object.
19782
19782
  * """
19783
19783
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -19785,7 +19785,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
19785
19785
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
19786
19786
  goto __pyx_L0;
19787
19787
 
19788
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
19788
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
19789
19789
  *
19790
19790
  *
19791
19791
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -28028,7 +28028,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
28028
28028
  __Pyx_GOTREF(__pyx_tuple__8);
28029
28029
  __Pyx_GIVEREF(__pyx_tuple__8);
28030
28030
 
28031
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
28031
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
28032
28032
  * __pyx_import_array()
28033
28033
  * except Exception:
28034
28034
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -28039,7 +28039,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
28039
28039
  __Pyx_GOTREF(__pyx_tuple__9);
28040
28040
  __Pyx_GIVEREF(__pyx_tuple__9);
28041
28041
 
28042
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
28042
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
28043
28043
  * _import_umath()
28044
28044
  * except Exception:
28045
28045
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<