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.
- biotite/__init__.py +1 -1
- biotite/database/pubchem/download.py +23 -23
- biotite/database/pubchem/query.py +7 -7
- biotite/file.py +17 -9
- biotite/sequence/align/banded.c +119 -119
- biotite/sequence/align/banded.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/cigar.py +60 -15
- biotite/sequence/align/kmeralphabet.c +119 -119
- biotite/sequence/align/kmeralphabet.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/kmersimilarity.c +119 -119
- biotite/sequence/align/kmersimilarity.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.cpp +119 -119
- biotite/sequence/align/localgapped.c +119 -119
- biotite/sequence/align/localgapped.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/localungapped.c +119 -119
- biotite/sequence/align/localungapped.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/multiple.c +119 -119
- biotite/sequence/align/multiple.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/pairwise.c +119 -119
- biotite/sequence/align/pairwise.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/permutation.c +119 -119
- biotite/sequence/align/permutation.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/selector.c +119 -119
- biotite/sequence/align/selector.cp311-win_amd64.pyd +0 -0
- biotite/sequence/align/tracetable.c +119 -119
- biotite/sequence/align/tracetable.cp311-win_amd64.pyd +0 -0
- biotite/sequence/annotation.py +2 -2
- biotite/sequence/codec.c +119 -119
- biotite/sequence/codec.cp311-win_amd64.pyd +0 -0
- biotite/sequence/io/fasta/convert.py +27 -24
- biotite/sequence/phylo/nj.c +119 -119
- biotite/sequence/phylo/nj.cp311-win_amd64.pyd +0 -0
- biotite/sequence/phylo/tree.c +119 -119
- biotite/sequence/phylo/tree.cp311-win_amd64.pyd +0 -0
- biotite/sequence/phylo/upgma.c +119 -119
- biotite/sequence/phylo/upgma.cp311-win_amd64.pyd +0 -0
- biotite/structure/__init__.py +2 -0
- biotite/structure/bonds.c +1124 -915
- biotite/structure/bonds.cp311-win_amd64.pyd +0 -0
- biotite/structure/celllist.c +119 -119
- biotite/structure/celllist.cp311-win_amd64.pyd +0 -0
- biotite/structure/charges.c +119 -119
- biotite/structure/charges.cp311-win_amd64.pyd +0 -0
- biotite/structure/dotbracket.py +2 -0
- biotite/structure/info/atoms.py +6 -1
- biotite/structure/info/bonds.py +1 -1
- biotite/structure/info/ccd/amino_acids.txt +17 -0
- biotite/structure/info/ccd/carbohydrates.txt +2 -0
- biotite/structure/info/ccd/components.bcif +0 -0
- biotite/structure/info/ccd/nucleotides.txt +1 -0
- biotite/structure/info/misc.py +69 -5
- biotite/structure/integrity.py +19 -70
- biotite/structure/io/ctab.py +12 -106
- biotite/structure/io/general.py +157 -165
- biotite/structure/io/gro/file.py +16 -16
- biotite/structure/io/mmtf/convertarray.c +119 -119
- biotite/structure/io/mmtf/convertarray.cp311-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/convertfile.c +119 -119
- biotite/structure/io/mmtf/convertfile.cp311-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/decode.c +119 -119
- biotite/structure/io/mmtf/decode.cp311-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/encode.c +119 -119
- biotite/structure/io/mmtf/encode.cp311-win_amd64.pyd +0 -0
- biotite/structure/io/mol/__init__.py +4 -2
- biotite/structure/io/mol/convert.py +71 -7
- biotite/structure/io/mol/ctab.py +414 -0
- biotite/structure/io/mol/header.py +116 -0
- biotite/structure/io/mol/{file.py → mol.py} +69 -82
- biotite/structure/io/mol/sdf.py +909 -0
- biotite/structure/io/pdb/file.py +84 -31
- biotite/structure/io/pdb/hybrid36.cp311-win_amd64.pyd +0 -0
- biotite/structure/io/pdbx/__init__.py +0 -1
- biotite/structure/io/pdbx/bcif.py +2 -3
- biotite/structure/io/pdbx/cif.py +9 -5
- biotite/structure/io/pdbx/component.py +4 -1
- biotite/structure/io/pdbx/convert.py +203 -79
- biotite/structure/io/pdbx/encoding.c +119 -119
- biotite/structure/io/pdbx/encoding.cp311-win_amd64.pyd +0 -0
- biotite/structure/repair.py +253 -0
- biotite/structure/sasa.c +119 -119
- biotite/structure/sasa.cp311-win_amd64.pyd +0 -0
- biotite/structure/sequence.py +112 -0
- biotite/structure/superimpose.py +472 -13
- {biotite-0.40.0.dist-info → biotite-0.41.0.dist-info}/METADATA +2 -2
- {biotite-0.40.0.dist-info → biotite-0.41.0.dist-info}/RECORD +89 -85
- biotite/structure/io/pdbx/error.py +0 -14
- {biotite-0.40.0.dist-info → biotite-0.41.0.dist-info}/LICENSE.rst +0 -0
- {biotite-0.40.0.dist-info → biotite-0.41.0.dist-info}/WHEEL +0 -0
- {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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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 # <<<<<<<<<<<<<<
|
|
@@ -1884,7 +1884,7 @@ struct __pyx_MemviewEnum_obj;
|
|
|
1884
1884
|
struct __pyx_memoryview_obj;
|
|
1885
1885
|
struct __pyx_memoryviewslice_obj;
|
|
1886
1886
|
|
|
1887
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1887
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
|
|
1888
1888
|
* ctypedef npy_longdouble longdouble_t
|
|
1889
1889
|
*
|
|
1890
1890
|
* ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
|
|
@@ -1893,7 +1893,7 @@ struct __pyx_memoryviewslice_obj;
|
|
|
1893
1893
|
*/
|
|
1894
1894
|
typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
1895
1895
|
|
|
1896
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1896
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1897
1897
|
*
|
|
1898
1898
|
* ctypedef npy_cfloat cfloat_t
|
|
1899
1899
|
* ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1902,7 +1902,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
|
1902
1902
|
*/
|
|
1903
1903
|
typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
1904
1904
|
|
|
1905
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1905
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
|
|
1906
1906
|
* ctypedef npy_cfloat cfloat_t
|
|
1907
1907
|
* ctypedef npy_cdouble cdouble_t
|
|
1908
1908
|
* ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1911,7 +1911,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
|
1911
1911
|
*/
|
|
1912
1912
|
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
|
|
1913
1913
|
|
|
1914
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1914
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
|
|
1915
1915
|
* ctypedef npy_clongdouble clongdouble_t
|
|
1916
1916
|
*
|
|
1917
1917
|
* ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
|
|
@@ -17835,7 +17835,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
17835
17835
|
return __pyx_r;
|
|
17836
17836
|
}
|
|
17837
17837
|
|
|
17838
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
17838
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
|
|
17839
17839
|
*
|
|
17840
17840
|
* @property
|
|
17841
17841
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -17846,7 +17846,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
17846
17846
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
17847
17847
|
PyObject *__pyx_r;
|
|
17848
17848
|
|
|
17849
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
17849
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
|
|
17850
17850
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
17851
17851
|
* """
|
|
17852
17852
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -17856,7 +17856,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
17856
17856
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
17857
17857
|
goto __pyx_L0;
|
|
17858
17858
|
|
|
17859
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
17859
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
|
|
17860
17860
|
*
|
|
17861
17861
|
* @property
|
|
17862
17862
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -17869,7 +17869,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
17869
17869
|
return __pyx_r;
|
|
17870
17870
|
}
|
|
17871
17871
|
|
|
17872
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
17872
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
|
|
17873
17873
|
*
|
|
17874
17874
|
* @property
|
|
17875
17875
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -17883,7 +17883,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
17883
17883
|
PyArray_Descr *__pyx_t_1;
|
|
17884
17884
|
__Pyx_RefNannySetupContext("descr", 1);
|
|
17885
17885
|
|
|
17886
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
17886
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
|
|
17887
17887
|
* """Returns an owned reference to the dtype of the array.
|
|
17888
17888
|
* """
|
|
17889
17889
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -17896,7 +17896,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
17896
17896
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
17897
17897
|
goto __pyx_L0;
|
|
17898
17898
|
|
|
17899
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
17899
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
|
|
17900
17900
|
*
|
|
17901
17901
|
* @property
|
|
17902
17902
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -17911,7 +17911,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
17911
17911
|
return __pyx_r;
|
|
17912
17912
|
}
|
|
17913
17913
|
|
|
17914
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
17914
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
|
|
17915
17915
|
*
|
|
17916
17916
|
* @property
|
|
17917
17917
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -17922,7 +17922,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
17922
17922
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
17923
17923
|
int __pyx_r;
|
|
17924
17924
|
|
|
17925
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
17925
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
|
|
17926
17926
|
* """Returns the number of dimensions in the array.
|
|
17927
17927
|
* """
|
|
17928
17928
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -17932,7 +17932,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
17932
17932
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
17933
17933
|
goto __pyx_L0;
|
|
17934
17934
|
|
|
17935
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
17935
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
|
|
17936
17936
|
*
|
|
17937
17937
|
* @property
|
|
17938
17938
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -17945,7 +17945,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
17945
17945
|
return __pyx_r;
|
|
17946
17946
|
}
|
|
17947
17947
|
|
|
17948
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
17948
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
|
|
17949
17949
|
*
|
|
17950
17950
|
* @property
|
|
17951
17951
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -17956,7 +17956,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
17956
17956
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
17957
17957
|
npy_intp *__pyx_r;
|
|
17958
17958
|
|
|
17959
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
17959
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
|
|
17960
17960
|
* Can return NULL for 0-dimensional arrays.
|
|
17961
17961
|
* """
|
|
17962
17962
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -17966,7 +17966,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
17966
17966
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
17967
17967
|
goto __pyx_L0;
|
|
17968
17968
|
|
|
17969
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
17969
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
|
|
17970
17970
|
*
|
|
17971
17971
|
* @property
|
|
17972
17972
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -17979,7 +17979,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
17979
17979
|
return __pyx_r;
|
|
17980
17980
|
}
|
|
17981
17981
|
|
|
17982
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
17982
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
|
|
17983
17983
|
*
|
|
17984
17984
|
* @property
|
|
17985
17985
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -17990,7 +17990,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
17990
17990
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
17991
17991
|
npy_intp *__pyx_r;
|
|
17992
17992
|
|
|
17993
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
17993
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
|
|
17994
17994
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
17995
17995
|
* """
|
|
17996
17996
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -18000,7 +18000,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18000
18000
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
18001
18001
|
goto __pyx_L0;
|
|
18002
18002
|
|
|
18003
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18003
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
|
|
18004
18004
|
*
|
|
18005
18005
|
* @property
|
|
18006
18006
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18013,7 +18013,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18013
18013
|
return __pyx_r;
|
|
18014
18014
|
}
|
|
18015
18015
|
|
|
18016
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18016
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
|
|
18017
18017
|
*
|
|
18018
18018
|
* @property
|
|
18019
18019
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18024,7 +18024,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18024
18024
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
18025
18025
|
npy_intp __pyx_r;
|
|
18026
18026
|
|
|
18027
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18027
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
|
|
18028
18028
|
* """Returns the total size (in number of elements) of the array.
|
|
18029
18029
|
* """
|
|
18030
18030
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -18034,7 +18034,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18034
18034
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
18035
18035
|
goto __pyx_L0;
|
|
18036
18036
|
|
|
18037
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18037
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
|
|
18038
18038
|
*
|
|
18039
18039
|
* @property
|
|
18040
18040
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18047,7 +18047,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18047
18047
|
return __pyx_r;
|
|
18048
18048
|
}
|
|
18049
18049
|
|
|
18050
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18050
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
|
|
18051
18051
|
*
|
|
18052
18052
|
* @property
|
|
18053
18053
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18058,7 +18058,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18058
18058
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
18059
18059
|
char *__pyx_r;
|
|
18060
18060
|
|
|
18061
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18061
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
|
|
18062
18062
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
18063
18063
|
* """
|
|
18064
18064
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -18068,7 +18068,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18068
18068
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
18069
18069
|
goto __pyx_L0;
|
|
18070
18070
|
|
|
18071
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18071
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
|
|
18072
18072
|
*
|
|
18073
18073
|
* @property
|
|
18074
18074
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18081,7 +18081,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18081
18081
|
return __pyx_r;
|
|
18082
18082
|
}
|
|
18083
18083
|
|
|
18084
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18084
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
|
|
18085
18085
|
* ctypedef npy_cdouble complex_t
|
|
18086
18086
|
*
|
|
18087
18087
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18098,7 +18098,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18098
18098
|
int __pyx_clineno = 0;
|
|
18099
18099
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
|
|
18100
18100
|
|
|
18101
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18101
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
18102
18102
|
*
|
|
18103
18103
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
18104
18104
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -18112,7 +18112,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18112
18112
|
__pyx_t_1 = 0;
|
|
18113
18113
|
goto __pyx_L0;
|
|
18114
18114
|
|
|
18115
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18115
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
|
|
18116
18116
|
* ctypedef npy_cdouble complex_t
|
|
18117
18117
|
*
|
|
18118
18118
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18131,7 +18131,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18131
18131
|
return __pyx_r;
|
|
18132
18132
|
}
|
|
18133
18133
|
|
|
18134
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18134
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
|
|
18135
18135
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18136
18136
|
*
|
|
18137
18137
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18148,7 +18148,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18148
18148
|
int __pyx_clineno = 0;
|
|
18149
18149
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
|
|
18150
18150
|
|
|
18151
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18151
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
18152
18152
|
*
|
|
18153
18153
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
18154
18154
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -18162,7 +18162,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18162
18162
|
__pyx_t_1 = 0;
|
|
18163
18163
|
goto __pyx_L0;
|
|
18164
18164
|
|
|
18165
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18165
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
|
|
18166
18166
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18167
18167
|
*
|
|
18168
18168
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18181,7 +18181,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18181
18181
|
return __pyx_r;
|
|
18182
18182
|
}
|
|
18183
18183
|
|
|
18184
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18184
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
|
|
18185
18185
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18186
18186
|
*
|
|
18187
18187
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18198,7 +18198,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18198
18198
|
int __pyx_clineno = 0;
|
|
18199
18199
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
|
|
18200
18200
|
|
|
18201
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18201
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
|
|
18202
18202
|
*
|
|
18203
18203
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
18204
18204
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -18212,7 +18212,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18212
18212
|
__pyx_t_1 = 0;
|
|
18213
18213
|
goto __pyx_L0;
|
|
18214
18214
|
|
|
18215
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18215
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
|
|
18216
18216
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18217
18217
|
*
|
|
18218
18218
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18231,7 +18231,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18231
18231
|
return __pyx_r;
|
|
18232
18232
|
}
|
|
18233
18233
|
|
|
18234
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18234
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
|
|
18235
18235
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
18236
18236
|
*
|
|
18237
18237
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -18248,7 +18248,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18248
18248
|
int __pyx_clineno = 0;
|
|
18249
18249
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
|
|
18250
18250
|
|
|
18251
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18251
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
|
|
18252
18252
|
*
|
|
18253
18253
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
18254
18254
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -18262,7 +18262,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18262
18262
|
__pyx_t_1 = 0;
|
|
18263
18263
|
goto __pyx_L0;
|
|
18264
18264
|
|
|
18265
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18265
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
|
|
18266
18266
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
18267
18267
|
*
|
|
18268
18268
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -18281,7 +18281,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18281
18281
|
return __pyx_r;
|
|
18282
18282
|
}
|
|
18283
18283
|
|
|
18284
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18284
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
|
|
18285
18285
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
18286
18286
|
*
|
|
18287
18287
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -18298,7 +18298,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18298
18298
|
int __pyx_clineno = 0;
|
|
18299
18299
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
|
|
18300
18300
|
|
|
18301
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18301
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
18302
18302
|
*
|
|
18303
18303
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
18304
18304
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -18312,7 +18312,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18312
18312
|
__pyx_t_1 = 0;
|
|
18313
18313
|
goto __pyx_L0;
|
|
18314
18314
|
|
|
18315
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18315
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
|
|
18316
18316
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
18317
18317
|
*
|
|
18318
18318
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -18331,7 +18331,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18331
18331
|
return __pyx_r;
|
|
18332
18332
|
}
|
|
18333
18333
|
|
|
18334
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18334
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
|
|
18335
18335
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
18336
18336
|
*
|
|
18337
18337
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -18345,7 +18345,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18345
18345
|
int __pyx_t_1;
|
|
18346
18346
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
|
|
18347
18347
|
|
|
18348
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18348
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
18349
18349
|
*
|
|
18350
18350
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18351
18351
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -18355,7 +18355,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18355
18355
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
18356
18356
|
if (__pyx_t_1) {
|
|
18357
18357
|
|
|
18358
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18358
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
|
|
18359
18359
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18360
18360
|
* if PyDataType_HASSUBARRAY(d):
|
|
18361
18361
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -18367,7 +18367,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18367
18367
|
__pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
|
|
18368
18368
|
goto __pyx_L0;
|
|
18369
18369
|
|
|
18370
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18370
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
18371
18371
|
*
|
|
18372
18372
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18373
18373
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -18376,7 +18376,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18376
18376
|
*/
|
|
18377
18377
|
}
|
|
18378
18378
|
|
|
18379
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18379
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
|
|
18380
18380
|
* return <tuple>d.subarray.shape
|
|
18381
18381
|
* else:
|
|
18382
18382
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -18390,7 +18390,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18390
18390
|
goto __pyx_L0;
|
|
18391
18391
|
}
|
|
18392
18392
|
|
|
18393
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18393
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
|
|
18394
18394
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
18395
18395
|
*
|
|
18396
18396
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -18405,7 +18405,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18405
18405
|
return __pyx_r;
|
|
18406
18406
|
}
|
|
18407
18407
|
|
|
18408
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18408
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
|
|
18409
18409
|
* int _import_umath() except -1
|
|
18410
18410
|
*
|
|
18411
18411
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -18415,7 +18415,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18415
18415
|
|
|
18416
18416
|
static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
|
|
18417
18417
|
|
|
18418
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18418
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
|
|
18419
18419
|
*
|
|
18420
18420
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
18421
18421
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -18424,7 +18424,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18424
18424
|
*/
|
|
18425
18425
|
Py_INCREF(__pyx_v_base);
|
|
18426
18426
|
|
|
18427
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18427
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
|
|
18428
18428
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
18429
18429
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
18430
18430
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -18433,7 +18433,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18433
18433
|
*/
|
|
18434
18434
|
(void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
|
|
18435
18435
|
|
|
18436
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18436
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
|
|
18437
18437
|
* int _import_umath() except -1
|
|
18438
18438
|
*
|
|
18439
18439
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -18444,7 +18444,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18444
18444
|
/* function exit code */
|
|
18445
18445
|
}
|
|
18446
18446
|
|
|
18447
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18447
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
|
|
18448
18448
|
* PyArray_SetBaseObject(arr, base)
|
|
18449
18449
|
*
|
|
18450
18450
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -18459,7 +18459,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18459
18459
|
int __pyx_t_1;
|
|
18460
18460
|
__Pyx_RefNannySetupContext("get_array_base", 1);
|
|
18461
18461
|
|
|
18462
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18462
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
|
|
18463
18463
|
*
|
|
18464
18464
|
* cdef inline object get_array_base(ndarray arr):
|
|
18465
18465
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -18468,7 +18468,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18468
18468
|
*/
|
|
18469
18469
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
18470
18470
|
|
|
18471
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18471
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
|
|
18472
18472
|
* cdef inline object get_array_base(ndarray arr):
|
|
18473
18473
|
* base = PyArray_BASE(arr)
|
|
18474
18474
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -18478,7 +18478,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18478
18478
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
18479
18479
|
if (__pyx_t_1) {
|
|
18480
18480
|
|
|
18481
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18481
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
|
|
18482
18482
|
* base = PyArray_BASE(arr)
|
|
18483
18483
|
* if base is NULL:
|
|
18484
18484
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -18489,7 +18489,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18489
18489
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
18490
18490
|
goto __pyx_L0;
|
|
18491
18491
|
|
|
18492
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18492
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
|
|
18493
18493
|
* cdef inline object get_array_base(ndarray arr):
|
|
18494
18494
|
* base = PyArray_BASE(arr)
|
|
18495
18495
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -18498,7 +18498,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18498
18498
|
*/
|
|
18499
18499
|
}
|
|
18500
18500
|
|
|
18501
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18501
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
|
|
18502
18502
|
* if base is NULL:
|
|
18503
18503
|
* return None
|
|
18504
18504
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -18510,7 +18510,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18510
18510
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
18511
18511
|
goto __pyx_L0;
|
|
18512
18512
|
|
|
18513
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18513
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
|
|
18514
18514
|
* PyArray_SetBaseObject(arr, base)
|
|
18515
18515
|
*
|
|
18516
18516
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -18525,7 +18525,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18525
18525
|
return __pyx_r;
|
|
18526
18526
|
}
|
|
18527
18527
|
|
|
18528
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18528
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
|
|
18529
18529
|
* # Versions of the import_* functions which are more suitable for
|
|
18530
18530
|
* # Cython code.
|
|
18531
18531
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18549,7 +18549,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18549
18549
|
int __pyx_clineno = 0;
|
|
18550
18550
|
__Pyx_RefNannySetupContext("import_array", 1);
|
|
18551
18551
|
|
|
18552
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18552
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
18553
18553
|
* # Cython code.
|
|
18554
18554
|
* cdef inline int import_array() except -1:
|
|
18555
18555
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18565,7 +18565,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18565
18565
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
18566
18566
|
/*try:*/ {
|
|
18567
18567
|
|
|
18568
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18568
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
18569
18569
|
* cdef inline int import_array() except -1:
|
|
18570
18570
|
* try:
|
|
18571
18571
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -18574,7 +18574,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18574
18574
|
*/
|
|
18575
18575
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 984, __pyx_L3_error)
|
|
18576
18576
|
|
|
18577
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18577
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
18578
18578
|
* # Cython code.
|
|
18579
18579
|
* cdef inline int import_array() except -1:
|
|
18580
18580
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18588,7 +18588,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18588
18588
|
goto __pyx_L8_try_end;
|
|
18589
18589
|
__pyx_L3_error:;
|
|
18590
18590
|
|
|
18591
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18591
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
|
|
18592
18592
|
* try:
|
|
18593
18593
|
* __pyx_import_array()
|
|
18594
18594
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -18603,7 +18603,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18603
18603
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
18604
18604
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
18605
18605
|
|
|
18606
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18606
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
|
|
18607
18607
|
* __pyx_import_array()
|
|
18608
18608
|
* except Exception:
|
|
18609
18609
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -18618,7 +18618,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18618
18618
|
}
|
|
18619
18619
|
goto __pyx_L5_except_error;
|
|
18620
18620
|
|
|
18621
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18621
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
18622
18622
|
* # Cython code.
|
|
18623
18623
|
* cdef inline int import_array() except -1:
|
|
18624
18624
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18634,7 +18634,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18634
18634
|
__pyx_L8_try_end:;
|
|
18635
18635
|
}
|
|
18636
18636
|
|
|
18637
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18637
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
|
|
18638
18638
|
* # Versions of the import_* functions which are more suitable for
|
|
18639
18639
|
* # Cython code.
|
|
18640
18640
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18657,7 +18657,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18657
18657
|
return __pyx_r;
|
|
18658
18658
|
}
|
|
18659
18659
|
|
|
18660
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18660
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
|
|
18661
18661
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
18662
18662
|
*
|
|
18663
18663
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18681,7 +18681,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18681
18681
|
int __pyx_clineno = 0;
|
|
18682
18682
|
__Pyx_RefNannySetupContext("import_umath", 1);
|
|
18683
18683
|
|
|
18684
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18684
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
|
|
18685
18685
|
*
|
|
18686
18686
|
* cdef inline int import_umath() except -1:
|
|
18687
18687
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18697,7 +18697,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18697
18697
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
18698
18698
|
/*try:*/ {
|
|
18699
18699
|
|
|
18700
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18700
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
18701
18701
|
* cdef inline int import_umath() except -1:
|
|
18702
18702
|
* try:
|
|
18703
18703
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -18706,7 +18706,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18706
18706
|
*/
|
|
18707
18707
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 990, __pyx_L3_error)
|
|
18708
18708
|
|
|
18709
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18709
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
|
|
18710
18710
|
*
|
|
18711
18711
|
* cdef inline int import_umath() except -1:
|
|
18712
18712
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18720,7 +18720,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18720
18720
|
goto __pyx_L8_try_end;
|
|
18721
18721
|
__pyx_L3_error:;
|
|
18722
18722
|
|
|
18723
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18723
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
|
|
18724
18724
|
* try:
|
|
18725
18725
|
* _import_umath()
|
|
18726
18726
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -18735,7 +18735,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18735
18735
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
18736
18736
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
18737
18737
|
|
|
18738
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18738
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
|
|
18739
18739
|
* _import_umath()
|
|
18740
18740
|
* except Exception:
|
|
18741
18741
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -18750,7 +18750,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18750
18750
|
}
|
|
18751
18751
|
goto __pyx_L5_except_error;
|
|
18752
18752
|
|
|
18753
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18753
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
|
|
18754
18754
|
*
|
|
18755
18755
|
* cdef inline int import_umath() except -1:
|
|
18756
18756
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18766,7 +18766,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18766
18766
|
__pyx_L8_try_end:;
|
|
18767
18767
|
}
|
|
18768
18768
|
|
|
18769
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18769
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
|
|
18770
18770
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
18771
18771
|
*
|
|
18772
18772
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18789,7 +18789,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18789
18789
|
return __pyx_r;
|
|
18790
18790
|
}
|
|
18791
18791
|
|
|
18792
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18792
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
|
|
18793
18793
|
* raise ImportError("numpy.core.umath failed to import")
|
|
18794
18794
|
*
|
|
18795
18795
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18813,7 +18813,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
18813
18813
|
int __pyx_clineno = 0;
|
|
18814
18814
|
__Pyx_RefNannySetupContext("import_ufunc", 1);
|
|
18815
18815
|
|
|
18816
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18816
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
18817
18817
|
*
|
|
18818
18818
|
* cdef inline int import_ufunc() except -1:
|
|
18819
18819
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18829,7 +18829,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
18829
18829
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
18830
18830
|
/*try:*/ {
|
|
18831
18831
|
|
|
18832
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18832
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
18833
18833
|
* cdef inline int import_ufunc() except -1:
|
|
18834
18834
|
* try:
|
|
18835
18835
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -18838,7 +18838,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
18838
18838
|
*/
|
|
18839
18839
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 996, __pyx_L3_error)
|
|
18840
18840
|
|
|
18841
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18841
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
18842
18842
|
*
|
|
18843
18843
|
* cdef inline int import_ufunc() except -1:
|
|
18844
18844
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18852,7 +18852,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
18852
18852
|
goto __pyx_L8_try_end;
|
|
18853
18853
|
__pyx_L3_error:;
|
|
18854
18854
|
|
|
18855
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18855
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
|
|
18856
18856
|
* try:
|
|
18857
18857
|
* _import_umath()
|
|
18858
18858
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -18867,7 +18867,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
18867
18867
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
18868
18868
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
18869
18869
|
|
|
18870
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18870
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
|
|
18871
18871
|
* _import_umath()
|
|
18872
18872
|
* except Exception:
|
|
18873
18873
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -18882,7 +18882,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
18882
18882
|
}
|
|
18883
18883
|
goto __pyx_L5_except_error;
|
|
18884
18884
|
|
|
18885
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18885
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
18886
18886
|
*
|
|
18887
18887
|
* cdef inline int import_ufunc() except -1:
|
|
18888
18888
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18898,7 +18898,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
18898
18898
|
__pyx_L8_try_end:;
|
|
18899
18899
|
}
|
|
18900
18900
|
|
|
18901
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18901
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
|
|
18902
18902
|
* raise ImportError("numpy.core.umath failed to import")
|
|
18903
18903
|
*
|
|
18904
18904
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18921,7 +18921,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
18921
18921
|
return __pyx_r;
|
|
18922
18922
|
}
|
|
18923
18923
|
|
|
18924
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18924
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
|
|
18925
18925
|
*
|
|
18926
18926
|
*
|
|
18927
18927
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -18932,7 +18932,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
18932
18932
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
18933
18933
|
int __pyx_r;
|
|
18934
18934
|
|
|
18935
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18935
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
|
|
18936
18936
|
* bool
|
|
18937
18937
|
* """
|
|
18938
18938
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -18942,7 +18942,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
18942
18942
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
18943
18943
|
goto __pyx_L0;
|
|
18944
18944
|
|
|
18945
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18945
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
|
|
18946
18946
|
*
|
|
18947
18947
|
*
|
|
18948
18948
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -18955,7 +18955,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
18955
18955
|
return __pyx_r;
|
|
18956
18956
|
}
|
|
18957
18957
|
|
|
18958
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18958
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
18959
18959
|
*
|
|
18960
18960
|
*
|
|
18961
18961
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -18966,7 +18966,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
18966
18966
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
18967
18967
|
int __pyx_r;
|
|
18968
18968
|
|
|
18969
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18969
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
|
|
18970
18970
|
* bool
|
|
18971
18971
|
* """
|
|
18972
18972
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -18976,7 +18976,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
18976
18976
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
18977
18977
|
goto __pyx_L0;
|
|
18978
18978
|
|
|
18979
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18979
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
18980
18980
|
*
|
|
18981
18981
|
*
|
|
18982
18982
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -18989,7 +18989,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
18989
18989
|
return __pyx_r;
|
|
18990
18990
|
}
|
|
18991
18991
|
|
|
18992
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18992
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
|
|
18993
18993
|
*
|
|
18994
18994
|
*
|
|
18995
18995
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19000,7 +19000,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19000
19000
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
19001
19001
|
npy_datetime __pyx_r;
|
|
19002
19002
|
|
|
19003
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19003
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
|
|
19004
19004
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
19005
19005
|
* """
|
|
19006
19006
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19010,7 +19010,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19010
19010
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
19011
19011
|
goto __pyx_L0;
|
|
19012
19012
|
|
|
19013
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19013
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
|
|
19014
19014
|
*
|
|
19015
19015
|
*
|
|
19016
19016
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19023,7 +19023,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19023
19023
|
return __pyx_r;
|
|
19024
19024
|
}
|
|
19025
19025
|
|
|
19026
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19026
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
|
|
19027
19027
|
*
|
|
19028
19028
|
*
|
|
19029
19029
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19034,7 +19034,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19034
19034
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
19035
19035
|
npy_timedelta __pyx_r;
|
|
19036
19036
|
|
|
19037
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19037
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1045
|
|
19038
19038
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
19039
19039
|
* """
|
|
19040
19040
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19044,7 +19044,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19044
19044
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
19045
19045
|
goto __pyx_L0;
|
|
19046
19046
|
|
|
19047
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19047
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
|
|
19048
19048
|
*
|
|
19049
19049
|
*
|
|
19050
19050
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19057,7 +19057,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19057
19057
|
return __pyx_r;
|
|
19058
19058
|
}
|
|
19059
19059
|
|
|
19060
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19060
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
|
|
19061
19061
|
*
|
|
19062
19062
|
*
|
|
19063
19063
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19068,7 +19068,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19068
19068
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
19069
19069
|
NPY_DATETIMEUNIT __pyx_r;
|
|
19070
19070
|
|
|
19071
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19071
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1052
|
|
19072
19072
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
19073
19073
|
* """
|
|
19074
19074
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -19076,7 +19076,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
19076
19076
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
19077
19077
|
goto __pyx_L0;
|
|
19078
19078
|
|
|
19079
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19079
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
|
|
19080
19080
|
*
|
|
19081
19081
|
*
|
|
19082
19082
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -23154,7 +23154,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
23154
23154
|
__Pyx_GOTREF(__pyx_tuple__8);
|
|
23155
23155
|
__Pyx_GIVEREF(__pyx_tuple__8);
|
|
23156
23156
|
|
|
23157
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
23157
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
|
|
23158
23158
|
* __pyx_import_array()
|
|
23159
23159
|
* except Exception:
|
|
23160
23160
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -23165,7 +23165,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
23165
23165
|
__Pyx_GOTREF(__pyx_tuple__9);
|
|
23166
23166
|
__Pyx_GIVEREF(__pyx_tuple__9);
|
|
23167
23167
|
|
|
23168
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
23168
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
|
|
23169
23169
|
* _import_umath()
|
|
23170
23170
|
* except Exception:
|
|
23171
23171
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|