biotite 0.40.0__cp310-cp310-win_amd64.whl → 0.41.0__cp310-cp310-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of biotite might be problematic. Click here for more details.
- 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.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/cigar.py +60 -15
- biotite/sequence/align/kmeralphabet.c +119 -119
- biotite/sequence/align/kmeralphabet.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/kmersimilarity.c +119 -119
- biotite/sequence/align/kmersimilarity.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.cpp +119 -119
- biotite/sequence/align/localgapped.c +119 -119
- biotite/sequence/align/localgapped.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/localungapped.c +119 -119
- biotite/sequence/align/localungapped.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/multiple.c +119 -119
- biotite/sequence/align/multiple.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/pairwise.c +119 -119
- biotite/sequence/align/pairwise.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/permutation.c +119 -119
- biotite/sequence/align/permutation.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/selector.c +119 -119
- biotite/sequence/align/selector.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/tracetable.c +119 -119
- biotite/sequence/align/tracetable.cp310-win_amd64.pyd +0 -0
- biotite/sequence/annotation.py +2 -2
- biotite/sequence/codec.c +119 -119
- biotite/sequence/codec.cp310-win_amd64.pyd +0 -0
- biotite/sequence/io/fasta/convert.py +27 -24
- biotite/sequence/phylo/nj.c +119 -119
- biotite/sequence/phylo/nj.cp310-win_amd64.pyd +0 -0
- biotite/sequence/phylo/tree.c +119 -119
- biotite/sequence/phylo/tree.cp310-win_amd64.pyd +0 -0
- biotite/sequence/phylo/upgma.c +119 -119
- biotite/sequence/phylo/upgma.cp310-win_amd64.pyd +0 -0
- biotite/structure/__init__.py +2 -0
- biotite/structure/bonds.c +1124 -915
- biotite/structure/bonds.cp310-win_amd64.pyd +0 -0
- biotite/structure/celllist.c +119 -119
- biotite/structure/celllist.cp310-win_amd64.pyd +0 -0
- biotite/structure/charges.c +119 -119
- biotite/structure/charges.cp310-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.cp310-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/convertfile.c +119 -119
- biotite/structure/io/mmtf/convertfile.cp310-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/decode.c +119 -119
- biotite/structure/io/mmtf/decode.cp310-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/encode.c +119 -119
- biotite/structure/io/mmtf/encode.cp310-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.cp310-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.cp310-win_amd64.pyd +0 -0
- biotite/structure/repair.py +253 -0
- biotite/structure/sasa.c +119 -119
- biotite/structure/sasa.cp310-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-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
|
|
1667
1667
|
* # in Cython to enable them only on the right systems.
|
|
1668
1668
|
*
|
|
1669
1669
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
|
@@ -1672,7 +1672,7 @@ typedef struct {
|
|
|
1672
1672
|
*/
|
|
1673
1673
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1674
1674
|
|
|
1675
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1675
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
|
|
1676
1676
|
*
|
|
1677
1677
|
* ctypedef npy_int8 int8_t
|
|
1678
1678
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
|
@@ -1681,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
|
1681
1681
|
*/
|
|
1682
1682
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1683
1683
|
|
|
1684
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1684
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
|
|
1685
1685
|
* ctypedef npy_int8 int8_t
|
|
1686
1686
|
* ctypedef npy_int16 int16_t
|
|
1687
1687
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
|
@@ -1690,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
|
1690
1690
|
*/
|
|
1691
1691
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1692
1692
|
|
|
1693
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1693
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":735
|
|
1694
1694
|
* ctypedef npy_int16 int16_t
|
|
1695
1695
|
* ctypedef npy_int32 int32_t
|
|
1696
1696
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
|
@@ -1699,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
|
1699
1699
|
*/
|
|
1700
1700
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1701
1701
|
|
|
1702
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1702
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
|
|
1703
1703
|
* #ctypedef npy_int128 int128_t
|
|
1704
1704
|
*
|
|
1705
1705
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
|
@@ -1708,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
|
1708
1708
|
*/
|
|
1709
1709
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1710
1710
|
|
|
1711
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1711
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
|
|
1712
1712
|
*
|
|
1713
1713
|
* ctypedef npy_uint8 uint8_t
|
|
1714
1714
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
|
@@ -1717,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
|
1717
1717
|
*/
|
|
1718
1718
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1719
1719
|
|
|
1720
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1720
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
|
|
1721
1721
|
* ctypedef npy_uint8 uint8_t
|
|
1722
1722
|
* ctypedef npy_uint16 uint16_t
|
|
1723
1723
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
|
@@ -1726,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
|
1726
1726
|
*/
|
|
1727
1727
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1728
1728
|
|
|
1729
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1729
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":742
|
|
1730
1730
|
* ctypedef npy_uint16 uint16_t
|
|
1731
1731
|
* ctypedef npy_uint32 uint32_t
|
|
1732
1732
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
|
@@ -1735,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
|
1735
1735
|
*/
|
|
1736
1736
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1737
1737
|
|
|
1738
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1738
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
|
|
1739
1739
|
* #ctypedef npy_uint128 uint128_t
|
|
1740
1740
|
*
|
|
1741
1741
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
|
@@ -1744,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
|
1744
1744
|
*/
|
|
1745
1745
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1746
1746
|
|
|
1747
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1747
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":747
|
|
1748
1748
|
*
|
|
1749
1749
|
* ctypedef npy_float32 float32_t
|
|
1750
1750
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
|
@@ -1753,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
|
1753
1753
|
*/
|
|
1754
1754
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1755
1755
|
|
|
1756
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1756
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
|
|
1757
1757
|
* # The int types are mapped a bit surprising --
|
|
1758
1758
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1759
1759
|
* ctypedef npy_long int_t # <<<<<<<<<<<<<<
|
|
@@ -1762,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
|
1762
1762
|
*/
|
|
1763
1763
|
typedef npy_long __pyx_t_5numpy_int_t;
|
|
1764
1764
|
|
|
1765
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1765
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
|
|
1766
1766
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1767
1767
|
* ctypedef npy_long int_t
|
|
1768
1768
|
* ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
|
|
@@ -1771,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
|
|
|
1771
1771
|
*/
|
|
1772
1772
|
typedef npy_longlong __pyx_t_5numpy_long_t;
|
|
1773
1773
|
|
|
1774
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1774
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
|
|
1775
1775
|
* ctypedef npy_long int_t
|
|
1776
1776
|
* ctypedef npy_longlong long_t
|
|
1777
1777
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
|
@@ -1780,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
|
|
|
1780
1780
|
*/
|
|
1781
1781
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1782
1782
|
|
|
1783
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1783
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
|
|
1784
1784
|
* ctypedef npy_longlong longlong_t
|
|
1785
1785
|
*
|
|
1786
1786
|
* ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
|
|
@@ -1789,7 +1789,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
|
1789
1789
|
*/
|
|
1790
1790
|
typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
1791
1791
|
|
|
1792
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1792
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
|
|
1793
1793
|
*
|
|
1794
1794
|
* ctypedef npy_ulong uint_t
|
|
1795
1795
|
* ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
|
|
@@ -1798,7 +1798,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
|
1798
1798
|
*/
|
|
1799
1799
|
typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
|
|
1800
1800
|
|
|
1801
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1801
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":762
|
|
1802
1802
|
* ctypedef npy_ulong uint_t
|
|
1803
1803
|
* ctypedef npy_ulonglong ulong_t
|
|
1804
1804
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
|
@@ -1807,7 +1807,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
|
|
|
1807
1807
|
*/
|
|
1808
1808
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1809
1809
|
|
|
1810
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1810
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
|
|
1811
1811
|
* ctypedef npy_ulonglong ulonglong_t
|
|
1812
1812
|
*
|
|
1813
1813
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
|
@@ -1816,7 +1816,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
|
1816
1816
|
*/
|
|
1817
1817
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1818
1818
|
|
|
1819
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1819
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
|
|
1820
1820
|
*
|
|
1821
1821
|
* ctypedef npy_intp intp_t
|
|
1822
1822
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
|
@@ -1825,7 +1825,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
|
1825
1825
|
*/
|
|
1826
1826
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1827
1827
|
|
|
1828
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1828
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
|
|
1829
1829
|
* ctypedef npy_uintp uintp_t
|
|
1830
1830
|
*
|
|
1831
1831
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
|
@@ -1834,7 +1834,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
|
1834
1834
|
*/
|
|
1835
1835
|
typedef npy_double __pyx_t_5numpy_float_t;
|
|
1836
1836
|
|
|
1837
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1837
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
|
|
1838
1838
|
*
|
|
1839
1839
|
* ctypedef npy_double float_t
|
|
1840
1840
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
|
@@ -1843,7 +1843,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
|
1843
1843
|
*/
|
|
1844
1844
|
typedef npy_double __pyx_t_5numpy_double_t;
|
|
1845
1845
|
|
|
1846
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1846
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
|
|
1847
1847
|
* ctypedef npy_double float_t
|
|
1848
1848
|
* ctypedef npy_double double_t
|
|
1849
1849
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1938,7 +1938,7 @@ struct __pyx_MemviewEnum_obj;
|
|
|
1938
1938
|
struct __pyx_memoryview_obj;
|
|
1939
1939
|
struct __pyx_memoryviewslice_obj;
|
|
1940
1940
|
|
|
1941
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1941
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1942
1942
|
* ctypedef npy_longdouble longdouble_t
|
|
1943
1943
|
*
|
|
1944
1944
|
* ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
|
|
@@ -1947,7 +1947,7 @@ struct __pyx_memoryviewslice_obj;
|
|
|
1947
1947
|
*/
|
|
1948
1948
|
typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
1949
1949
|
|
|
1950
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1950
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
|
|
1951
1951
|
*
|
|
1952
1952
|
* ctypedef npy_cfloat cfloat_t
|
|
1953
1953
|
* ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1956,7 +1956,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
|
1956
1956
|
*/
|
|
1957
1957
|
typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
1958
1958
|
|
|
1959
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1959
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
|
|
1960
1960
|
* ctypedef npy_cfloat cfloat_t
|
|
1961
1961
|
* ctypedef npy_cdouble cdouble_t
|
|
1962
1962
|
* ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1965,7 +1965,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
|
1965
1965
|
*/
|
|
1966
1966
|
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
|
|
1967
1967
|
|
|
1968
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1968
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":775
|
|
1969
1969
|
* ctypedef npy_clongdouble clongdouble_t
|
|
1970
1970
|
*
|
|
1971
1971
|
* ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
|
|
@@ -18643,7 +18643,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18643
18643
|
return __pyx_r;
|
|
18644
18644
|
}
|
|
18645
18645
|
|
|
18646
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18646
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
|
|
18647
18647
|
*
|
|
18648
18648
|
* @property
|
|
18649
18649
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18654,7 +18654,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18654
18654
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
18655
18655
|
PyObject *__pyx_r;
|
|
18656
18656
|
|
|
18657
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18657
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":249
|
|
18658
18658
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
18659
18659
|
* """
|
|
18660
18660
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -18664,7 +18664,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18664
18664
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
18665
18665
|
goto __pyx_L0;
|
|
18666
18666
|
|
|
18667
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18667
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
|
|
18668
18668
|
*
|
|
18669
18669
|
* @property
|
|
18670
18670
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18677,7 +18677,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18677
18677
|
return __pyx_r;
|
|
18678
18678
|
}
|
|
18679
18679
|
|
|
18680
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18680
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
|
|
18681
18681
|
*
|
|
18682
18682
|
* @property
|
|
18683
18683
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18691,7 +18691,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18691
18691
|
PyArray_Descr *__pyx_t_1;
|
|
18692
18692
|
__Pyx_RefNannySetupContext("descr", 1);
|
|
18693
18693
|
|
|
18694
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18694
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":255
|
|
18695
18695
|
* """Returns an owned reference to the dtype of the array.
|
|
18696
18696
|
* """
|
|
18697
18697
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -18704,7 +18704,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18704
18704
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
18705
18705
|
goto __pyx_L0;
|
|
18706
18706
|
|
|
18707
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18707
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
|
|
18708
18708
|
*
|
|
18709
18709
|
* @property
|
|
18710
18710
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18719,7 +18719,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18719
18719
|
return __pyx_r;
|
|
18720
18720
|
}
|
|
18721
18721
|
|
|
18722
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18722
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
|
|
18723
18723
|
*
|
|
18724
18724
|
* @property
|
|
18725
18725
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18730,7 +18730,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18730
18730
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
18731
18731
|
int __pyx_r;
|
|
18732
18732
|
|
|
18733
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18733
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":261
|
|
18734
18734
|
* """Returns the number of dimensions in the array.
|
|
18735
18735
|
* """
|
|
18736
18736
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -18740,7 +18740,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18740
18740
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
18741
18741
|
goto __pyx_L0;
|
|
18742
18742
|
|
|
18743
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18743
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
|
|
18744
18744
|
*
|
|
18745
18745
|
* @property
|
|
18746
18746
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18753,7 +18753,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18753
18753
|
return __pyx_r;
|
|
18754
18754
|
}
|
|
18755
18755
|
|
|
18756
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18756
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
|
|
18757
18757
|
*
|
|
18758
18758
|
* @property
|
|
18759
18759
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18764,7 +18764,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18764
18764
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
18765
18765
|
npy_intp *__pyx_r;
|
|
18766
18766
|
|
|
18767
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18767
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":269
|
|
18768
18768
|
* Can return NULL for 0-dimensional arrays.
|
|
18769
18769
|
* """
|
|
18770
18770
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -18774,7 +18774,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18774
18774
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
18775
18775
|
goto __pyx_L0;
|
|
18776
18776
|
|
|
18777
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18777
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
|
|
18778
18778
|
*
|
|
18779
18779
|
* @property
|
|
18780
18780
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18787,7 +18787,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18787
18787
|
return __pyx_r;
|
|
18788
18788
|
}
|
|
18789
18789
|
|
|
18790
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18790
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
|
|
18791
18791
|
*
|
|
18792
18792
|
* @property
|
|
18793
18793
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18798,7 +18798,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18798
18798
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
18799
18799
|
npy_intp *__pyx_r;
|
|
18800
18800
|
|
|
18801
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18801
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":276
|
|
18802
18802
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
18803
18803
|
* """
|
|
18804
18804
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -18808,7 +18808,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18808
18808
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
18809
18809
|
goto __pyx_L0;
|
|
18810
18810
|
|
|
18811
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18811
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
|
|
18812
18812
|
*
|
|
18813
18813
|
* @property
|
|
18814
18814
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18821,7 +18821,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18821
18821
|
return __pyx_r;
|
|
18822
18822
|
}
|
|
18823
18823
|
|
|
18824
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18824
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
|
|
18825
18825
|
*
|
|
18826
18826
|
* @property
|
|
18827
18827
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18832,7 +18832,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18832
18832
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
18833
18833
|
npy_intp __pyx_r;
|
|
18834
18834
|
|
|
18835
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18835
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":282
|
|
18836
18836
|
* """Returns the total size (in number of elements) of the array.
|
|
18837
18837
|
* """
|
|
18838
18838
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -18842,7 +18842,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18842
18842
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
18843
18843
|
goto __pyx_L0;
|
|
18844
18844
|
|
|
18845
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18845
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
|
|
18846
18846
|
*
|
|
18847
18847
|
* @property
|
|
18848
18848
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18855,7 +18855,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18855
18855
|
return __pyx_r;
|
|
18856
18856
|
}
|
|
18857
18857
|
|
|
18858
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18858
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
18859
18859
|
*
|
|
18860
18860
|
* @property
|
|
18861
18861
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18866,7 +18866,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18866
18866
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
18867
18867
|
char *__pyx_r;
|
|
18868
18868
|
|
|
18869
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18869
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":291
|
|
18870
18870
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
18871
18871
|
* """
|
|
18872
18872
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -18876,7 +18876,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18876
18876
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
18877
18877
|
goto __pyx_L0;
|
|
18878
18878
|
|
|
18879
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18879
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
18880
18880
|
*
|
|
18881
18881
|
* @property
|
|
18882
18882
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18889,7 +18889,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18889
18889
|
return __pyx_r;
|
|
18890
18890
|
}
|
|
18891
18891
|
|
|
18892
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18892
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
18893
18893
|
* ctypedef npy_cdouble complex_t
|
|
18894
18894
|
*
|
|
18895
18895
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18906,7 +18906,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18906
18906
|
int __pyx_clineno = 0;
|
|
18907
18907
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
|
|
18908
18908
|
|
|
18909
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18909
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":778
|
|
18910
18910
|
*
|
|
18911
18911
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
18912
18912
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -18920,7 +18920,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18920
18920
|
__pyx_t_1 = 0;
|
|
18921
18921
|
goto __pyx_L0;
|
|
18922
18922
|
|
|
18923
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18923
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
18924
18924
|
* ctypedef npy_cdouble complex_t
|
|
18925
18925
|
*
|
|
18926
18926
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18939,7 +18939,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18939
18939
|
return __pyx_r;
|
|
18940
18940
|
}
|
|
18941
18941
|
|
|
18942
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18942
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
18943
18943
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18944
18944
|
*
|
|
18945
18945
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18956,7 +18956,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18956
18956
|
int __pyx_clineno = 0;
|
|
18957
18957
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
|
|
18958
18958
|
|
|
18959
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18959
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":781
|
|
18960
18960
|
*
|
|
18961
18961
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
18962
18962
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -18970,7 +18970,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18970
18970
|
__pyx_t_1 = 0;
|
|
18971
18971
|
goto __pyx_L0;
|
|
18972
18972
|
|
|
18973
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18973
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
18974
18974
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18975
18975
|
*
|
|
18976
18976
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18989,7 +18989,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
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-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
|
|
18993
18993
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18994
18994
|
*
|
|
18995
18995
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -19006,7 +19006,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19006
19006
|
int __pyx_clineno = 0;
|
|
19007
19007
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
|
|
19008
19008
|
|
|
19009
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19009
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":784
|
|
19010
19010
|
*
|
|
19011
19011
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
19012
19012
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -19020,7 +19020,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19020
19020
|
__pyx_t_1 = 0;
|
|
19021
19021
|
goto __pyx_L0;
|
|
19022
19022
|
|
|
19023
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19023
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
|
|
19024
19024
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
19025
19025
|
*
|
|
19026
19026
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -19039,7 +19039,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19039
19039
|
return __pyx_r;
|
|
19040
19040
|
}
|
|
19041
19041
|
|
|
19042
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19042
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
|
|
19043
19043
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
19044
19044
|
*
|
|
19045
19045
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -19056,7 +19056,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19056
19056
|
int __pyx_clineno = 0;
|
|
19057
19057
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
|
|
19058
19058
|
|
|
19059
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19059
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":787
|
|
19060
19060
|
*
|
|
19061
19061
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
19062
19062
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -19070,7 +19070,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19070
19070
|
__pyx_t_1 = 0;
|
|
19071
19071
|
goto __pyx_L0;
|
|
19072
19072
|
|
|
19073
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19073
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
|
|
19074
19074
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
19075
19075
|
*
|
|
19076
19076
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -19089,7 +19089,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19089
19089
|
return __pyx_r;
|
|
19090
19090
|
}
|
|
19091
19091
|
|
|
19092
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19092
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
19093
19093
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
19094
19094
|
*
|
|
19095
19095
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -19106,7 +19106,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19106
19106
|
int __pyx_clineno = 0;
|
|
19107
19107
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
|
|
19108
19108
|
|
|
19109
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19109
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
|
|
19110
19110
|
*
|
|
19111
19111
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
19112
19112
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -19120,7 +19120,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19120
19120
|
__pyx_t_1 = 0;
|
|
19121
19121
|
goto __pyx_L0;
|
|
19122
19122
|
|
|
19123
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19123
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
19124
19124
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
19125
19125
|
*
|
|
19126
19126
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -19139,7 +19139,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19139
19139
|
return __pyx_r;
|
|
19140
19140
|
}
|
|
19141
19141
|
|
|
19142
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19142
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
19143
19143
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
19144
19144
|
*
|
|
19145
19145
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -19153,7 +19153,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19153
19153
|
int __pyx_t_1;
|
|
19154
19154
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
|
|
19155
19155
|
|
|
19156
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19156
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
|
|
19157
19157
|
*
|
|
19158
19158
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19159
19159
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -19163,7 +19163,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19163
19163
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
19164
19164
|
if (__pyx_t_1) {
|
|
19165
19165
|
|
|
19166
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19166
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":794
|
|
19167
19167
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19168
19168
|
* if PyDataType_HASSUBARRAY(d):
|
|
19169
19169
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -19175,7 +19175,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19175
19175
|
__pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
|
|
19176
19176
|
goto __pyx_L0;
|
|
19177
19177
|
|
|
19178
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19178
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
|
|
19179
19179
|
*
|
|
19180
19180
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19181
19181
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -19184,7 +19184,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19184
19184
|
*/
|
|
19185
19185
|
}
|
|
19186
19186
|
|
|
19187
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19187
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":796
|
|
19188
19188
|
* return <tuple>d.subarray.shape
|
|
19189
19189
|
* else:
|
|
19190
19190
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -19198,7 +19198,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19198
19198
|
goto __pyx_L0;
|
|
19199
19199
|
}
|
|
19200
19200
|
|
|
19201
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19201
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
19202
19202
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
19203
19203
|
*
|
|
19204
19204
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -19213,7 +19213,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19213
19213
|
return __pyx_r;
|
|
19214
19214
|
}
|
|
19215
19215
|
|
|
19216
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19216
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
|
|
19217
19217
|
* int _import_umath() except -1
|
|
19218
19218
|
*
|
|
19219
19219
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -19223,7 +19223,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19223
19223
|
|
|
19224
19224
|
static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
|
|
19225
19225
|
|
|
19226
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19226
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
|
|
19227
19227
|
*
|
|
19228
19228
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
19229
19229
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -19232,7 +19232,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19232
19232
|
*/
|
|
19233
19233
|
Py_INCREF(__pyx_v_base);
|
|
19234
19234
|
|
|
19235
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19235
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
|
|
19236
19236
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
19237
19237
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
19238
19238
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -19241,7 +19241,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19241
19241
|
*/
|
|
19242
19242
|
(void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
|
|
19243
19243
|
|
|
19244
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19244
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
|
|
19245
19245
|
* int _import_umath() except -1
|
|
19246
19246
|
*
|
|
19247
19247
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -19252,7 +19252,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19252
19252
|
/* function exit code */
|
|
19253
19253
|
}
|
|
19254
19254
|
|
|
19255
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19255
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
|
|
19256
19256
|
* PyArray_SetBaseObject(arr, base)
|
|
19257
19257
|
*
|
|
19258
19258
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19267,7 +19267,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19267
19267
|
int __pyx_t_1;
|
|
19268
19268
|
__Pyx_RefNannySetupContext("get_array_base", 1);
|
|
19269
19269
|
|
|
19270
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19270
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
|
|
19271
19271
|
*
|
|
19272
19272
|
* cdef inline object get_array_base(ndarray arr):
|
|
19273
19273
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -19276,7 +19276,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19276
19276
|
*/
|
|
19277
19277
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
19278
19278
|
|
|
19279
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19279
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
|
|
19280
19280
|
* cdef inline object get_array_base(ndarray arr):
|
|
19281
19281
|
* base = PyArray_BASE(arr)
|
|
19282
19282
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19286,7 +19286,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19286
19286
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
19287
19287
|
if (__pyx_t_1) {
|
|
19288
19288
|
|
|
19289
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19289
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
|
|
19290
19290
|
* base = PyArray_BASE(arr)
|
|
19291
19291
|
* if base is NULL:
|
|
19292
19292
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -19297,7 +19297,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19297
19297
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
19298
19298
|
goto __pyx_L0;
|
|
19299
19299
|
|
|
19300
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19300
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
|
|
19301
19301
|
* cdef inline object get_array_base(ndarray arr):
|
|
19302
19302
|
* base = PyArray_BASE(arr)
|
|
19303
19303
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19306,7 +19306,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19306
19306
|
*/
|
|
19307
19307
|
}
|
|
19308
19308
|
|
|
19309
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19309
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":979
|
|
19310
19310
|
* if base is NULL:
|
|
19311
19311
|
* return None
|
|
19312
19312
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -19318,7 +19318,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19318
19318
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
19319
19319
|
goto __pyx_L0;
|
|
19320
19320
|
|
|
19321
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19321
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
|
|
19322
19322
|
* PyArray_SetBaseObject(arr, base)
|
|
19323
19323
|
*
|
|
19324
19324
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19333,7 +19333,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19333
19333
|
return __pyx_r;
|
|
19334
19334
|
}
|
|
19335
19335
|
|
|
19336
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19336
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19337
19337
|
* # Versions of the import_* functions which are more suitable for
|
|
19338
19338
|
* # Cython code.
|
|
19339
19339
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19357,7 +19357,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19357
19357
|
int __pyx_clineno = 0;
|
|
19358
19358
|
__Pyx_RefNannySetupContext("import_array", 1);
|
|
19359
19359
|
|
|
19360
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19360
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19361
19361
|
* # Cython code.
|
|
19362
19362
|
* cdef inline int import_array() except -1:
|
|
19363
19363
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19373,7 +19373,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19373
19373
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19374
19374
|
/*try:*/ {
|
|
19375
19375
|
|
|
19376
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19376
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
|
|
19377
19377
|
* cdef inline int import_array() except -1:
|
|
19378
19378
|
* try:
|
|
19379
19379
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -19382,7 +19382,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19382
19382
|
*/
|
|
19383
19383
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 985, __pyx_L3_error)
|
|
19384
19384
|
|
|
19385
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19385
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19386
19386
|
* # Cython code.
|
|
19387
19387
|
* cdef inline int import_array() except -1:
|
|
19388
19388
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19396,7 +19396,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19396
19396
|
goto __pyx_L8_try_end;
|
|
19397
19397
|
__pyx_L3_error:;
|
|
19398
19398
|
|
|
19399
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19399
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
|
|
19400
19400
|
* try:
|
|
19401
19401
|
* __pyx_import_array()
|
|
19402
19402
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19411,7 +19411,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19411
19411
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19412
19412
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19413
19413
|
|
|
19414
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19414
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
19415
19415
|
* __pyx_import_array()
|
|
19416
19416
|
* except Exception:
|
|
19417
19417
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19426,7 +19426,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19426
19426
|
}
|
|
19427
19427
|
goto __pyx_L5_except_error;
|
|
19428
19428
|
|
|
19429
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19429
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19430
19430
|
* # Cython code.
|
|
19431
19431
|
* cdef inline int import_array() except -1:
|
|
19432
19432
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19442,7 +19442,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19442
19442
|
__pyx_L8_try_end:;
|
|
19443
19443
|
}
|
|
19444
19444
|
|
|
19445
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19445
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19446
19446
|
* # Versions of the import_* functions which are more suitable for
|
|
19447
19447
|
* # Cython code.
|
|
19448
19448
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19465,7 +19465,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19465
19465
|
return __pyx_r;
|
|
19466
19466
|
}
|
|
19467
19467
|
|
|
19468
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19468
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19469
19469
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19470
19470
|
*
|
|
19471
19471
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19489,7 +19489,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19489
19489
|
int __pyx_clineno = 0;
|
|
19490
19490
|
__Pyx_RefNannySetupContext("import_umath", 1);
|
|
19491
19491
|
|
|
19492
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19492
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19493
19493
|
*
|
|
19494
19494
|
* cdef inline int import_umath() except -1:
|
|
19495
19495
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19505,7 +19505,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19505
19505
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19506
19506
|
/*try:*/ {
|
|
19507
19507
|
|
|
19508
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19508
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
|
|
19509
19509
|
* cdef inline int import_umath() except -1:
|
|
19510
19510
|
* try:
|
|
19511
19511
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19514,7 +19514,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19514
19514
|
*/
|
|
19515
19515
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 991, __pyx_L3_error)
|
|
19516
19516
|
|
|
19517
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19517
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19518
19518
|
*
|
|
19519
19519
|
* cdef inline int import_umath() except -1:
|
|
19520
19520
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19528,7 +19528,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19528
19528
|
goto __pyx_L8_try_end;
|
|
19529
19529
|
__pyx_L3_error:;
|
|
19530
19530
|
|
|
19531
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19531
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
|
|
19532
19532
|
* try:
|
|
19533
19533
|
* _import_umath()
|
|
19534
19534
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19543,7 +19543,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19543
19543
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19544
19544
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19545
19545
|
|
|
19546
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19546
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
19547
19547
|
* _import_umath()
|
|
19548
19548
|
* except Exception:
|
|
19549
19549
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19558,7 +19558,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19558
19558
|
}
|
|
19559
19559
|
goto __pyx_L5_except_error;
|
|
19560
19560
|
|
|
19561
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19561
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19562
19562
|
*
|
|
19563
19563
|
* cdef inline int import_umath() except -1:
|
|
19564
19564
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19574,7 +19574,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19574
19574
|
__pyx_L8_try_end:;
|
|
19575
19575
|
}
|
|
19576
19576
|
|
|
19577
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19577
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19578
19578
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19579
19579
|
*
|
|
19580
19580
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19597,7 +19597,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19597
19597
|
return __pyx_r;
|
|
19598
19598
|
}
|
|
19599
19599
|
|
|
19600
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19600
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
19601
19601
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19602
19602
|
*
|
|
19603
19603
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19621,7 +19621,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19621
19621
|
int __pyx_clineno = 0;
|
|
19622
19622
|
__Pyx_RefNannySetupContext("import_ufunc", 1);
|
|
19623
19623
|
|
|
19624
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19624
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19625
19625
|
*
|
|
19626
19626
|
* cdef inline int import_ufunc() except -1:
|
|
19627
19627
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19637,7 +19637,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19637
19637
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19638
19638
|
/*try:*/ {
|
|
19639
19639
|
|
|
19640
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19640
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
|
|
19641
19641
|
* cdef inline int import_ufunc() except -1:
|
|
19642
19642
|
* try:
|
|
19643
19643
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19646,7 +19646,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19646
19646
|
*/
|
|
19647
19647
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 997, __pyx_L3_error)
|
|
19648
19648
|
|
|
19649
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19649
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19650
19650
|
*
|
|
19651
19651
|
* cdef inline int import_ufunc() except -1:
|
|
19652
19652
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19660,7 +19660,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19660
19660
|
goto __pyx_L8_try_end;
|
|
19661
19661
|
__pyx_L3_error:;
|
|
19662
19662
|
|
|
19663
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19663
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
|
|
19664
19664
|
* try:
|
|
19665
19665
|
* _import_umath()
|
|
19666
19666
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19675,7 +19675,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19675
19675
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19676
19676
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19677
19677
|
|
|
19678
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19678
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
|
|
19679
19679
|
* _import_umath()
|
|
19680
19680
|
* except Exception:
|
|
19681
19681
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19690,7 +19690,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19690
19690
|
}
|
|
19691
19691
|
goto __pyx_L5_except_error;
|
|
19692
19692
|
|
|
19693
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19693
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19694
19694
|
*
|
|
19695
19695
|
* cdef inline int import_ufunc() except -1:
|
|
19696
19696
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19706,7 +19706,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19706
19706
|
__pyx_L8_try_end:;
|
|
19707
19707
|
}
|
|
19708
19708
|
|
|
19709
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19709
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
19710
19710
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19711
19711
|
*
|
|
19712
19712
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19729,7 +19729,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19729
19729
|
return __pyx_r;
|
|
19730
19730
|
}
|
|
19731
19731
|
|
|
19732
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19732
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
|
|
19733
19733
|
*
|
|
19734
19734
|
*
|
|
19735
19735
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19740,7 +19740,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19740
19740
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
19741
19741
|
int __pyx_r;
|
|
19742
19742
|
|
|
19743
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19743
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
19744
19744
|
* bool
|
|
19745
19745
|
* """
|
|
19746
19746
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19750,7 +19750,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19750
19750
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
19751
19751
|
goto __pyx_L0;
|
|
19752
19752
|
|
|
19753
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19753
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
|
|
19754
19754
|
*
|
|
19755
19755
|
*
|
|
19756
19756
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19763,7 +19763,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19763
19763
|
return __pyx_r;
|
|
19764
19764
|
}
|
|
19765
19765
|
|
|
19766
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19766
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
19767
19767
|
*
|
|
19768
19768
|
*
|
|
19769
19769
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19774,7 +19774,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19774
19774
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
19775
19775
|
int __pyx_r;
|
|
19776
19776
|
|
|
19777
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19777
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
19778
19778
|
* bool
|
|
19779
19779
|
* """
|
|
19780
19780
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19784,7 +19784,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19784
19784
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
19785
19785
|
goto __pyx_L0;
|
|
19786
19786
|
|
|
19787
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19787
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
19788
19788
|
*
|
|
19789
19789
|
*
|
|
19790
19790
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19797,7 +19797,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19797
19797
|
return __pyx_r;
|
|
19798
19798
|
}
|
|
19799
19799
|
|
|
19800
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19800
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
19801
19801
|
*
|
|
19802
19802
|
*
|
|
19803
19803
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19808,7 +19808,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19808
19808
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
19809
19809
|
npy_datetime __pyx_r;
|
|
19810
19810
|
|
|
19811
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19811
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
|
|
19812
19812
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
19813
19813
|
* """
|
|
19814
19814
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19818,7 +19818,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19818
19818
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
19819
19819
|
goto __pyx_L0;
|
|
19820
19820
|
|
|
19821
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19821
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
19822
19822
|
*
|
|
19823
19823
|
*
|
|
19824
19824
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19831,7 +19831,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19831
19831
|
return __pyx_r;
|
|
19832
19832
|
}
|
|
19833
19833
|
|
|
19834
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19834
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
|
|
19835
19835
|
*
|
|
19836
19836
|
*
|
|
19837
19837
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19842,7 +19842,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19842
19842
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
19843
19843
|
npy_timedelta __pyx_r;
|
|
19844
19844
|
|
|
19845
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19845
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
|
|
19846
19846
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
19847
19847
|
* """
|
|
19848
19848
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19852,7 +19852,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19852
19852
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
19853
19853
|
goto __pyx_L0;
|
|
19854
19854
|
|
|
19855
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19855
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
|
|
19856
19856
|
*
|
|
19857
19857
|
*
|
|
19858
19858
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19865,7 +19865,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19865
19865
|
return __pyx_r;
|
|
19866
19866
|
}
|
|
19867
19867
|
|
|
19868
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19868
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
|
|
19869
19869
|
*
|
|
19870
19870
|
*
|
|
19871
19871
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19876,7 +19876,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19876
19876
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
19877
19877
|
NPY_DATETIMEUNIT __pyx_r;
|
|
19878
19878
|
|
|
19879
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19879
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1053
|
|
19880
19880
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
19881
19881
|
* """
|
|
19882
19882
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -19884,7 +19884,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
19884
19884
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
19885
19885
|
goto __pyx_L0;
|
|
19886
19886
|
|
|
19887
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19887
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
|
|
19888
19888
|
*
|
|
19889
19889
|
*
|
|
19890
19890
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -29743,7 +29743,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
29743
29743
|
__Pyx_GOTREF(__pyx_tuple__8);
|
|
29744
29744
|
__Pyx_GIVEREF(__pyx_tuple__8);
|
|
29745
29745
|
|
|
29746
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
29746
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
29747
29747
|
* __pyx_import_array()
|
|
29748
29748
|
* except Exception:
|
|
29749
29749
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -29754,7 +29754,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
29754
29754
|
__Pyx_GOTREF(__pyx_tuple__9);
|
|
29755
29755
|
__Pyx_GIVEREF(__pyx_tuple__9);
|
|
29756
29756
|
|
|
29757
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
29757
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
29758
29758
|
* _import_umath()
|
|
29759
29759
|
* except Exception:
|
|
29760
29760
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|