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 # <<<<<<<<<<<<<<
|
|
@@ -1956,7 +1956,7 @@ struct __pyx_MemviewEnum_obj;
|
|
|
1956
1956
|
struct __pyx_memoryview_obj;
|
|
1957
1957
|
struct __pyx_memoryviewslice_obj;
|
|
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":771
|
|
1960
1960
|
* ctypedef npy_longdouble longdouble_t
|
|
1961
1961
|
*
|
|
1962
1962
|
* ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
|
|
@@ -1965,7 +1965,7 @@ struct __pyx_memoryviewslice_obj;
|
|
|
1965
1965
|
*/
|
|
1966
1966
|
typedef npy_cfloat __pyx_t_5numpy_cfloat_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":772
|
|
1969
1969
|
*
|
|
1970
1970
|
* ctypedef npy_cfloat cfloat_t
|
|
1971
1971
|
* ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1974,7 +1974,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
|
1974
1974
|
*/
|
|
1975
1975
|
typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
1976
1976
|
|
|
1977
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1977
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
|
|
1978
1978
|
* ctypedef npy_cfloat cfloat_t
|
|
1979
1979
|
* ctypedef npy_cdouble cdouble_t
|
|
1980
1980
|
* ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1983,7 +1983,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
|
1983
1983
|
*/
|
|
1984
1984
|
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
|
|
1985
1985
|
|
|
1986
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1986
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":775
|
|
1987
1987
|
* ctypedef npy_clongdouble clongdouble_t
|
|
1988
1988
|
*
|
|
1989
1989
|
* ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
|
|
@@ -18986,7 +18986,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18986
18986
|
return __pyx_r;
|
|
18987
18987
|
}
|
|
18988
18988
|
|
|
18989
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18989
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
|
|
18990
18990
|
*
|
|
18991
18991
|
* @property
|
|
18992
18992
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18997,7 +18997,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18997
18997
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
18998
18998
|
PyObject *__pyx_r;
|
|
18999
18999
|
|
|
19000
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19000
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":249
|
|
19001
19001
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
19002
19002
|
* """
|
|
19003
19003
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -19007,7 +19007,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
19007
19007
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
19008
19008
|
goto __pyx_L0;
|
|
19009
19009
|
|
|
19010
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19010
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
|
|
19011
19011
|
*
|
|
19012
19012
|
* @property
|
|
19013
19013
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19020,7 +19020,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
19020
19020
|
return __pyx_r;
|
|
19021
19021
|
}
|
|
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":252
|
|
19024
19024
|
*
|
|
19025
19025
|
* @property
|
|
19026
19026
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -19034,7 +19034,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19034
19034
|
PyArray_Descr *__pyx_t_1;
|
|
19035
19035
|
__Pyx_RefNannySetupContext("descr", 1);
|
|
19036
19036
|
|
|
19037
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19037
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":255
|
|
19038
19038
|
* """Returns an owned reference to the dtype of the array.
|
|
19039
19039
|
* """
|
|
19040
19040
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -19047,7 +19047,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19047
19047
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
19048
19048
|
goto __pyx_L0;
|
|
19049
19049
|
|
|
19050
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19050
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
|
|
19051
19051
|
*
|
|
19052
19052
|
* @property
|
|
19053
19053
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -19062,7 +19062,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19062
19062
|
return __pyx_r;
|
|
19063
19063
|
}
|
|
19064
19064
|
|
|
19065
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19065
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
|
|
19066
19066
|
*
|
|
19067
19067
|
* @property
|
|
19068
19068
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19073,7 +19073,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19073
19073
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
19074
19074
|
int __pyx_r;
|
|
19075
19075
|
|
|
19076
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19076
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":261
|
|
19077
19077
|
* """Returns the number of dimensions in the array.
|
|
19078
19078
|
* """
|
|
19079
19079
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -19083,7 +19083,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
19083
19083
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
19084
19084
|
goto __pyx_L0;
|
|
19085
19085
|
|
|
19086
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19086
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
|
|
19087
19087
|
*
|
|
19088
19088
|
* @property
|
|
19089
19089
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19096,7 +19096,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
19096
19096
|
return __pyx_r;
|
|
19097
19097
|
}
|
|
19098
19098
|
|
|
19099
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19099
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
|
|
19100
19100
|
*
|
|
19101
19101
|
* @property
|
|
19102
19102
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19107,7 +19107,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
19107
19107
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
19108
19108
|
npy_intp *__pyx_r;
|
|
19109
19109
|
|
|
19110
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19110
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":269
|
|
19111
19111
|
* Can return NULL for 0-dimensional arrays.
|
|
19112
19112
|
* """
|
|
19113
19113
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -19117,7 +19117,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
19117
19117
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
19118
19118
|
goto __pyx_L0;
|
|
19119
19119
|
|
|
19120
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19120
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
|
|
19121
19121
|
*
|
|
19122
19122
|
* @property
|
|
19123
19123
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19130,7 +19130,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
19130
19130
|
return __pyx_r;
|
|
19131
19131
|
}
|
|
19132
19132
|
|
|
19133
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19133
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
|
|
19134
19134
|
*
|
|
19135
19135
|
* @property
|
|
19136
19136
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19141,7 +19141,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
19141
19141
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
19142
19142
|
npy_intp *__pyx_r;
|
|
19143
19143
|
|
|
19144
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19144
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":276
|
|
19145
19145
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
19146
19146
|
* """
|
|
19147
19147
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -19151,7 +19151,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
19151
19151
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
19152
19152
|
goto __pyx_L0;
|
|
19153
19153
|
|
|
19154
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19154
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
|
|
19155
19155
|
*
|
|
19156
19156
|
* @property
|
|
19157
19157
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19164,7 +19164,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
19164
19164
|
return __pyx_r;
|
|
19165
19165
|
}
|
|
19166
19166
|
|
|
19167
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19167
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
|
|
19168
19168
|
*
|
|
19169
19169
|
* @property
|
|
19170
19170
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19175,7 +19175,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
19175
19175
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
19176
19176
|
npy_intp __pyx_r;
|
|
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":282
|
|
19179
19179
|
* """Returns the total size (in number of elements) of the array.
|
|
19180
19180
|
* """
|
|
19181
19181
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -19185,7 +19185,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
19185
19185
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
19186
19186
|
goto __pyx_L0;
|
|
19187
19187
|
|
|
19188
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19188
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
|
|
19189
19189
|
*
|
|
19190
19190
|
* @property
|
|
19191
19191
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19198,7 +19198,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
19198
19198
|
return __pyx_r;
|
|
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":285
|
|
19202
19202
|
*
|
|
19203
19203
|
* @property
|
|
19204
19204
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19209,7 +19209,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
19209
19209
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
19210
19210
|
char *__pyx_r;
|
|
19211
19211
|
|
|
19212
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19212
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":291
|
|
19213
19213
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
19214
19214
|
* """
|
|
19215
19215
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -19219,7 +19219,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
19219
19219
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
19220
19220
|
goto __pyx_L0;
|
|
19221
19221
|
|
|
19222
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19222
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
19223
19223
|
*
|
|
19224
19224
|
* @property
|
|
19225
19225
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19232,7 +19232,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
19232
19232
|
return __pyx_r;
|
|
19233
19233
|
}
|
|
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":777
|
|
19236
19236
|
* ctypedef npy_cdouble complex_t
|
|
19237
19237
|
*
|
|
19238
19238
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -19249,7 +19249,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
19249
19249
|
int __pyx_clineno = 0;
|
|
19250
19250
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
|
|
19251
19251
|
|
|
19252
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19252
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":778
|
|
19253
19253
|
*
|
|
19254
19254
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
19255
19255
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -19263,7 +19263,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
19263
19263
|
__pyx_t_1 = 0;
|
|
19264
19264
|
goto __pyx_L0;
|
|
19265
19265
|
|
|
19266
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19266
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
19267
19267
|
* ctypedef npy_cdouble complex_t
|
|
19268
19268
|
*
|
|
19269
19269
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -19282,7 +19282,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
19282
19282
|
return __pyx_r;
|
|
19283
19283
|
}
|
|
19284
19284
|
|
|
19285
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19285
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
19286
19286
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
19287
19287
|
*
|
|
19288
19288
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -19299,7 +19299,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19299
19299
|
int __pyx_clineno = 0;
|
|
19300
19300
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
|
|
19301
19301
|
|
|
19302
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19302
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":781
|
|
19303
19303
|
*
|
|
19304
19304
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
19305
19305
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -19313,7 +19313,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19313
19313
|
__pyx_t_1 = 0;
|
|
19314
19314
|
goto __pyx_L0;
|
|
19315
19315
|
|
|
19316
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19316
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
19317
19317
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
19318
19318
|
*
|
|
19319
19319
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -19332,7 +19332,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19332
19332
|
return __pyx_r;
|
|
19333
19333
|
}
|
|
19334
19334
|
|
|
19335
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19335
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
|
|
19336
19336
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
19337
19337
|
*
|
|
19338
19338
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -19349,7 +19349,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19349
19349
|
int __pyx_clineno = 0;
|
|
19350
19350
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
|
|
19351
19351
|
|
|
19352
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19352
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":784
|
|
19353
19353
|
*
|
|
19354
19354
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
19355
19355
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -19363,7 +19363,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19363
19363
|
__pyx_t_1 = 0;
|
|
19364
19364
|
goto __pyx_L0;
|
|
19365
19365
|
|
|
19366
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19366
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
|
|
19367
19367
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
19368
19368
|
*
|
|
19369
19369
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -19382,7 +19382,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19382
19382
|
return __pyx_r;
|
|
19383
19383
|
}
|
|
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":786
|
|
19386
19386
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
19387
19387
|
*
|
|
19388
19388
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -19399,7 +19399,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19399
19399
|
int __pyx_clineno = 0;
|
|
19400
19400
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
|
|
19401
19401
|
|
|
19402
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19402
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":787
|
|
19403
19403
|
*
|
|
19404
19404
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
19405
19405
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -19413,7 +19413,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19413
19413
|
__pyx_t_1 = 0;
|
|
19414
19414
|
goto __pyx_L0;
|
|
19415
19415
|
|
|
19416
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19416
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
|
|
19417
19417
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
19418
19418
|
*
|
|
19419
19419
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -19432,7 +19432,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19432
19432
|
return __pyx_r;
|
|
19433
19433
|
}
|
|
19434
19434
|
|
|
19435
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19435
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
19436
19436
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
19437
19437
|
*
|
|
19438
19438
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -19449,7 +19449,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19449
19449
|
int __pyx_clineno = 0;
|
|
19450
19450
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
|
|
19451
19451
|
|
|
19452
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19452
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
|
|
19453
19453
|
*
|
|
19454
19454
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
19455
19455
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -19463,7 +19463,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19463
19463
|
__pyx_t_1 = 0;
|
|
19464
19464
|
goto __pyx_L0;
|
|
19465
19465
|
|
|
19466
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19466
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
19467
19467
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
19468
19468
|
*
|
|
19469
19469
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -19482,7 +19482,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19482
19482
|
return __pyx_r;
|
|
19483
19483
|
}
|
|
19484
19484
|
|
|
19485
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19485
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
19486
19486
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
19487
19487
|
*
|
|
19488
19488
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -19496,7 +19496,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19496
19496
|
int __pyx_t_1;
|
|
19497
19497
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
|
|
19498
19498
|
|
|
19499
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19499
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
|
|
19500
19500
|
*
|
|
19501
19501
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19502
19502
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -19506,7 +19506,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19506
19506
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
19507
19507
|
if (__pyx_t_1) {
|
|
19508
19508
|
|
|
19509
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19509
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":794
|
|
19510
19510
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19511
19511
|
* if PyDataType_HASSUBARRAY(d):
|
|
19512
19512
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -19518,7 +19518,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19518
19518
|
__pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
|
|
19519
19519
|
goto __pyx_L0;
|
|
19520
19520
|
|
|
19521
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19521
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
|
|
19522
19522
|
*
|
|
19523
19523
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19524
19524
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -19527,7 +19527,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19527
19527
|
*/
|
|
19528
19528
|
}
|
|
19529
19529
|
|
|
19530
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19530
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":796
|
|
19531
19531
|
* return <tuple>d.subarray.shape
|
|
19532
19532
|
* else:
|
|
19533
19533
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -19541,7 +19541,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19541
19541
|
goto __pyx_L0;
|
|
19542
19542
|
}
|
|
19543
19543
|
|
|
19544
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19544
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
19545
19545
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
19546
19546
|
*
|
|
19547
19547
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -19556,7 +19556,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19556
19556
|
return __pyx_r;
|
|
19557
19557
|
}
|
|
19558
19558
|
|
|
19559
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19559
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
|
|
19560
19560
|
* int _import_umath() except -1
|
|
19561
19561
|
*
|
|
19562
19562
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -19566,7 +19566,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19566
19566
|
|
|
19567
19567
|
static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
|
|
19568
19568
|
|
|
19569
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19569
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
|
|
19570
19570
|
*
|
|
19571
19571
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
19572
19572
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -19575,7 +19575,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19575
19575
|
*/
|
|
19576
19576
|
Py_INCREF(__pyx_v_base);
|
|
19577
19577
|
|
|
19578
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19578
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
|
|
19579
19579
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
19580
19580
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
19581
19581
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -19584,7 +19584,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19584
19584
|
*/
|
|
19585
19585
|
(void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
|
|
19586
19586
|
|
|
19587
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19587
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
|
|
19588
19588
|
* int _import_umath() except -1
|
|
19589
19589
|
*
|
|
19590
19590
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -19595,7 +19595,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19595
19595
|
/* function exit code */
|
|
19596
19596
|
}
|
|
19597
19597
|
|
|
19598
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19598
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
|
|
19599
19599
|
* PyArray_SetBaseObject(arr, base)
|
|
19600
19600
|
*
|
|
19601
19601
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19610,7 +19610,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19610
19610
|
int __pyx_t_1;
|
|
19611
19611
|
__Pyx_RefNannySetupContext("get_array_base", 1);
|
|
19612
19612
|
|
|
19613
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19613
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
|
|
19614
19614
|
*
|
|
19615
19615
|
* cdef inline object get_array_base(ndarray arr):
|
|
19616
19616
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -19619,7 +19619,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19619
19619
|
*/
|
|
19620
19620
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
19621
19621
|
|
|
19622
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19622
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
|
|
19623
19623
|
* cdef inline object get_array_base(ndarray arr):
|
|
19624
19624
|
* base = PyArray_BASE(arr)
|
|
19625
19625
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19629,7 +19629,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19629
19629
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
19630
19630
|
if (__pyx_t_1) {
|
|
19631
19631
|
|
|
19632
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19632
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
|
|
19633
19633
|
* base = PyArray_BASE(arr)
|
|
19634
19634
|
* if base is NULL:
|
|
19635
19635
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -19640,7 +19640,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19640
19640
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
19641
19641
|
goto __pyx_L0;
|
|
19642
19642
|
|
|
19643
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19643
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
|
|
19644
19644
|
* cdef inline object get_array_base(ndarray arr):
|
|
19645
19645
|
* base = PyArray_BASE(arr)
|
|
19646
19646
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19649,7 +19649,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19649
19649
|
*/
|
|
19650
19650
|
}
|
|
19651
19651
|
|
|
19652
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19652
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":979
|
|
19653
19653
|
* if base is NULL:
|
|
19654
19654
|
* return None
|
|
19655
19655
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -19661,7 +19661,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19661
19661
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
19662
19662
|
goto __pyx_L0;
|
|
19663
19663
|
|
|
19664
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19664
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
|
|
19665
19665
|
* PyArray_SetBaseObject(arr, base)
|
|
19666
19666
|
*
|
|
19667
19667
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19676,7 +19676,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19676
19676
|
return __pyx_r;
|
|
19677
19677
|
}
|
|
19678
19678
|
|
|
19679
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19679
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19680
19680
|
* # Versions of the import_* functions which are more suitable for
|
|
19681
19681
|
* # Cython code.
|
|
19682
19682
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19700,7 +19700,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19700
19700
|
int __pyx_clineno = 0;
|
|
19701
19701
|
__Pyx_RefNannySetupContext("import_array", 1);
|
|
19702
19702
|
|
|
19703
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19703
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19704
19704
|
* # Cython code.
|
|
19705
19705
|
* cdef inline int import_array() except -1:
|
|
19706
19706
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19716,7 +19716,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19716
19716
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19717
19717
|
/*try:*/ {
|
|
19718
19718
|
|
|
19719
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19719
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
|
|
19720
19720
|
* cdef inline int import_array() except -1:
|
|
19721
19721
|
* try:
|
|
19722
19722
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -19725,7 +19725,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19725
19725
|
*/
|
|
19726
19726
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 985, __pyx_L3_error)
|
|
19727
19727
|
|
|
19728
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19728
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19729
19729
|
* # Cython code.
|
|
19730
19730
|
* cdef inline int import_array() except -1:
|
|
19731
19731
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19739,7 +19739,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19739
19739
|
goto __pyx_L8_try_end;
|
|
19740
19740
|
__pyx_L3_error:;
|
|
19741
19741
|
|
|
19742
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19742
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
|
|
19743
19743
|
* try:
|
|
19744
19744
|
* __pyx_import_array()
|
|
19745
19745
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19754,7 +19754,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19754
19754
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19755
19755
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19756
19756
|
|
|
19757
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19757
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
19758
19758
|
* __pyx_import_array()
|
|
19759
19759
|
* except Exception:
|
|
19760
19760
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19769,7 +19769,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19769
19769
|
}
|
|
19770
19770
|
goto __pyx_L5_except_error;
|
|
19771
19771
|
|
|
19772
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19772
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19773
19773
|
* # Cython code.
|
|
19774
19774
|
* cdef inline int import_array() except -1:
|
|
19775
19775
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19785,7 +19785,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19785
19785
|
__pyx_L8_try_end:;
|
|
19786
19786
|
}
|
|
19787
19787
|
|
|
19788
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19788
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19789
19789
|
* # Versions of the import_* functions which are more suitable for
|
|
19790
19790
|
* # Cython code.
|
|
19791
19791
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19808,7 +19808,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19808
19808
|
return __pyx_r;
|
|
19809
19809
|
}
|
|
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":989
|
|
19812
19812
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19813
19813
|
*
|
|
19814
19814
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19832,7 +19832,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19832
19832
|
int __pyx_clineno = 0;
|
|
19833
19833
|
__Pyx_RefNannySetupContext("import_umath", 1);
|
|
19834
19834
|
|
|
19835
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19835
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19836
19836
|
*
|
|
19837
19837
|
* cdef inline int import_umath() except -1:
|
|
19838
19838
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19848,7 +19848,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19848
19848
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19849
19849
|
/*try:*/ {
|
|
19850
19850
|
|
|
19851
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19851
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
|
|
19852
19852
|
* cdef inline int import_umath() except -1:
|
|
19853
19853
|
* try:
|
|
19854
19854
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19857,7 +19857,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19857
19857
|
*/
|
|
19858
19858
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 991, __pyx_L3_error)
|
|
19859
19859
|
|
|
19860
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19860
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19861
19861
|
*
|
|
19862
19862
|
* cdef inline int import_umath() except -1:
|
|
19863
19863
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19871,7 +19871,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19871
19871
|
goto __pyx_L8_try_end;
|
|
19872
19872
|
__pyx_L3_error:;
|
|
19873
19873
|
|
|
19874
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19874
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
|
|
19875
19875
|
* try:
|
|
19876
19876
|
* _import_umath()
|
|
19877
19877
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19886,7 +19886,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19886
19886
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19887
19887
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19888
19888
|
|
|
19889
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19889
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
19890
19890
|
* _import_umath()
|
|
19891
19891
|
* except Exception:
|
|
19892
19892
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19901,7 +19901,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19901
19901
|
}
|
|
19902
19902
|
goto __pyx_L5_except_error;
|
|
19903
19903
|
|
|
19904
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19904
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19905
19905
|
*
|
|
19906
19906
|
* cdef inline int import_umath() except -1:
|
|
19907
19907
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19917,7 +19917,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19917
19917
|
__pyx_L8_try_end:;
|
|
19918
19918
|
}
|
|
19919
19919
|
|
|
19920
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19920
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19921
19921
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19922
19922
|
*
|
|
19923
19923
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19940,7 +19940,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19940
19940
|
return __pyx_r;
|
|
19941
19941
|
}
|
|
19942
19942
|
|
|
19943
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19943
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
19944
19944
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19945
19945
|
*
|
|
19946
19946
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19964,7 +19964,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19964
19964
|
int __pyx_clineno = 0;
|
|
19965
19965
|
__Pyx_RefNannySetupContext("import_ufunc", 1);
|
|
19966
19966
|
|
|
19967
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19967
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19968
19968
|
*
|
|
19969
19969
|
* cdef inline int import_ufunc() except -1:
|
|
19970
19970
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19980,7 +19980,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19980
19980
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19981
19981
|
/*try:*/ {
|
|
19982
19982
|
|
|
19983
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19983
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
|
|
19984
19984
|
* cdef inline int import_ufunc() except -1:
|
|
19985
19985
|
* try:
|
|
19986
19986
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19989,7 +19989,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19989
19989
|
*/
|
|
19990
19990
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 997, __pyx_L3_error)
|
|
19991
19991
|
|
|
19992
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19992
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19993
19993
|
*
|
|
19994
19994
|
* cdef inline int import_ufunc() except -1:
|
|
19995
19995
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20003,7 +20003,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20003
20003
|
goto __pyx_L8_try_end;
|
|
20004
20004
|
__pyx_L3_error:;
|
|
20005
20005
|
|
|
20006
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20006
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
|
|
20007
20007
|
* try:
|
|
20008
20008
|
* _import_umath()
|
|
20009
20009
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -20018,7 +20018,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20018
20018
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
20019
20019
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
20020
20020
|
|
|
20021
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20021
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
|
|
20022
20022
|
* _import_umath()
|
|
20023
20023
|
* except Exception:
|
|
20024
20024
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -20033,7 +20033,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20033
20033
|
}
|
|
20034
20034
|
goto __pyx_L5_except_error;
|
|
20035
20035
|
|
|
20036
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20036
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
20037
20037
|
*
|
|
20038
20038
|
* cdef inline int import_ufunc() except -1:
|
|
20039
20039
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20049,7 +20049,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20049
20049
|
__pyx_L8_try_end:;
|
|
20050
20050
|
}
|
|
20051
20051
|
|
|
20052
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20052
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
20053
20053
|
* raise ImportError("numpy.core.umath failed to import")
|
|
20054
20054
|
*
|
|
20055
20055
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -20072,7 +20072,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20072
20072
|
return __pyx_r;
|
|
20073
20073
|
}
|
|
20074
20074
|
|
|
20075
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20075
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
|
|
20076
20076
|
*
|
|
20077
20077
|
*
|
|
20078
20078
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20083,7 +20083,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20083
20083
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
20084
20084
|
int __pyx_r;
|
|
20085
20085
|
|
|
20086
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20086
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
20087
20087
|
* bool
|
|
20088
20088
|
* """
|
|
20089
20089
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -20093,7 +20093,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
20093
20093
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
20094
20094
|
goto __pyx_L0;
|
|
20095
20095
|
|
|
20096
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20096
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
|
|
20097
20097
|
*
|
|
20098
20098
|
*
|
|
20099
20099
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20106,7 +20106,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
20106
20106
|
return __pyx_r;
|
|
20107
20107
|
}
|
|
20108
20108
|
|
|
20109
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20109
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
20110
20110
|
*
|
|
20111
20111
|
*
|
|
20112
20112
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20117,7 +20117,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
20117
20117
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
20118
20118
|
int __pyx_r;
|
|
20119
20119
|
|
|
20120
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20120
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
20121
20121
|
* bool
|
|
20122
20122
|
* """
|
|
20123
20123
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -20127,7 +20127,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
20127
20127
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
20128
20128
|
goto __pyx_L0;
|
|
20129
20129
|
|
|
20130
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20130
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
20131
20131
|
*
|
|
20132
20132
|
*
|
|
20133
20133
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20140,7 +20140,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
20140
20140
|
return __pyx_r;
|
|
20141
20141
|
}
|
|
20142
20142
|
|
|
20143
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20143
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
20144
20144
|
*
|
|
20145
20145
|
*
|
|
20146
20146
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20151,7 +20151,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
20151
20151
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
20152
20152
|
npy_datetime __pyx_r;
|
|
20153
20153
|
|
|
20154
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20154
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
|
|
20155
20155
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
20156
20156
|
* """
|
|
20157
20157
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -20161,7 +20161,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
20161
20161
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
20162
20162
|
goto __pyx_L0;
|
|
20163
20163
|
|
|
20164
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20164
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
20165
20165
|
*
|
|
20166
20166
|
*
|
|
20167
20167
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20174,7 +20174,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
20174
20174
|
return __pyx_r;
|
|
20175
20175
|
}
|
|
20176
20176
|
|
|
20177
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20177
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
|
|
20178
20178
|
*
|
|
20179
20179
|
*
|
|
20180
20180
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20185,7 +20185,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
20185
20185
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
20186
20186
|
npy_timedelta __pyx_r;
|
|
20187
20187
|
|
|
20188
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20188
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
|
|
20189
20189
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
20190
20190
|
* """
|
|
20191
20191
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -20195,7 +20195,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
20195
20195
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
20196
20196
|
goto __pyx_L0;
|
|
20197
20197
|
|
|
20198
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20198
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
|
|
20199
20199
|
*
|
|
20200
20200
|
*
|
|
20201
20201
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20208,7 +20208,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
20208
20208
|
return __pyx_r;
|
|
20209
20209
|
}
|
|
20210
20210
|
|
|
20211
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20211
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
|
|
20212
20212
|
*
|
|
20213
20213
|
*
|
|
20214
20214
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20219,7 +20219,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
20219
20219
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
20220
20220
|
NPY_DATETIMEUNIT __pyx_r;
|
|
20221
20221
|
|
|
20222
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20222
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1053
|
|
20223
20223
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
20224
20224
|
* """
|
|
20225
20225
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -20227,7 +20227,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
20227
20227
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
20228
20228
|
goto __pyx_L0;
|
|
20229
20229
|
|
|
20230
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20230
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
|
|
20231
20231
|
*
|
|
20232
20232
|
*
|
|
20233
20233
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -28325,7 +28325,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
28325
28325
|
__Pyx_GOTREF(__pyx_tuple__8);
|
|
28326
28326
|
__Pyx_GIVEREF(__pyx_tuple__8);
|
|
28327
28327
|
|
|
28328
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
28328
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
28329
28329
|
* __pyx_import_array()
|
|
28330
28330
|
* except Exception:
|
|
28331
28331
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -28336,7 +28336,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
28336
28336
|
__Pyx_GOTREF(__pyx_tuple__9);
|
|
28337
28337
|
__Pyx_GIVEREF(__pyx_tuple__9);
|
|
28338
28338
|
|
|
28339
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
28339
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
28340
28340
|
* _import_umath()
|
|
28341
28341
|
* except Exception:
|
|
28342
28342
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|