biotite 0.40.0__cp311-cp311-win_amd64.whl → 0.41.0__cp311-cp311-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.cp311-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.cp311-win_amd64.pyd +0 -0
  10. biotite/sequence/align/kmersimilarity.c +119 -119
  11. biotite/sequence/align/kmersimilarity.cp311-win_amd64.pyd +0 -0
  12. biotite/sequence/align/kmertable.cp311-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.cp311-win_amd64.pyd +0 -0
  16. biotite/sequence/align/localungapped.c +119 -119
  17. biotite/sequence/align/localungapped.cp311-win_amd64.pyd +0 -0
  18. biotite/sequence/align/multiple.c +119 -119
  19. biotite/sequence/align/multiple.cp311-win_amd64.pyd +0 -0
  20. biotite/sequence/align/pairwise.c +119 -119
  21. biotite/sequence/align/pairwise.cp311-win_amd64.pyd +0 -0
  22. biotite/sequence/align/permutation.c +119 -119
  23. biotite/sequence/align/permutation.cp311-win_amd64.pyd +0 -0
  24. biotite/sequence/align/selector.c +119 -119
  25. biotite/sequence/align/selector.cp311-win_amd64.pyd +0 -0
  26. biotite/sequence/align/tracetable.c +119 -119
  27. biotite/sequence/align/tracetable.cp311-win_amd64.pyd +0 -0
  28. biotite/sequence/annotation.py +2 -2
  29. biotite/sequence/codec.c +119 -119
  30. biotite/sequence/codec.cp311-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.cp311-win_amd64.pyd +0 -0
  34. biotite/sequence/phylo/tree.c +119 -119
  35. biotite/sequence/phylo/tree.cp311-win_amd64.pyd +0 -0
  36. biotite/sequence/phylo/upgma.c +119 -119
  37. biotite/sequence/phylo/upgma.cp311-win_amd64.pyd +0 -0
  38. biotite/structure/__init__.py +2 -0
  39. biotite/structure/bonds.c +1124 -915
  40. biotite/structure/bonds.cp311-win_amd64.pyd +0 -0
  41. biotite/structure/celllist.c +119 -119
  42. biotite/structure/celllist.cp311-win_amd64.pyd +0 -0
  43. biotite/structure/charges.c +119 -119
  44. biotite/structure/charges.cp311-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.cp311-win_amd64.pyd +0 -0
  59. biotite/structure/io/mmtf/convertfile.c +119 -119
  60. biotite/structure/io/mmtf/convertfile.cp311-win_amd64.pyd +0 -0
  61. biotite/structure/io/mmtf/decode.c +119 -119
  62. biotite/structure/io/mmtf/decode.cp311-win_amd64.pyd +0 -0
  63. biotite/structure/io/mmtf/encode.c +119 -119
  64. biotite/structure/io/mmtf/encode.cp311-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.cp311-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.cp311-win_amd64.pyd +0 -0
  80. biotite/structure/repair.py +253 -0
  81. biotite/structure/sasa.c +119 -119
  82. biotite/structure/sasa.cp311-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
@@ -1694,7 +1694,7 @@ typedef struct {
1694
1694
 
1695
1695
  /* #### Code section: numeric_typedefs ### */
1696
1696
 
1697
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1697
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1698
1698
  * # in Cython to enable them only on the right systems.
1699
1699
  *
1700
1700
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1703,7 +1703,7 @@ typedef struct {
1703
1703
  */
1704
1704
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1705
1705
 
1706
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1706
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1707
1707
  *
1708
1708
  * ctypedef npy_int8 int8_t
1709
1709
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1712,7 +1712,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1712
1712
  */
1713
1713
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1714
1714
 
1715
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1715
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1716
1716
  * ctypedef npy_int8 int8_t
1717
1717
  * ctypedef npy_int16 int16_t
1718
1718
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1721,7 +1721,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1721
1721
  */
1722
1722
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1723
1723
 
1724
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
1724
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
1725
1725
  * ctypedef npy_int16 int16_t
1726
1726
  * ctypedef npy_int32 int32_t
1727
1727
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1730,7 +1730,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1730
1730
  */
1731
1731
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1732
1732
 
1733
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1733
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1734
1734
  * #ctypedef npy_int128 int128_t
1735
1735
  *
1736
1736
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1739,7 +1739,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1739
1739
  */
1740
1740
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1741
1741
 
1742
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1742
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1743
1743
  *
1744
1744
  * ctypedef npy_uint8 uint8_t
1745
1745
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1748,7 +1748,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1748
1748
  */
1749
1749
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1750
1750
 
1751
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1751
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1752
1752
  * ctypedef npy_uint8 uint8_t
1753
1753
  * ctypedef npy_uint16 uint16_t
1754
1754
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1757,7 +1757,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1757
1757
  */
1758
1758
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1759
1759
 
1760
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
1760
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
1761
1761
  * ctypedef npy_uint16 uint16_t
1762
1762
  * ctypedef npy_uint32 uint32_t
1763
1763
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1766,7 +1766,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1766
1766
  */
1767
1767
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1768
1768
 
1769
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1769
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1770
1770
  * #ctypedef npy_uint128 uint128_t
1771
1771
  *
1772
1772
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1775,7 +1775,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1775
1775
  */
1776
1776
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1777
1777
 
1778
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
1778
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
1779
1779
  *
1780
1780
  * ctypedef npy_float32 float32_t
1781
1781
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1784,7 +1784,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1784
1784
  */
1785
1785
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1786
1786
 
1787
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1787
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1788
1788
  * # The int types are mapped a bit surprising --
1789
1789
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1790
1790
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1793,7 +1793,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1793
1793
  */
1794
1794
  typedef npy_long __pyx_t_5numpy_int_t;
1795
1795
 
1796
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
1796
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
1797
1797
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1798
1798
  * ctypedef npy_long int_t
1799
1799
  * ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
@@ -1802,7 +1802,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1802
1802
  */
1803
1803
  typedef npy_longlong __pyx_t_5numpy_long_t;
1804
1804
 
1805
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1805
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1806
1806
  * ctypedef npy_long int_t
1807
1807
  * ctypedef npy_longlong long_t
1808
1808
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1811,7 +1811,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
1811
1811
  */
1812
1812
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1813
1813
 
1814
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":759
1814
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":759
1815
1815
  * ctypedef npy_longlong longlong_t
1816
1816
  *
1817
1817
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1820,7 +1820,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1820
1820
  */
1821
1821
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1822
1822
 
1823
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1823
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1824
1824
  *
1825
1825
  * ctypedef npy_ulong uint_t
1826
1826
  * ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
@@ -1829,7 +1829,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1829
1829
  */
1830
1830
  typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1831
1831
 
1832
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1832
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1833
1833
  * ctypedef npy_ulong uint_t
1834
1834
  * ctypedef npy_ulonglong ulong_t
1835
1835
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1838,7 +1838,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1838
1838
  */
1839
1839
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1840
1840
 
1841
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1841
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1842
1842
  * ctypedef npy_ulonglong ulonglong_t
1843
1843
  *
1844
1844
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1847,7 +1847,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1847
1847
  */
1848
1848
  typedef npy_intp __pyx_t_5numpy_intp_t;
1849
1849
 
1850
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1850
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1851
1851
  *
1852
1852
  * ctypedef npy_intp intp_t
1853
1853
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1856,7 +1856,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1856
1856
  */
1857
1857
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1858
1858
 
1859
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":766
1859
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":766
1860
1860
  * ctypedef npy_uintp uintp_t
1861
1861
  *
1862
1862
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1865,7 +1865,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1865
1865
  */
1866
1866
  typedef npy_double __pyx_t_5numpy_float_t;
1867
1867
 
1868
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1868
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1869
1869
  *
1870
1870
  * ctypedef npy_double float_t
1871
1871
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1874,7 +1874,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1874
1874
  */
1875
1875
  typedef npy_double __pyx_t_5numpy_double_t;
1876
1876
 
1877
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1877
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1878
1878
  * ctypedef npy_double float_t
1879
1879
  * ctypedef npy_double double_t
1880
1880
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1966,7 +1966,7 @@ struct __pyx_MemviewEnum_obj;
1966
1966
  struct __pyx_memoryview_obj;
1967
1967
  struct __pyx_memoryviewslice_obj;
1968
1968
 
1969
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
1969
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
1970
1970
  * ctypedef npy_longdouble longdouble_t
1971
1971
  *
1972
1972
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1975,7 +1975,7 @@ struct __pyx_memoryviewslice_obj;
1975
1975
  */
1976
1976
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1977
1977
 
1978
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1978
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1979
1979
  *
1980
1980
  * ctypedef npy_cfloat cfloat_t
1981
1981
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1984,7 +1984,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1984
1984
  */
1985
1985
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1986
1986
 
1987
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1987
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1988
1988
  * ctypedef npy_cfloat cfloat_t
1989
1989
  * ctypedef npy_cdouble cdouble_t
1990
1990
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1993,7 +1993,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1993
1993
  */
1994
1994
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1995
1995
 
1996
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
1996
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
1997
1997
  * ctypedef npy_clongdouble clongdouble_t
1998
1998
  *
1999
1999
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -20418,7 +20418,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
20418
20418
  return __pyx_r;
20419
20419
  }
20420
20420
 
20421
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
20421
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
20422
20422
  *
20423
20423
  * @property
20424
20424
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -20429,7 +20429,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
20429
20429
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
20430
20430
  PyObject *__pyx_r;
20431
20431
 
20432
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
20432
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
20433
20433
  * """Returns a borrowed reference to the object owning the data/memory.
20434
20434
  * """
20435
20435
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -20439,7 +20439,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
20439
20439
  __pyx_r = PyArray_BASE(__pyx_v_self);
20440
20440
  goto __pyx_L0;
20441
20441
 
20442
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
20442
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
20443
20443
  *
20444
20444
  * @property
20445
20445
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -20452,7 +20452,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
20452
20452
  return __pyx_r;
20453
20453
  }
20454
20454
 
20455
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
20455
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
20456
20456
  *
20457
20457
  * @property
20458
20458
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -20466,7 +20466,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
20466
20466
  PyArray_Descr *__pyx_t_1;
20467
20467
  __Pyx_RefNannySetupContext("descr", 1);
20468
20468
 
20469
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
20469
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
20470
20470
  * """Returns an owned reference to the dtype of the array.
20471
20471
  * """
20472
20472
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -20479,7 +20479,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
20479
20479
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
20480
20480
  goto __pyx_L0;
20481
20481
 
20482
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
20482
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
20483
20483
  *
20484
20484
  * @property
20485
20485
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -20494,7 +20494,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
20494
20494
  return __pyx_r;
20495
20495
  }
20496
20496
 
20497
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
20497
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
20498
20498
  *
20499
20499
  * @property
20500
20500
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -20505,7 +20505,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
20505
20505
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
20506
20506
  int __pyx_r;
20507
20507
 
20508
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
20508
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
20509
20509
  * """Returns the number of dimensions in the array.
20510
20510
  * """
20511
20511
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -20515,7 +20515,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
20515
20515
  __pyx_r = PyArray_NDIM(__pyx_v_self);
20516
20516
  goto __pyx_L0;
20517
20517
 
20518
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
20518
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
20519
20519
  *
20520
20520
  * @property
20521
20521
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -20528,7 +20528,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
20528
20528
  return __pyx_r;
20529
20529
  }
20530
20530
 
20531
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
20531
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
20532
20532
  *
20533
20533
  * @property
20534
20534
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -20539,7 +20539,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
20539
20539
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
20540
20540
  npy_intp *__pyx_r;
20541
20541
 
20542
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
20542
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
20543
20543
  * Can return NULL for 0-dimensional arrays.
20544
20544
  * """
20545
20545
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -20549,7 +20549,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
20549
20549
  __pyx_r = PyArray_DIMS(__pyx_v_self);
20550
20550
  goto __pyx_L0;
20551
20551
 
20552
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
20552
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
20553
20553
  *
20554
20554
  * @property
20555
20555
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -20562,7 +20562,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
20562
20562
  return __pyx_r;
20563
20563
  }
20564
20564
 
20565
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
20565
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
20566
20566
  *
20567
20567
  * @property
20568
20568
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -20573,7 +20573,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
20573
20573
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
20574
20574
  npy_intp *__pyx_r;
20575
20575
 
20576
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
20576
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
20577
20577
  * The number of elements matches the number of dimensions of the array (ndim).
20578
20578
  * """
20579
20579
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -20583,7 +20583,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
20583
20583
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
20584
20584
  goto __pyx_L0;
20585
20585
 
20586
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
20586
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
20587
20587
  *
20588
20588
  * @property
20589
20589
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -20596,7 +20596,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
20596
20596
  return __pyx_r;
20597
20597
  }
20598
20598
 
20599
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
20599
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
20600
20600
  *
20601
20601
  * @property
20602
20602
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -20607,7 +20607,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
20607
20607
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
20608
20608
  npy_intp __pyx_r;
20609
20609
 
20610
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
20610
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
20611
20611
  * """Returns the total size (in number of elements) of the array.
20612
20612
  * """
20613
20613
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -20617,7 +20617,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
20617
20617
  __pyx_r = PyArray_SIZE(__pyx_v_self);
20618
20618
  goto __pyx_L0;
20619
20619
 
20620
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
20620
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
20621
20621
  *
20622
20622
  * @property
20623
20623
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -20630,7 +20630,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
20630
20630
  return __pyx_r;
20631
20631
  }
20632
20632
 
20633
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
20633
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
20634
20634
  *
20635
20635
  * @property
20636
20636
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -20641,7 +20641,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
20641
20641
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
20642
20642
  char *__pyx_r;
20643
20643
 
20644
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
20644
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
20645
20645
  * of `PyArray_DATA()` instead, which returns a 'void*'.
20646
20646
  * """
20647
20647
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -20651,7 +20651,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
20651
20651
  __pyx_r = PyArray_BYTES(__pyx_v_self);
20652
20652
  goto __pyx_L0;
20653
20653
 
20654
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
20654
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
20655
20655
  *
20656
20656
  * @property
20657
20657
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -20664,7 +20664,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
20664
20664
  return __pyx_r;
20665
20665
  }
20666
20666
 
20667
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
20667
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
20668
20668
  * ctypedef npy_cdouble complex_t
20669
20669
  *
20670
20670
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -20681,7 +20681,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
20681
20681
  int __pyx_clineno = 0;
20682
20682
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
20683
20683
 
20684
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
20684
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
20685
20685
  *
20686
20686
  * cdef inline object PyArray_MultiIterNew1(a):
20687
20687
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -20695,7 +20695,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
20695
20695
  __pyx_t_1 = 0;
20696
20696
  goto __pyx_L0;
20697
20697
 
20698
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
20698
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
20699
20699
  * ctypedef npy_cdouble complex_t
20700
20700
  *
20701
20701
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -20714,7 +20714,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
20714
20714
  return __pyx_r;
20715
20715
  }
20716
20716
 
20717
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
20717
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
20718
20718
  * return PyArray_MultiIterNew(1, <void*>a)
20719
20719
  *
20720
20720
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -20731,7 +20731,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
20731
20731
  int __pyx_clineno = 0;
20732
20732
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
20733
20733
 
20734
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
20734
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
20735
20735
  *
20736
20736
  * cdef inline object PyArray_MultiIterNew2(a, b):
20737
20737
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -20745,7 +20745,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
20745
20745
  __pyx_t_1 = 0;
20746
20746
  goto __pyx_L0;
20747
20747
 
20748
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
20748
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
20749
20749
  * return PyArray_MultiIterNew(1, <void*>a)
20750
20750
  *
20751
20751
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -20764,7 +20764,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
20764
20764
  return __pyx_r;
20765
20765
  }
20766
20766
 
20767
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
20767
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
20768
20768
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
20769
20769
  *
20770
20770
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -20781,7 +20781,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
20781
20781
  int __pyx_clineno = 0;
20782
20782
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
20783
20783
 
20784
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
20784
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
20785
20785
  *
20786
20786
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
20787
20787
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -20795,7 +20795,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
20795
20795
  __pyx_t_1 = 0;
20796
20796
  goto __pyx_L0;
20797
20797
 
20798
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
20798
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
20799
20799
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
20800
20800
  *
20801
20801
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -20814,7 +20814,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
20814
20814
  return __pyx_r;
20815
20815
  }
20816
20816
 
20817
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
20817
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
20818
20818
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
20819
20819
  *
20820
20820
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -20831,7 +20831,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
20831
20831
  int __pyx_clineno = 0;
20832
20832
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
20833
20833
 
20834
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
20834
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
20835
20835
  *
20836
20836
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
20837
20837
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -20845,7 +20845,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
20845
20845
  __pyx_t_1 = 0;
20846
20846
  goto __pyx_L0;
20847
20847
 
20848
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
20848
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
20849
20849
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
20850
20850
  *
20851
20851
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -20864,7 +20864,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
20864
20864
  return __pyx_r;
20865
20865
  }
20866
20866
 
20867
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
20867
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
20868
20868
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
20869
20869
  *
20870
20870
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -20881,7 +20881,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
20881
20881
  int __pyx_clineno = 0;
20882
20882
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
20883
20883
 
20884
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
20884
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
20885
20885
  *
20886
20886
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
20887
20887
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -20895,7 +20895,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
20895
20895
  __pyx_t_1 = 0;
20896
20896
  goto __pyx_L0;
20897
20897
 
20898
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
20898
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
20899
20899
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
20900
20900
  *
20901
20901
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -20914,7 +20914,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
20914
20914
  return __pyx_r;
20915
20915
  }
20916
20916
 
20917
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
20917
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
20918
20918
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
20919
20919
  *
20920
20920
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -20928,7 +20928,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20928
20928
  int __pyx_t_1;
20929
20929
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
20930
20930
 
20931
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
20931
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
20932
20932
  *
20933
20933
  * cdef inline tuple PyDataType_SHAPE(dtype d):
20934
20934
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -20938,7 +20938,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20938
20938
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
20939
20939
  if (__pyx_t_1) {
20940
20940
 
20941
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
20941
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
20942
20942
  * cdef inline tuple PyDataType_SHAPE(dtype d):
20943
20943
  * if PyDataType_HASSUBARRAY(d):
20944
20944
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -20950,7 +20950,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20950
20950
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
20951
20951
  goto __pyx_L0;
20952
20952
 
20953
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
20953
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
20954
20954
  *
20955
20955
  * cdef inline tuple PyDataType_SHAPE(dtype d):
20956
20956
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -20959,7 +20959,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20959
20959
  */
20960
20960
  }
20961
20961
 
20962
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
20962
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
20963
20963
  * return <tuple>d.subarray.shape
20964
20964
  * else:
20965
20965
  * return () # <<<<<<<<<<<<<<
@@ -20973,7 +20973,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20973
20973
  goto __pyx_L0;
20974
20974
  }
20975
20975
 
20976
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
20976
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
20977
20977
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
20978
20978
  *
20979
20979
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -20988,7 +20988,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20988
20988
  return __pyx_r;
20989
20989
  }
20990
20990
 
20991
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
20991
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
20992
20992
  * int _import_umath() except -1
20993
20993
  *
20994
20994
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -20998,7 +20998,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20998
20998
 
20999
20999
  static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
21000
21000
 
21001
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
21001
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
21002
21002
  *
21003
21003
  * cdef inline void set_array_base(ndarray arr, object base):
21004
21004
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -21007,7 +21007,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
21007
21007
  */
21008
21008
  Py_INCREF(__pyx_v_base);
21009
21009
 
21010
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
21010
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
21011
21011
  * cdef inline void set_array_base(ndarray arr, object base):
21012
21012
  * Py_INCREF(base) # important to do this before stealing the reference below!
21013
21013
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -21016,7 +21016,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
21016
21016
  */
21017
21017
  (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
21018
21018
 
21019
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
21019
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
21020
21020
  * int _import_umath() except -1
21021
21021
  *
21022
21022
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -21027,7 +21027,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
21027
21027
  /* function exit code */
21028
21028
  }
21029
21029
 
21030
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
21030
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
21031
21031
  * PyArray_SetBaseObject(arr, base)
21032
21032
  *
21033
21033
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -21042,7 +21042,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21042
21042
  int __pyx_t_1;
21043
21043
  __Pyx_RefNannySetupContext("get_array_base", 1);
21044
21044
 
21045
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
21045
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
21046
21046
  *
21047
21047
  * cdef inline object get_array_base(ndarray arr):
21048
21048
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -21051,7 +21051,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21051
21051
  */
21052
21052
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
21053
21053
 
21054
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
21054
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
21055
21055
  * cdef inline object get_array_base(ndarray arr):
21056
21056
  * base = PyArray_BASE(arr)
21057
21057
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -21061,7 +21061,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21061
21061
  __pyx_t_1 = (__pyx_v_base == NULL);
21062
21062
  if (__pyx_t_1) {
21063
21063
 
21064
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
21064
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
21065
21065
  * base = PyArray_BASE(arr)
21066
21066
  * if base is NULL:
21067
21067
  * return None # <<<<<<<<<<<<<<
@@ -21072,7 +21072,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21072
21072
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
21073
21073
  goto __pyx_L0;
21074
21074
 
21075
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
21075
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
21076
21076
  * cdef inline object get_array_base(ndarray arr):
21077
21077
  * base = PyArray_BASE(arr)
21078
21078
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -21081,7 +21081,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21081
21081
  */
21082
21082
  }
21083
21083
 
21084
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
21084
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
21085
21085
  * if base is NULL:
21086
21086
  * return None
21087
21087
  * return <object>base # <<<<<<<<<<<<<<
@@ -21093,7 +21093,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21093
21093
  __pyx_r = ((PyObject *)__pyx_v_base);
21094
21094
  goto __pyx_L0;
21095
21095
 
21096
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
21096
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
21097
21097
  * PyArray_SetBaseObject(arr, base)
21098
21098
  *
21099
21099
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -21108,7 +21108,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21108
21108
  return __pyx_r;
21109
21109
  }
21110
21110
 
21111
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
21111
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
21112
21112
  * # Versions of the import_* functions which are more suitable for
21113
21113
  * # Cython code.
21114
21114
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -21132,7 +21132,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21132
21132
  int __pyx_clineno = 0;
21133
21133
  __Pyx_RefNannySetupContext("import_array", 1);
21134
21134
 
21135
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
21135
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
21136
21136
  * # Cython code.
21137
21137
  * cdef inline int import_array() except -1:
21138
21138
  * try: # <<<<<<<<<<<<<<
@@ -21148,7 +21148,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21148
21148
  __Pyx_XGOTREF(__pyx_t_3);
21149
21149
  /*try:*/ {
21150
21150
 
21151
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
21151
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
21152
21152
  * cdef inline int import_array() except -1:
21153
21153
  * try:
21154
21154
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -21157,7 +21157,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21157
21157
  */
21158
21158
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 984, __pyx_L3_error)
21159
21159
 
21160
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
21160
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
21161
21161
  * # Cython code.
21162
21162
  * cdef inline int import_array() except -1:
21163
21163
  * try: # <<<<<<<<<<<<<<
@@ -21171,7 +21171,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21171
21171
  goto __pyx_L8_try_end;
21172
21172
  __pyx_L3_error:;
21173
21173
 
21174
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
21174
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
21175
21175
  * try:
21176
21176
  * __pyx_import_array()
21177
21177
  * except Exception: # <<<<<<<<<<<<<<
@@ -21186,7 +21186,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21186
21186
  __Pyx_XGOTREF(__pyx_t_6);
21187
21187
  __Pyx_XGOTREF(__pyx_t_7);
21188
21188
 
21189
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
21189
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
21190
21190
  * __pyx_import_array()
21191
21191
  * except Exception:
21192
21192
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -21201,7 +21201,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21201
21201
  }
21202
21202
  goto __pyx_L5_except_error;
21203
21203
 
21204
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
21204
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
21205
21205
  * # Cython code.
21206
21206
  * cdef inline int import_array() except -1:
21207
21207
  * try: # <<<<<<<<<<<<<<
@@ -21217,7 +21217,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21217
21217
  __pyx_L8_try_end:;
21218
21218
  }
21219
21219
 
21220
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
21220
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
21221
21221
  * # Versions of the import_* functions which are more suitable for
21222
21222
  * # Cython code.
21223
21223
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -21240,7 +21240,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21240
21240
  return __pyx_r;
21241
21241
  }
21242
21242
 
21243
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
21243
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
21244
21244
  * raise ImportError("numpy.core.multiarray failed to import")
21245
21245
  *
21246
21246
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -21264,7 +21264,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21264
21264
  int __pyx_clineno = 0;
21265
21265
  __Pyx_RefNannySetupContext("import_umath", 1);
21266
21266
 
21267
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
21267
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
21268
21268
  *
21269
21269
  * cdef inline int import_umath() except -1:
21270
21270
  * try: # <<<<<<<<<<<<<<
@@ -21280,7 +21280,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21280
21280
  __Pyx_XGOTREF(__pyx_t_3);
21281
21281
  /*try:*/ {
21282
21282
 
21283
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
21283
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
21284
21284
  * cdef inline int import_umath() except -1:
21285
21285
  * try:
21286
21286
  * _import_umath() # <<<<<<<<<<<<<<
@@ -21289,7 +21289,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21289
21289
  */
21290
21290
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 990, __pyx_L3_error)
21291
21291
 
21292
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
21292
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
21293
21293
  *
21294
21294
  * cdef inline int import_umath() except -1:
21295
21295
  * try: # <<<<<<<<<<<<<<
@@ -21303,7 +21303,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21303
21303
  goto __pyx_L8_try_end;
21304
21304
  __pyx_L3_error:;
21305
21305
 
21306
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
21306
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
21307
21307
  * try:
21308
21308
  * _import_umath()
21309
21309
  * except Exception: # <<<<<<<<<<<<<<
@@ -21318,7 +21318,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21318
21318
  __Pyx_XGOTREF(__pyx_t_6);
21319
21319
  __Pyx_XGOTREF(__pyx_t_7);
21320
21320
 
21321
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
21321
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
21322
21322
  * _import_umath()
21323
21323
  * except Exception:
21324
21324
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -21333,7 +21333,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21333
21333
  }
21334
21334
  goto __pyx_L5_except_error;
21335
21335
 
21336
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
21336
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
21337
21337
  *
21338
21338
  * cdef inline int import_umath() except -1:
21339
21339
  * try: # <<<<<<<<<<<<<<
@@ -21349,7 +21349,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21349
21349
  __pyx_L8_try_end:;
21350
21350
  }
21351
21351
 
21352
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
21352
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
21353
21353
  * raise ImportError("numpy.core.multiarray failed to import")
21354
21354
  *
21355
21355
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -21372,7 +21372,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21372
21372
  return __pyx_r;
21373
21373
  }
21374
21374
 
21375
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
21375
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
21376
21376
  * raise ImportError("numpy.core.umath failed to import")
21377
21377
  *
21378
21378
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -21396,7 +21396,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21396
21396
  int __pyx_clineno = 0;
21397
21397
  __Pyx_RefNannySetupContext("import_ufunc", 1);
21398
21398
 
21399
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
21399
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
21400
21400
  *
21401
21401
  * cdef inline int import_ufunc() except -1:
21402
21402
  * try: # <<<<<<<<<<<<<<
@@ -21412,7 +21412,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21412
21412
  __Pyx_XGOTREF(__pyx_t_3);
21413
21413
  /*try:*/ {
21414
21414
 
21415
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
21415
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
21416
21416
  * cdef inline int import_ufunc() except -1:
21417
21417
  * try:
21418
21418
  * _import_umath() # <<<<<<<<<<<<<<
@@ -21421,7 +21421,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21421
21421
  */
21422
21422
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 996, __pyx_L3_error)
21423
21423
 
21424
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
21424
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
21425
21425
  *
21426
21426
  * cdef inline int import_ufunc() except -1:
21427
21427
  * try: # <<<<<<<<<<<<<<
@@ -21435,7 +21435,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21435
21435
  goto __pyx_L8_try_end;
21436
21436
  __pyx_L3_error:;
21437
21437
 
21438
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
21438
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
21439
21439
  * try:
21440
21440
  * _import_umath()
21441
21441
  * except Exception: # <<<<<<<<<<<<<<
@@ -21450,7 +21450,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21450
21450
  __Pyx_XGOTREF(__pyx_t_6);
21451
21451
  __Pyx_XGOTREF(__pyx_t_7);
21452
21452
 
21453
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
21453
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
21454
21454
  * _import_umath()
21455
21455
  * except Exception:
21456
21456
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -21465,7 +21465,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21465
21465
  }
21466
21466
  goto __pyx_L5_except_error;
21467
21467
 
21468
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
21468
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
21469
21469
  *
21470
21470
  * cdef inline int import_ufunc() except -1:
21471
21471
  * try: # <<<<<<<<<<<<<<
@@ -21481,7 +21481,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21481
21481
  __pyx_L8_try_end:;
21482
21482
  }
21483
21483
 
21484
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
21484
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
21485
21485
  * raise ImportError("numpy.core.umath failed to import")
21486
21486
  *
21487
21487
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -21504,7 +21504,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21504
21504
  return __pyx_r;
21505
21505
  }
21506
21506
 
21507
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
21507
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
21508
21508
  *
21509
21509
  *
21510
21510
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -21515,7 +21515,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21515
21515
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
21516
21516
  int __pyx_r;
21517
21517
 
21518
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
21518
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
21519
21519
  * bool
21520
21520
  * """
21521
21521
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -21525,7 +21525,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
21525
21525
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
21526
21526
  goto __pyx_L0;
21527
21527
 
21528
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
21528
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
21529
21529
  *
21530
21530
  *
21531
21531
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -21538,7 +21538,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
21538
21538
  return __pyx_r;
21539
21539
  }
21540
21540
 
21541
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
21541
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
21542
21542
  *
21543
21543
  *
21544
21544
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -21549,7 +21549,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
21549
21549
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
21550
21550
  int __pyx_r;
21551
21551
 
21552
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
21552
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
21553
21553
  * bool
21554
21554
  * """
21555
21555
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -21559,7 +21559,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
21559
21559
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
21560
21560
  goto __pyx_L0;
21561
21561
 
21562
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
21562
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
21563
21563
  *
21564
21564
  *
21565
21565
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -21572,7 +21572,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
21572
21572
  return __pyx_r;
21573
21573
  }
21574
21574
 
21575
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
21575
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
21576
21576
  *
21577
21577
  *
21578
21578
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -21583,7 +21583,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
21583
21583
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
21584
21584
  npy_datetime __pyx_r;
21585
21585
 
21586
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
21586
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
21587
21587
  * also needed. That can be found using `get_datetime64_unit`.
21588
21588
  * """
21589
21589
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -21593,7 +21593,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
21593
21593
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
21594
21594
  goto __pyx_L0;
21595
21595
 
21596
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
21596
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
21597
21597
  *
21598
21598
  *
21599
21599
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -21606,7 +21606,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
21606
21606
  return __pyx_r;
21607
21607
  }
21608
21608
 
21609
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
21609
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
21610
21610
  *
21611
21611
  *
21612
21612
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -21617,7 +21617,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
21617
21617
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
21618
21618
  npy_timedelta __pyx_r;
21619
21619
 
21620
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1045
21620
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1045
21621
21621
  * returns the int64 value underlying scalar numpy timedelta64 object
21622
21622
  * """
21623
21623
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -21627,7 +21627,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
21627
21627
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
21628
21628
  goto __pyx_L0;
21629
21629
 
21630
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
21630
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
21631
21631
  *
21632
21632
  *
21633
21633
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -21640,7 +21640,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
21640
21640
  return __pyx_r;
21641
21641
  }
21642
21642
 
21643
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
21643
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
21644
21644
  *
21645
21645
  *
21646
21646
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -21651,7 +21651,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
21651
21651
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
21652
21652
  NPY_DATETIMEUNIT __pyx_r;
21653
21653
 
21654
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1052
21654
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1052
21655
21655
  * returns the unit part of the dtype for a numpy datetime64 object.
21656
21656
  * """
21657
21657
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -21659,7 +21659,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
21659
21659
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
21660
21660
  goto __pyx_L0;
21661
21661
 
21662
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
21662
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
21663
21663
  *
21664
21664
  *
21665
21665
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -54625,7 +54625,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
54625
54625
  __Pyx_GOTREF(__pyx_tuple__8);
54626
54626
  __Pyx_GIVEREF(__pyx_tuple__8);
54627
54627
 
54628
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
54628
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
54629
54629
  * __pyx_import_array()
54630
54630
  * except Exception:
54631
54631
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -54636,7 +54636,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
54636
54636
  __Pyx_GOTREF(__pyx_tuple__9);
54637
54637
  __Pyx_GIVEREF(__pyx_tuple__9);
54638
54638
 
54639
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
54639
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
54640
54640
  * _import_umath()
54641
54641
  * except Exception:
54642
54642
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<