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 # <<<<<<<<<<<<<<
@@ -1911,7 +1911,7 @@ struct __pyx_MemviewEnum_obj;
1911
1911
  struct __pyx_memoryview_obj;
1912
1912
  struct __pyx_memoryviewslice_obj;
1913
1913
 
1914
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
1914
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
1915
1915
  * ctypedef npy_longdouble longdouble_t
1916
1916
  *
1917
1917
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1920,7 +1920,7 @@ struct __pyx_memoryviewslice_obj;
1920
1920
  */
1921
1921
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1922
1922
 
1923
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1923
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1924
1924
  *
1925
1925
  * ctypedef npy_cfloat cfloat_t
1926
1926
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1929,7 +1929,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1929
1929
  */
1930
1930
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1931
1931
 
1932
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1932
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1933
1933
  * ctypedef npy_cfloat cfloat_t
1934
1934
  * ctypedef npy_cdouble cdouble_t
1935
1935
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1938,7 +1938,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1938
1938
  */
1939
1939
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1940
1940
 
1941
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
1941
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
1942
1942
  * ctypedef npy_clongdouble clongdouble_t
1943
1943
  *
1944
1944
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -18194,7 +18194,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18194
18194
  return __pyx_r;
18195
18195
  }
18196
18196
 
18197
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18197
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18198
18198
  *
18199
18199
  * @property
18200
18200
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18205,7 +18205,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18205
18205
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
18206
18206
  PyObject *__pyx_r;
18207
18207
 
18208
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
18208
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
18209
18209
  * """Returns a borrowed reference to the object owning the data/memory.
18210
18210
  * """
18211
18211
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -18215,7 +18215,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18215
18215
  __pyx_r = PyArray_BASE(__pyx_v_self);
18216
18216
  goto __pyx_L0;
18217
18217
 
18218
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18218
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18219
18219
  *
18220
18220
  * @property
18221
18221
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18228,7 +18228,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18228
18228
  return __pyx_r;
18229
18229
  }
18230
18230
 
18231
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18231
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18232
18232
  *
18233
18233
  * @property
18234
18234
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18242,7 +18242,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18242
18242
  PyArray_Descr *__pyx_t_1;
18243
18243
  __Pyx_RefNannySetupContext("descr", 1);
18244
18244
 
18245
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
18245
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
18246
18246
  * """Returns an owned reference to the dtype of the array.
18247
18247
  * """
18248
18248
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -18255,7 +18255,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18255
18255
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
18256
18256
  goto __pyx_L0;
18257
18257
 
18258
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18258
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18259
18259
  *
18260
18260
  * @property
18261
18261
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18270,7 +18270,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18270
18270
  return __pyx_r;
18271
18271
  }
18272
18272
 
18273
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18273
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18274
18274
  *
18275
18275
  * @property
18276
18276
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18281,7 +18281,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18281
18281
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
18282
18282
  int __pyx_r;
18283
18283
 
18284
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
18284
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
18285
18285
  * """Returns the number of dimensions in the array.
18286
18286
  * """
18287
18287
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -18291,7 +18291,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18291
18291
  __pyx_r = PyArray_NDIM(__pyx_v_self);
18292
18292
  goto __pyx_L0;
18293
18293
 
18294
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18294
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18295
18295
  *
18296
18296
  * @property
18297
18297
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18304,7 +18304,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18304
18304
  return __pyx_r;
18305
18305
  }
18306
18306
 
18307
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18307
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18308
18308
  *
18309
18309
  * @property
18310
18310
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18315,7 +18315,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18315
18315
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
18316
18316
  npy_intp *__pyx_r;
18317
18317
 
18318
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
18318
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
18319
18319
  * Can return NULL for 0-dimensional arrays.
18320
18320
  * """
18321
18321
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -18325,7 +18325,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18325
18325
  __pyx_r = PyArray_DIMS(__pyx_v_self);
18326
18326
  goto __pyx_L0;
18327
18327
 
18328
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18328
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18329
18329
  *
18330
18330
  * @property
18331
18331
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18338,7 +18338,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18338
18338
  return __pyx_r;
18339
18339
  }
18340
18340
 
18341
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18341
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18342
18342
  *
18343
18343
  * @property
18344
18344
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18349,7 +18349,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18349
18349
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
18350
18350
  npy_intp *__pyx_r;
18351
18351
 
18352
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
18352
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
18353
18353
  * The number of elements matches the number of dimensions of the array (ndim).
18354
18354
  * """
18355
18355
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -18359,7 +18359,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18359
18359
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
18360
18360
  goto __pyx_L0;
18361
18361
 
18362
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18362
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18363
18363
  *
18364
18364
  * @property
18365
18365
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18372,7 +18372,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18372
18372
  return __pyx_r;
18373
18373
  }
18374
18374
 
18375
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18375
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18376
18376
  *
18377
18377
  * @property
18378
18378
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18383,7 +18383,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18383
18383
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
18384
18384
  npy_intp __pyx_r;
18385
18385
 
18386
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
18386
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
18387
18387
  * """Returns the total size (in number of elements) of the array.
18388
18388
  * """
18389
18389
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -18393,7 +18393,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18393
18393
  __pyx_r = PyArray_SIZE(__pyx_v_self);
18394
18394
  goto __pyx_L0;
18395
18395
 
18396
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18396
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18397
18397
  *
18398
18398
  * @property
18399
18399
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18406,7 +18406,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18406
18406
  return __pyx_r;
18407
18407
  }
18408
18408
 
18409
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18409
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18410
18410
  *
18411
18411
  * @property
18412
18412
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18417,7 +18417,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18417
18417
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
18418
18418
  char *__pyx_r;
18419
18419
 
18420
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
18420
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
18421
18421
  * of `PyArray_DATA()` instead, which returns a 'void*'.
18422
18422
  * """
18423
18423
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -18427,7 +18427,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18427
18427
  __pyx_r = PyArray_BYTES(__pyx_v_self);
18428
18428
  goto __pyx_L0;
18429
18429
 
18430
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18430
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18431
18431
  *
18432
18432
  * @property
18433
18433
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18440,7 +18440,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18440
18440
  return __pyx_r;
18441
18441
  }
18442
18442
 
18443
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18443
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18444
18444
  * ctypedef npy_cdouble complex_t
18445
18445
  *
18446
18446
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18457,7 +18457,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18457
18457
  int __pyx_clineno = 0;
18458
18458
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
18459
18459
 
18460
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18460
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18461
18461
  *
18462
18462
  * cdef inline object PyArray_MultiIterNew1(a):
18463
18463
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -18471,7 +18471,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18471
18471
  __pyx_t_1 = 0;
18472
18472
  goto __pyx_L0;
18473
18473
 
18474
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18474
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18475
18475
  * ctypedef npy_cdouble complex_t
18476
18476
  *
18477
18477
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18490,7 +18490,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18490
18490
  return __pyx_r;
18491
18491
  }
18492
18492
 
18493
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18493
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18494
18494
  * return PyArray_MultiIterNew(1, <void*>a)
18495
18495
  *
18496
18496
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18507,7 +18507,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18507
18507
  int __pyx_clineno = 0;
18508
18508
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
18509
18509
 
18510
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18510
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18511
18511
  *
18512
18512
  * cdef inline object PyArray_MultiIterNew2(a, b):
18513
18513
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -18521,7 +18521,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18521
18521
  __pyx_t_1 = 0;
18522
18522
  goto __pyx_L0;
18523
18523
 
18524
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18524
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18525
18525
  * return PyArray_MultiIterNew(1, <void*>a)
18526
18526
  *
18527
18527
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18540,7 +18540,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18540
18540
  return __pyx_r;
18541
18541
  }
18542
18542
 
18543
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18543
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18544
18544
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18545
18545
  *
18546
18546
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18557,7 +18557,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18557
18557
  int __pyx_clineno = 0;
18558
18558
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
18559
18559
 
18560
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18560
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18561
18561
  *
18562
18562
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
18563
18563
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -18571,7 +18571,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18571
18571
  __pyx_t_1 = 0;
18572
18572
  goto __pyx_L0;
18573
18573
 
18574
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18574
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18575
18575
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18576
18576
  *
18577
18577
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18590,7 +18590,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18590
18590
  return __pyx_r;
18591
18591
  }
18592
18592
 
18593
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18593
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18594
18594
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18595
18595
  *
18596
18596
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18607,7 +18607,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18607
18607
  int __pyx_clineno = 0;
18608
18608
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
18609
18609
 
18610
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18610
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18611
18611
  *
18612
18612
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
18613
18613
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -18621,7 +18621,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18621
18621
  __pyx_t_1 = 0;
18622
18622
  goto __pyx_L0;
18623
18623
 
18624
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18624
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18625
18625
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18626
18626
  *
18627
18627
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18640,7 +18640,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18640
18640
  return __pyx_r;
18641
18641
  }
18642
18642
 
18643
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18643
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18644
18644
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18645
18645
  *
18646
18646
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18657,7 +18657,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18657
18657
  int __pyx_clineno = 0;
18658
18658
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
18659
18659
 
18660
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18660
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18661
18661
  *
18662
18662
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
18663
18663
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -18671,7 +18671,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18671
18671
  __pyx_t_1 = 0;
18672
18672
  goto __pyx_L0;
18673
18673
 
18674
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18674
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18675
18675
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18676
18676
  *
18677
18677
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18690,7 +18690,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18690
18690
  return __pyx_r;
18691
18691
  }
18692
18692
 
18693
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
18693
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
18694
18694
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18695
18695
  *
18696
18696
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18704,7 +18704,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18704
18704
  int __pyx_t_1;
18705
18705
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
18706
18706
 
18707
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
18707
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
18708
18708
  *
18709
18709
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18710
18710
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18714,7 +18714,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18714
18714
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
18715
18715
  if (__pyx_t_1) {
18716
18716
 
18717
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
18717
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
18718
18718
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18719
18719
  * if PyDataType_HASSUBARRAY(d):
18720
18720
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -18726,7 +18726,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18726
18726
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
18727
18727
  goto __pyx_L0;
18728
18728
 
18729
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
18729
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
18730
18730
  *
18731
18731
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18732
18732
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18735,7 +18735,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18735
18735
  */
18736
18736
  }
18737
18737
 
18738
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
18738
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
18739
18739
  * return <tuple>d.subarray.shape
18740
18740
  * else:
18741
18741
  * return () # <<<<<<<<<<<<<<
@@ -18749,7 +18749,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18749
18749
  goto __pyx_L0;
18750
18750
  }
18751
18751
 
18752
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
18752
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
18753
18753
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18754
18754
  *
18755
18755
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18764,7 +18764,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18764
18764
  return __pyx_r;
18765
18765
  }
18766
18766
 
18767
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
18767
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
18768
18768
  * int _import_umath() except -1
18769
18769
  *
18770
18770
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -18774,7 +18774,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18774
18774
 
18775
18775
  static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
18776
18776
 
18777
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
18777
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
18778
18778
  *
18779
18779
  * cdef inline void set_array_base(ndarray arr, object base):
18780
18780
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -18783,7 +18783,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18783
18783
  */
18784
18784
  Py_INCREF(__pyx_v_base);
18785
18785
 
18786
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
18786
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
18787
18787
  * cdef inline void set_array_base(ndarray arr, object base):
18788
18788
  * Py_INCREF(base) # important to do this before stealing the reference below!
18789
18789
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -18792,7 +18792,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18792
18792
  */
18793
18793
  (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
18794
18794
 
18795
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
18795
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
18796
18796
  * int _import_umath() except -1
18797
18797
  *
18798
18798
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -18803,7 +18803,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18803
18803
  /* function exit code */
18804
18804
  }
18805
18805
 
18806
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
18806
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
18807
18807
  * PyArray_SetBaseObject(arr, base)
18808
18808
  *
18809
18809
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -18818,7 +18818,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18818
18818
  int __pyx_t_1;
18819
18819
  __Pyx_RefNannySetupContext("get_array_base", 1);
18820
18820
 
18821
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
18821
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
18822
18822
  *
18823
18823
  * cdef inline object get_array_base(ndarray arr):
18824
18824
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -18827,7 +18827,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18827
18827
  */
18828
18828
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
18829
18829
 
18830
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
18830
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
18831
18831
  * cdef inline object get_array_base(ndarray arr):
18832
18832
  * base = PyArray_BASE(arr)
18833
18833
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -18837,7 +18837,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18837
18837
  __pyx_t_1 = (__pyx_v_base == NULL);
18838
18838
  if (__pyx_t_1) {
18839
18839
 
18840
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
18840
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
18841
18841
  * base = PyArray_BASE(arr)
18842
18842
  * if base is NULL:
18843
18843
  * return None # <<<<<<<<<<<<<<
@@ -18848,7 +18848,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18848
18848
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
18849
18849
  goto __pyx_L0;
18850
18850
 
18851
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
18851
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
18852
18852
  * cdef inline object get_array_base(ndarray arr):
18853
18853
  * base = PyArray_BASE(arr)
18854
18854
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -18857,7 +18857,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18857
18857
  */
18858
18858
  }
18859
18859
 
18860
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
18860
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
18861
18861
  * if base is NULL:
18862
18862
  * return None
18863
18863
  * return <object>base # <<<<<<<<<<<<<<
@@ -18869,7 +18869,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18869
18869
  __pyx_r = ((PyObject *)__pyx_v_base);
18870
18870
  goto __pyx_L0;
18871
18871
 
18872
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
18872
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
18873
18873
  * PyArray_SetBaseObject(arr, base)
18874
18874
  *
18875
18875
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -18884,7 +18884,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18884
18884
  return __pyx_r;
18885
18885
  }
18886
18886
 
18887
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
18887
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
18888
18888
  * # Versions of the import_* functions which are more suitable for
18889
18889
  * # Cython code.
18890
18890
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -18908,7 +18908,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18908
18908
  int __pyx_clineno = 0;
18909
18909
  __Pyx_RefNannySetupContext("import_array", 1);
18910
18910
 
18911
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
18911
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
18912
18912
  * # Cython code.
18913
18913
  * cdef inline int import_array() except -1:
18914
18914
  * try: # <<<<<<<<<<<<<<
@@ -18924,7 +18924,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18924
18924
  __Pyx_XGOTREF(__pyx_t_3);
18925
18925
  /*try:*/ {
18926
18926
 
18927
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
18927
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
18928
18928
  * cdef inline int import_array() except -1:
18929
18929
  * try:
18930
18930
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -18933,7 +18933,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18933
18933
  */
18934
18934
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 984, __pyx_L3_error)
18935
18935
 
18936
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
18936
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
18937
18937
  * # Cython code.
18938
18938
  * cdef inline int import_array() except -1:
18939
18939
  * try: # <<<<<<<<<<<<<<
@@ -18947,7 +18947,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18947
18947
  goto __pyx_L8_try_end;
18948
18948
  __pyx_L3_error:;
18949
18949
 
18950
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
18950
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
18951
18951
  * try:
18952
18952
  * __pyx_import_array()
18953
18953
  * except Exception: # <<<<<<<<<<<<<<
@@ -18962,7 +18962,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18962
18962
  __Pyx_XGOTREF(__pyx_t_6);
18963
18963
  __Pyx_XGOTREF(__pyx_t_7);
18964
18964
 
18965
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
18965
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
18966
18966
  * __pyx_import_array()
18967
18967
  * except Exception:
18968
18968
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -18977,7 +18977,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18977
18977
  }
18978
18978
  goto __pyx_L5_except_error;
18979
18979
 
18980
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
18980
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
18981
18981
  * # Cython code.
18982
18982
  * cdef inline int import_array() except -1:
18983
18983
  * try: # <<<<<<<<<<<<<<
@@ -18993,7 +18993,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18993
18993
  __pyx_L8_try_end:;
18994
18994
  }
18995
18995
 
18996
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
18996
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
18997
18997
  * # Versions of the import_* functions which are more suitable for
18998
18998
  * # Cython code.
18999
18999
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19016,7 +19016,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19016
19016
  return __pyx_r;
19017
19017
  }
19018
19018
 
19019
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19019
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19020
19020
  * raise ImportError("numpy.core.multiarray failed to import")
19021
19021
  *
19022
19022
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19040,7 +19040,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19040
19040
  int __pyx_clineno = 0;
19041
19041
  __Pyx_RefNannySetupContext("import_umath", 1);
19042
19042
 
19043
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19043
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19044
19044
  *
19045
19045
  * cdef inline int import_umath() except -1:
19046
19046
  * try: # <<<<<<<<<<<<<<
@@ -19056,7 +19056,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19056
19056
  __Pyx_XGOTREF(__pyx_t_3);
19057
19057
  /*try:*/ {
19058
19058
 
19059
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19059
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19060
19060
  * cdef inline int import_umath() except -1:
19061
19061
  * try:
19062
19062
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19065,7 +19065,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19065
19065
  */
19066
19066
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 990, __pyx_L3_error)
19067
19067
 
19068
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19068
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19069
19069
  *
19070
19070
  * cdef inline int import_umath() except -1:
19071
19071
  * try: # <<<<<<<<<<<<<<
@@ -19079,7 +19079,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19079
19079
  goto __pyx_L8_try_end;
19080
19080
  __pyx_L3_error:;
19081
19081
 
19082
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
19082
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
19083
19083
  * try:
19084
19084
  * _import_umath()
19085
19085
  * except Exception: # <<<<<<<<<<<<<<
@@ -19094,7 +19094,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19094
19094
  __Pyx_XGOTREF(__pyx_t_6);
19095
19095
  __Pyx_XGOTREF(__pyx_t_7);
19096
19096
 
19097
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19097
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19098
19098
  * _import_umath()
19099
19099
  * except Exception:
19100
19100
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19109,7 +19109,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19109
19109
  }
19110
19110
  goto __pyx_L5_except_error;
19111
19111
 
19112
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19112
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19113
19113
  *
19114
19114
  * cdef inline int import_umath() except -1:
19115
19115
  * try: # <<<<<<<<<<<<<<
@@ -19125,7 +19125,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19125
19125
  __pyx_L8_try_end:;
19126
19126
  }
19127
19127
 
19128
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19128
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19129
19129
  * raise ImportError("numpy.core.multiarray failed to import")
19130
19130
  *
19131
19131
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19148,7 +19148,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19148
19148
  return __pyx_r;
19149
19149
  }
19150
19150
 
19151
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19151
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19152
19152
  * raise ImportError("numpy.core.umath failed to import")
19153
19153
  *
19154
19154
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19172,7 +19172,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19172
19172
  int __pyx_clineno = 0;
19173
19173
  __Pyx_RefNannySetupContext("import_ufunc", 1);
19174
19174
 
19175
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19175
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19176
19176
  *
19177
19177
  * cdef inline int import_ufunc() except -1:
19178
19178
  * try: # <<<<<<<<<<<<<<
@@ -19188,7 +19188,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19188
19188
  __Pyx_XGOTREF(__pyx_t_3);
19189
19189
  /*try:*/ {
19190
19190
 
19191
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19191
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19192
19192
  * cdef inline int import_ufunc() except -1:
19193
19193
  * try:
19194
19194
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19197,7 +19197,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19197
19197
  */
19198
19198
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 996, __pyx_L3_error)
19199
19199
 
19200
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19200
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19201
19201
  *
19202
19202
  * cdef inline int import_ufunc() except -1:
19203
19203
  * try: # <<<<<<<<<<<<<<
@@ -19211,7 +19211,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19211
19211
  goto __pyx_L8_try_end;
19212
19212
  __pyx_L3_error:;
19213
19213
 
19214
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
19214
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
19215
19215
  * try:
19216
19216
  * _import_umath()
19217
19217
  * except Exception: # <<<<<<<<<<<<<<
@@ -19226,7 +19226,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19226
19226
  __Pyx_XGOTREF(__pyx_t_6);
19227
19227
  __Pyx_XGOTREF(__pyx_t_7);
19228
19228
 
19229
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
19229
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
19230
19230
  * _import_umath()
19231
19231
  * except Exception:
19232
19232
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19241,7 +19241,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19241
19241
  }
19242
19242
  goto __pyx_L5_except_error;
19243
19243
 
19244
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19244
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19245
19245
  *
19246
19246
  * cdef inline int import_ufunc() except -1:
19247
19247
  * try: # <<<<<<<<<<<<<<
@@ -19257,7 +19257,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19257
19257
  __pyx_L8_try_end:;
19258
19258
  }
19259
19259
 
19260
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19260
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19261
19261
  * raise ImportError("numpy.core.umath failed to import")
19262
19262
  *
19263
19263
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19280,7 +19280,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19280
19280
  return __pyx_r;
19281
19281
  }
19282
19282
 
19283
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
19283
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
19284
19284
  *
19285
19285
  *
19286
19286
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19291,7 +19291,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19291
19291
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
19292
19292
  int __pyx_r;
19293
19293
 
19294
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
19294
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
19295
19295
  * bool
19296
19296
  * """
19297
19297
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -19301,7 +19301,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19301
19301
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
19302
19302
  goto __pyx_L0;
19303
19303
 
19304
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
19304
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
19305
19305
  *
19306
19306
  *
19307
19307
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19314,7 +19314,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19314
19314
  return __pyx_r;
19315
19315
  }
19316
19316
 
19317
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
19317
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
19318
19318
  *
19319
19319
  *
19320
19320
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19325,7 +19325,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19325
19325
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
19326
19326
  int __pyx_r;
19327
19327
 
19328
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
19328
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
19329
19329
  * bool
19330
19330
  * """
19331
19331
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -19335,7 +19335,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19335
19335
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
19336
19336
  goto __pyx_L0;
19337
19337
 
19338
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
19338
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
19339
19339
  *
19340
19340
  *
19341
19341
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19348,7 +19348,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19348
19348
  return __pyx_r;
19349
19349
  }
19350
19350
 
19351
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
19351
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
19352
19352
  *
19353
19353
  *
19354
19354
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19359,7 +19359,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19359
19359
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
19360
19360
  npy_datetime __pyx_r;
19361
19361
 
19362
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
19362
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
19363
19363
  * also needed. That can be found using `get_datetime64_unit`.
19364
19364
  * """
19365
19365
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19369,7 +19369,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19369
19369
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
19370
19370
  goto __pyx_L0;
19371
19371
 
19372
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
19372
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
19373
19373
  *
19374
19374
  *
19375
19375
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19382,7 +19382,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19382
19382
  return __pyx_r;
19383
19383
  }
19384
19384
 
19385
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
19385
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
19386
19386
  *
19387
19387
  *
19388
19388
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19393,7 +19393,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19393
19393
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
19394
19394
  npy_timedelta __pyx_r;
19395
19395
 
19396
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1045
19396
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1045
19397
19397
  * returns the int64 value underlying scalar numpy timedelta64 object
19398
19398
  * """
19399
19399
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19403,7 +19403,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19403
19403
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
19404
19404
  goto __pyx_L0;
19405
19405
 
19406
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
19406
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
19407
19407
  *
19408
19408
  *
19409
19409
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19416,7 +19416,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
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":1048
19419
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
19420
19420
  *
19421
19421
  *
19422
19422
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19427,7 +19427,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19427
19427
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
19428
19428
  NPY_DATETIMEUNIT __pyx_r;
19429
19429
 
19430
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1052
19430
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1052
19431
19431
  * returns the unit part of the dtype for a numpy datetime64 object.
19432
19432
  * """
19433
19433
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -19435,7 +19435,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
19435
19435
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
19436
19436
  goto __pyx_L0;
19437
19437
 
19438
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
19438
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
19439
19439
  *
19440
19440
  *
19441
19441
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -22698,7 +22698,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
22698
22698
  __Pyx_GOTREF(__pyx_tuple__8);
22699
22699
  __Pyx_GIVEREF(__pyx_tuple__8);
22700
22700
 
22701
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
22701
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
22702
22702
  * __pyx_import_array()
22703
22703
  * except Exception:
22704
22704
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -22709,7 +22709,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
22709
22709
  __Pyx_GOTREF(__pyx_tuple__9);
22710
22710
  __Pyx_GIVEREF(__pyx_tuple__9);
22711
22711
 
22712
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
22712
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
22713
22713
  * _import_umath()
22714
22714
  * except Exception:
22715
22715
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<