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
@@ -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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1666
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1675
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1684
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
1693
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1702
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1711
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1720
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
1729
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1738
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
1747
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1756
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
1765
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1774
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":759
1783
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":759
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1792
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1801
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1810
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1819
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":766
1828
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":766
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1837
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
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-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1846
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1847
1847
  * ctypedef npy_double float_t
1848
1848
  * ctypedef npy_double double_t
1849
1849
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1912,7 +1912,7 @@ struct __pyx_MemviewEnum_obj;
1912
1912
  struct __pyx_memoryview_obj;
1913
1913
  struct __pyx_memoryviewslice_obj;
1914
1914
 
1915
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
1915
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
1916
1916
  * ctypedef npy_longdouble longdouble_t
1917
1917
  *
1918
1918
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1921,7 +1921,7 @@ struct __pyx_memoryviewslice_obj;
1921
1921
  */
1922
1922
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1923
1923
 
1924
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1924
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1925
1925
  *
1926
1926
  * ctypedef npy_cfloat cfloat_t
1927
1927
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1930,7 +1930,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1930
1930
  */
1931
1931
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1932
1932
 
1933
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1933
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1934
1934
  * ctypedef npy_cfloat cfloat_t
1935
1935
  * ctypedef npy_cdouble cdouble_t
1936
1936
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1939,7 +1939,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1939
1939
  */
1940
1940
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1941
1941
 
1942
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
1942
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
1943
1943
  * ctypedef npy_clongdouble clongdouble_t
1944
1944
  *
1945
1945
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -18726,7 +18726,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18726
18726
  return __pyx_r;
18727
18727
  }
18728
18728
 
18729
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18729
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18730
18730
  *
18731
18731
  * @property
18732
18732
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18737,7 +18737,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18737
18737
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
18738
18738
  PyObject *__pyx_r;
18739
18739
 
18740
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
18740
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
18741
18741
  * """Returns a borrowed reference to the object owning the data/memory.
18742
18742
  * """
18743
18743
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -18747,7 +18747,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18747
18747
  __pyx_r = PyArray_BASE(__pyx_v_self);
18748
18748
  goto __pyx_L0;
18749
18749
 
18750
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18750
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18751
18751
  *
18752
18752
  * @property
18753
18753
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18760,7 +18760,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18760
18760
  return __pyx_r;
18761
18761
  }
18762
18762
 
18763
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18763
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18764
18764
  *
18765
18765
  * @property
18766
18766
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18774,7 +18774,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18774
18774
  PyArray_Descr *__pyx_t_1;
18775
18775
  __Pyx_RefNannySetupContext("descr", 1);
18776
18776
 
18777
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
18777
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
18778
18778
  * """Returns an owned reference to the dtype of the array.
18779
18779
  * """
18780
18780
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -18787,7 +18787,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18787
18787
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
18788
18788
  goto __pyx_L0;
18789
18789
 
18790
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18790
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18791
18791
  *
18792
18792
  * @property
18793
18793
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18802,7 +18802,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18802
18802
  return __pyx_r;
18803
18803
  }
18804
18804
 
18805
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18805
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18806
18806
  *
18807
18807
  * @property
18808
18808
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18813,7 +18813,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18813
18813
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
18814
18814
  int __pyx_r;
18815
18815
 
18816
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
18816
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
18817
18817
  * """Returns the number of dimensions in the array.
18818
18818
  * """
18819
18819
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -18823,7 +18823,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18823
18823
  __pyx_r = PyArray_NDIM(__pyx_v_self);
18824
18824
  goto __pyx_L0;
18825
18825
 
18826
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18826
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18827
18827
  *
18828
18828
  * @property
18829
18829
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18836,7 +18836,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18836
18836
  return __pyx_r;
18837
18837
  }
18838
18838
 
18839
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18839
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18840
18840
  *
18841
18841
  * @property
18842
18842
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18847,7 +18847,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18847
18847
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
18848
18848
  npy_intp *__pyx_r;
18849
18849
 
18850
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
18850
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
18851
18851
  * Can return NULL for 0-dimensional arrays.
18852
18852
  * """
18853
18853
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -18857,7 +18857,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18857
18857
  __pyx_r = PyArray_DIMS(__pyx_v_self);
18858
18858
  goto __pyx_L0;
18859
18859
 
18860
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18860
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18861
18861
  *
18862
18862
  * @property
18863
18863
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18870,7 +18870,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18870
18870
  return __pyx_r;
18871
18871
  }
18872
18872
 
18873
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18873
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18874
18874
  *
18875
18875
  * @property
18876
18876
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18881,7 +18881,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18881
18881
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
18882
18882
  npy_intp *__pyx_r;
18883
18883
 
18884
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
18884
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
18885
18885
  * The number of elements matches the number of dimensions of the array (ndim).
18886
18886
  * """
18887
18887
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -18891,7 +18891,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18891
18891
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
18892
18892
  goto __pyx_L0;
18893
18893
 
18894
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18894
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18895
18895
  *
18896
18896
  * @property
18897
18897
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18904,7 +18904,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18904
18904
  return __pyx_r;
18905
18905
  }
18906
18906
 
18907
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18907
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18908
18908
  *
18909
18909
  * @property
18910
18910
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18915,7 +18915,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18915
18915
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
18916
18916
  npy_intp __pyx_r;
18917
18917
 
18918
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
18918
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
18919
18919
  * """Returns the total size (in number of elements) of the array.
18920
18920
  * """
18921
18921
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -18925,7 +18925,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18925
18925
  __pyx_r = PyArray_SIZE(__pyx_v_self);
18926
18926
  goto __pyx_L0;
18927
18927
 
18928
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18928
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18929
18929
  *
18930
18930
  * @property
18931
18931
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18938,7 +18938,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18938
18938
  return __pyx_r;
18939
18939
  }
18940
18940
 
18941
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18941
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18942
18942
  *
18943
18943
  * @property
18944
18944
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18949,7 +18949,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18949
18949
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
18950
18950
  char *__pyx_r;
18951
18951
 
18952
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
18952
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
18953
18953
  * of `PyArray_DATA()` instead, which returns a 'void*'.
18954
18954
  * """
18955
18955
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -18959,7 +18959,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18959
18959
  __pyx_r = PyArray_BYTES(__pyx_v_self);
18960
18960
  goto __pyx_L0;
18961
18961
 
18962
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18962
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18963
18963
  *
18964
18964
  * @property
18965
18965
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18972,7 +18972,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18972
18972
  return __pyx_r;
18973
18973
  }
18974
18974
 
18975
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18975
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18976
18976
  * ctypedef npy_cdouble complex_t
18977
18977
  *
18978
18978
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18989,7 +18989,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18989
18989
  int __pyx_clineno = 0;
18990
18990
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
18991
18991
 
18992
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18992
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18993
18993
  *
18994
18994
  * cdef inline object PyArray_MultiIterNew1(a):
18995
18995
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -19003,7 +19003,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19003
19003
  __pyx_t_1 = 0;
19004
19004
  goto __pyx_L0;
19005
19005
 
19006
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19006
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19007
19007
  * ctypedef npy_cdouble complex_t
19008
19008
  *
19009
19009
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19022,7 +19022,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19022
19022
  return __pyx_r;
19023
19023
  }
19024
19024
 
19025
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19025
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19026
19026
  * return PyArray_MultiIterNew(1, <void*>a)
19027
19027
  *
19028
19028
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19039,7 +19039,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19039
19039
  int __pyx_clineno = 0;
19040
19040
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
19041
19041
 
19042
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
19042
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
19043
19043
  *
19044
19044
  * cdef inline object PyArray_MultiIterNew2(a, b):
19045
19045
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -19053,7 +19053,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19053
19053
  __pyx_t_1 = 0;
19054
19054
  goto __pyx_L0;
19055
19055
 
19056
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19056
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19057
19057
  * return PyArray_MultiIterNew(1, <void*>a)
19058
19058
  *
19059
19059
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19072,7 +19072,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19072
19072
  return __pyx_r;
19073
19073
  }
19074
19074
 
19075
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19075
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19076
19076
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19077
19077
  *
19078
19078
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19089,7 +19089,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19089
19089
  int __pyx_clineno = 0;
19090
19090
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
19091
19091
 
19092
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
19092
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
19093
19093
  *
19094
19094
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
19095
19095
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -19103,7 +19103,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19103
19103
  __pyx_t_1 = 0;
19104
19104
  goto __pyx_L0;
19105
19105
 
19106
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19106
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19107
19107
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19108
19108
  *
19109
19109
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19122,7 +19122,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19122
19122
  return __pyx_r;
19123
19123
  }
19124
19124
 
19125
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19125
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19126
19126
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19127
19127
  *
19128
19128
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19139,7 +19139,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19139
19139
  int __pyx_clineno = 0;
19140
19140
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
19141
19141
 
19142
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
19142
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
19143
19143
  *
19144
19144
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
19145
19145
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -19153,7 +19153,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19153
19153
  __pyx_t_1 = 0;
19154
19154
  goto __pyx_L0;
19155
19155
 
19156
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19156
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19157
19157
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19158
19158
  *
19159
19159
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19172,7 +19172,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19172
19172
  return __pyx_r;
19173
19173
  }
19174
19174
 
19175
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19175
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19176
19176
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19177
19177
  *
19178
19178
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19189,7 +19189,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19189
19189
  int __pyx_clineno = 0;
19190
19190
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
19191
19191
 
19192
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19192
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19193
19193
  *
19194
19194
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
19195
19195
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -19203,7 +19203,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19203
19203
  __pyx_t_1 = 0;
19204
19204
  goto __pyx_L0;
19205
19205
 
19206
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19206
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19207
19207
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19208
19208
  *
19209
19209
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19222,7 +19222,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19222
19222
  return __pyx_r;
19223
19223
  }
19224
19224
 
19225
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
19225
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
19226
19226
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19227
19227
  *
19228
19228
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19236,7 +19236,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19236
19236
  int __pyx_t_1;
19237
19237
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
19238
19238
 
19239
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19239
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19240
19240
  *
19241
19241
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19242
19242
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19246,7 +19246,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19246
19246
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
19247
19247
  if (__pyx_t_1) {
19248
19248
 
19249
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
19249
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
19250
19250
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19251
19251
  * if PyDataType_HASSUBARRAY(d):
19252
19252
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -19258,7 +19258,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19258
19258
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
19259
19259
  goto __pyx_L0;
19260
19260
 
19261
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19261
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19262
19262
  *
19263
19263
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19264
19264
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19267,7 +19267,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19267
19267
  */
19268
19268
  }
19269
19269
 
19270
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
19270
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
19271
19271
  * return <tuple>d.subarray.shape
19272
19272
  * else:
19273
19273
  * return () # <<<<<<<<<<<<<<
@@ -19281,7 +19281,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19281
19281
  goto __pyx_L0;
19282
19282
  }
19283
19283
 
19284
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
19284
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
19285
19285
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19286
19286
  *
19287
19287
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19296,7 +19296,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19296
19296
  return __pyx_r;
19297
19297
  }
19298
19298
 
19299
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19299
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19300
19300
  * int _import_umath() except -1
19301
19301
  *
19302
19302
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19306,7 +19306,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19306
19306
 
19307
19307
  static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
19308
19308
 
19309
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
19309
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
19310
19310
  *
19311
19311
  * cdef inline void set_array_base(ndarray arr, object base):
19312
19312
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -19315,7 +19315,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19315
19315
  */
19316
19316
  Py_INCREF(__pyx_v_base);
19317
19317
 
19318
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19318
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19319
19319
  * cdef inline void set_array_base(ndarray arr, object base):
19320
19320
  * Py_INCREF(base) # important to do this before stealing the reference below!
19321
19321
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -19324,7 +19324,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19324
19324
  */
19325
19325
  (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
19326
19326
 
19327
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19327
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19328
19328
  * int _import_umath() except -1
19329
19329
  *
19330
19330
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19335,7 +19335,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19335
19335
  /* function exit code */
19336
19336
  }
19337
19337
 
19338
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19338
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19339
19339
  * PyArray_SetBaseObject(arr, base)
19340
19340
  *
19341
19341
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19350,7 +19350,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19350
19350
  int __pyx_t_1;
19351
19351
  __Pyx_RefNannySetupContext("get_array_base", 1);
19352
19352
 
19353
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19353
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19354
19354
  *
19355
19355
  * cdef inline object get_array_base(ndarray arr):
19356
19356
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -19359,7 +19359,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19359
19359
  */
19360
19360
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
19361
19361
 
19362
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19362
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19363
19363
  * cdef inline object get_array_base(ndarray arr):
19364
19364
  * base = PyArray_BASE(arr)
19365
19365
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19369,7 +19369,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19369
19369
  __pyx_t_1 = (__pyx_v_base == NULL);
19370
19370
  if (__pyx_t_1) {
19371
19371
 
19372
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
19372
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
19373
19373
  * base = PyArray_BASE(arr)
19374
19374
  * if base is NULL:
19375
19375
  * return None # <<<<<<<<<<<<<<
@@ -19380,7 +19380,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19380
19380
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
19381
19381
  goto __pyx_L0;
19382
19382
 
19383
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19383
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19384
19384
  * cdef inline object get_array_base(ndarray arr):
19385
19385
  * base = PyArray_BASE(arr)
19386
19386
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19389,7 +19389,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19389
19389
  */
19390
19390
  }
19391
19391
 
19392
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
19392
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
19393
19393
  * if base is NULL:
19394
19394
  * return None
19395
19395
  * return <object>base # <<<<<<<<<<<<<<
@@ -19401,7 +19401,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19401
19401
  __pyx_r = ((PyObject *)__pyx_v_base);
19402
19402
  goto __pyx_L0;
19403
19403
 
19404
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19404
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19405
19405
  * PyArray_SetBaseObject(arr, base)
19406
19406
  *
19407
19407
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19416,7 +19416,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19416
19416
  return __pyx_r;
19417
19417
  }
19418
19418
 
19419
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19419
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19420
19420
  * # Versions of the import_* functions which are more suitable for
19421
19421
  * # Cython code.
19422
19422
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19440,7 +19440,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19440
19440
  int __pyx_clineno = 0;
19441
19441
  __Pyx_RefNannySetupContext("import_array", 1);
19442
19442
 
19443
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19443
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19444
19444
  * # Cython code.
19445
19445
  * cdef inline int import_array() except -1:
19446
19446
  * try: # <<<<<<<<<<<<<<
@@ -19456,7 +19456,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19456
19456
  __Pyx_XGOTREF(__pyx_t_3);
19457
19457
  /*try:*/ {
19458
19458
 
19459
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19459
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19460
19460
  * cdef inline int import_array() except -1:
19461
19461
  * try:
19462
19462
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -19465,7 +19465,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19465
19465
  */
19466
19466
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 984, __pyx_L3_error)
19467
19467
 
19468
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19468
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19469
19469
  * # Cython code.
19470
19470
  * cdef inline int import_array() except -1:
19471
19471
  * try: # <<<<<<<<<<<<<<
@@ -19479,7 +19479,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19479
19479
  goto __pyx_L8_try_end;
19480
19480
  __pyx_L3_error:;
19481
19481
 
19482
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
19482
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
19483
19483
  * try:
19484
19484
  * __pyx_import_array()
19485
19485
  * except Exception: # <<<<<<<<<<<<<<
@@ -19494,7 +19494,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19494
19494
  __Pyx_XGOTREF(__pyx_t_6);
19495
19495
  __Pyx_XGOTREF(__pyx_t_7);
19496
19496
 
19497
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19497
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19498
19498
  * __pyx_import_array()
19499
19499
  * except Exception:
19500
19500
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -19509,7 +19509,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19509
19509
  }
19510
19510
  goto __pyx_L5_except_error;
19511
19511
 
19512
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19512
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19513
19513
  * # Cython code.
19514
19514
  * cdef inline int import_array() except -1:
19515
19515
  * try: # <<<<<<<<<<<<<<
@@ -19525,7 +19525,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19525
19525
  __pyx_L8_try_end:;
19526
19526
  }
19527
19527
 
19528
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19528
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19529
19529
  * # Versions of the import_* functions which are more suitable for
19530
19530
  * # Cython code.
19531
19531
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19548,7 +19548,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19548
19548
  return __pyx_r;
19549
19549
  }
19550
19550
 
19551
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19551
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19552
19552
  * raise ImportError("numpy.core.multiarray failed to import")
19553
19553
  *
19554
19554
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19572,7 +19572,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19572
19572
  int __pyx_clineno = 0;
19573
19573
  __Pyx_RefNannySetupContext("import_umath", 1);
19574
19574
 
19575
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19575
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19576
19576
  *
19577
19577
  * cdef inline int import_umath() except -1:
19578
19578
  * try: # <<<<<<<<<<<<<<
@@ -19588,7 +19588,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19588
19588
  __Pyx_XGOTREF(__pyx_t_3);
19589
19589
  /*try:*/ {
19590
19590
 
19591
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19591
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19592
19592
  * cdef inline int import_umath() except -1:
19593
19593
  * try:
19594
19594
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19597,7 +19597,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19597
19597
  */
19598
19598
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 990, __pyx_L3_error)
19599
19599
 
19600
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19600
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19601
19601
  *
19602
19602
  * cdef inline int import_umath() except -1:
19603
19603
  * try: # <<<<<<<<<<<<<<
@@ -19611,7 +19611,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19611
19611
  goto __pyx_L8_try_end;
19612
19612
  __pyx_L3_error:;
19613
19613
 
19614
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
19614
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
19615
19615
  * try:
19616
19616
  * _import_umath()
19617
19617
  * except Exception: # <<<<<<<<<<<<<<
@@ -19626,7 +19626,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19626
19626
  __Pyx_XGOTREF(__pyx_t_6);
19627
19627
  __Pyx_XGOTREF(__pyx_t_7);
19628
19628
 
19629
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19629
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19630
19630
  * _import_umath()
19631
19631
  * except Exception:
19632
19632
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19641,7 +19641,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19641
19641
  }
19642
19642
  goto __pyx_L5_except_error;
19643
19643
 
19644
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19644
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19645
19645
  *
19646
19646
  * cdef inline int import_umath() except -1:
19647
19647
  * try: # <<<<<<<<<<<<<<
@@ -19657,7 +19657,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19657
19657
  __pyx_L8_try_end:;
19658
19658
  }
19659
19659
 
19660
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19660
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19661
19661
  * raise ImportError("numpy.core.multiarray failed to import")
19662
19662
  *
19663
19663
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19680,7 +19680,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19680
19680
  return __pyx_r;
19681
19681
  }
19682
19682
 
19683
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19683
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19684
19684
  * raise ImportError("numpy.core.umath failed to import")
19685
19685
  *
19686
19686
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19704,7 +19704,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19704
19704
  int __pyx_clineno = 0;
19705
19705
  __Pyx_RefNannySetupContext("import_ufunc", 1);
19706
19706
 
19707
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19707
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19708
19708
  *
19709
19709
  * cdef inline int import_ufunc() except -1:
19710
19710
  * try: # <<<<<<<<<<<<<<
@@ -19720,7 +19720,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19720
19720
  __Pyx_XGOTREF(__pyx_t_3);
19721
19721
  /*try:*/ {
19722
19722
 
19723
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19723
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19724
19724
  * cdef inline int import_ufunc() except -1:
19725
19725
  * try:
19726
19726
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19729,7 +19729,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19729
19729
  */
19730
19730
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 996, __pyx_L3_error)
19731
19731
 
19732
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19732
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19733
19733
  *
19734
19734
  * cdef inline int import_ufunc() except -1:
19735
19735
  * try: # <<<<<<<<<<<<<<
@@ -19743,7 +19743,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19743
19743
  goto __pyx_L8_try_end;
19744
19744
  __pyx_L3_error:;
19745
19745
 
19746
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
19746
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
19747
19747
  * try:
19748
19748
  * _import_umath()
19749
19749
  * except Exception: # <<<<<<<<<<<<<<
@@ -19758,7 +19758,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19758
19758
  __Pyx_XGOTREF(__pyx_t_6);
19759
19759
  __Pyx_XGOTREF(__pyx_t_7);
19760
19760
 
19761
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
19761
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
19762
19762
  * _import_umath()
19763
19763
  * except Exception:
19764
19764
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19773,7 +19773,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19773
19773
  }
19774
19774
  goto __pyx_L5_except_error;
19775
19775
 
19776
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19776
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19777
19777
  *
19778
19778
  * cdef inline int import_ufunc() except -1:
19779
19779
  * try: # <<<<<<<<<<<<<<
@@ -19789,7 +19789,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19789
19789
  __pyx_L8_try_end:;
19790
19790
  }
19791
19791
 
19792
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19792
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19793
19793
  * raise ImportError("numpy.core.umath failed to import")
19794
19794
  *
19795
19795
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19812,7 +19812,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19812
19812
  return __pyx_r;
19813
19813
  }
19814
19814
 
19815
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
19815
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
19816
19816
  *
19817
19817
  *
19818
19818
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19823,7 +19823,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19823
19823
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
19824
19824
  int __pyx_r;
19825
19825
 
19826
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
19826
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
19827
19827
  * bool
19828
19828
  * """
19829
19829
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -19833,7 +19833,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19833
19833
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
19834
19834
  goto __pyx_L0;
19835
19835
 
19836
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
19836
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
19837
19837
  *
19838
19838
  *
19839
19839
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19846,7 +19846,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19846
19846
  return __pyx_r;
19847
19847
  }
19848
19848
 
19849
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
19849
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
19850
19850
  *
19851
19851
  *
19852
19852
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19857,7 +19857,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19857
19857
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
19858
19858
  int __pyx_r;
19859
19859
 
19860
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
19860
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
19861
19861
  * bool
19862
19862
  * """
19863
19863
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -19867,7 +19867,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19867
19867
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
19868
19868
  goto __pyx_L0;
19869
19869
 
19870
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
19870
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
19871
19871
  *
19872
19872
  *
19873
19873
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19880,7 +19880,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19880
19880
  return __pyx_r;
19881
19881
  }
19882
19882
 
19883
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
19883
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
19884
19884
  *
19885
19885
  *
19886
19886
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19891,7 +19891,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19891
19891
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
19892
19892
  npy_datetime __pyx_r;
19893
19893
 
19894
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
19894
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
19895
19895
  * also needed. That can be found using `get_datetime64_unit`.
19896
19896
  * """
19897
19897
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19901,7 +19901,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19901
19901
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
19902
19902
  goto __pyx_L0;
19903
19903
 
19904
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
19904
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
19905
19905
  *
19906
19906
  *
19907
19907
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19914,7 +19914,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19914
19914
  return __pyx_r;
19915
19915
  }
19916
19916
 
19917
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
19917
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
19918
19918
  *
19919
19919
  *
19920
19920
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19925,7 +19925,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19925
19925
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
19926
19926
  npy_timedelta __pyx_r;
19927
19927
 
19928
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1045
19928
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1045
19929
19929
  * returns the int64 value underlying scalar numpy timedelta64 object
19930
19930
  * """
19931
19931
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19935,7 +19935,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19935
19935
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
19936
19936
  goto __pyx_L0;
19937
19937
 
19938
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
19938
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
19939
19939
  *
19940
19940
  *
19941
19941
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19948,7 +19948,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19948
19948
  return __pyx_r;
19949
19949
  }
19950
19950
 
19951
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
19951
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
19952
19952
  *
19953
19953
  *
19954
19954
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19959,7 +19959,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19959
19959
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
19960
19960
  NPY_DATETIMEUNIT __pyx_r;
19961
19961
 
19962
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1052
19962
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1052
19963
19963
  * returns the unit part of the dtype for a numpy datetime64 object.
19964
19964
  * """
19965
19965
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -19967,7 +19967,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
19967
19967
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
19968
19968
  goto __pyx_L0;
19969
19969
 
19970
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
19970
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
19971
19971
  *
19972
19972
  *
19973
19973
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -28830,7 +28830,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
28830
28830
  __Pyx_GOTREF(__pyx_tuple__8);
28831
28831
  __Pyx_GIVEREF(__pyx_tuple__8);
28832
28832
 
28833
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
28833
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
28834
28834
  * __pyx_import_array()
28835
28835
  * except Exception:
28836
28836
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -28841,7 +28841,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
28841
28841
  __Pyx_GOTREF(__pyx_tuple__9);
28842
28842
  __Pyx_GIVEREF(__pyx_tuple__9);
28843
28843
 
28844
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
28844
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
28845
28845
  * _import_umath()
28846
28846
  * except Exception:
28847
28847
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<