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 # <<<<<<<<<<<<<<
|
|
@@ -18258,7 +18258,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18258
18258
|
return __pyx_r;
|
|
18259
18259
|
}
|
|
18260
18260
|
|
|
18261
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18261
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
|
|
18262
18262
|
*
|
|
18263
18263
|
* @property
|
|
18264
18264
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18269,7 +18269,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18269
18269
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
18270
18270
|
PyObject *__pyx_r;
|
|
18271
18271
|
|
|
18272
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18272
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":249
|
|
18273
18273
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
18274
18274
|
* """
|
|
18275
18275
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -18279,7 +18279,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18279
18279
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
18280
18280
|
goto __pyx_L0;
|
|
18281
18281
|
|
|
18282
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18282
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
|
|
18283
18283
|
*
|
|
18284
18284
|
* @property
|
|
18285
18285
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18292,7 +18292,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18292
18292
|
return __pyx_r;
|
|
18293
18293
|
}
|
|
18294
18294
|
|
|
18295
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18295
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
|
|
18296
18296
|
*
|
|
18297
18297
|
* @property
|
|
18298
18298
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18306,7 +18306,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18306
18306
|
PyArray_Descr *__pyx_t_1;
|
|
18307
18307
|
__Pyx_RefNannySetupContext("descr", 1);
|
|
18308
18308
|
|
|
18309
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18309
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":255
|
|
18310
18310
|
* """Returns an owned reference to the dtype of the array.
|
|
18311
18311
|
* """
|
|
18312
18312
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -18319,7 +18319,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18319
18319
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
18320
18320
|
goto __pyx_L0;
|
|
18321
18321
|
|
|
18322
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18322
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
|
|
18323
18323
|
*
|
|
18324
18324
|
* @property
|
|
18325
18325
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18334,7 +18334,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18334
18334
|
return __pyx_r;
|
|
18335
18335
|
}
|
|
18336
18336
|
|
|
18337
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18337
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
|
|
18338
18338
|
*
|
|
18339
18339
|
* @property
|
|
18340
18340
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18345,7 +18345,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18345
18345
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
18346
18346
|
int __pyx_r;
|
|
18347
18347
|
|
|
18348
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18348
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":261
|
|
18349
18349
|
* """Returns the number of dimensions in the array.
|
|
18350
18350
|
* """
|
|
18351
18351
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -18355,7 +18355,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18355
18355
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
18356
18356
|
goto __pyx_L0;
|
|
18357
18357
|
|
|
18358
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18358
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
|
|
18359
18359
|
*
|
|
18360
18360
|
* @property
|
|
18361
18361
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18368,7 +18368,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18368
18368
|
return __pyx_r;
|
|
18369
18369
|
}
|
|
18370
18370
|
|
|
18371
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18371
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
|
|
18372
18372
|
*
|
|
18373
18373
|
* @property
|
|
18374
18374
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18379,7 +18379,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18379
18379
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
18380
18380
|
npy_intp *__pyx_r;
|
|
18381
18381
|
|
|
18382
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18382
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":269
|
|
18383
18383
|
* Can return NULL for 0-dimensional arrays.
|
|
18384
18384
|
* """
|
|
18385
18385
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -18389,7 +18389,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18389
18389
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
18390
18390
|
goto __pyx_L0;
|
|
18391
18391
|
|
|
18392
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18392
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
|
|
18393
18393
|
*
|
|
18394
18394
|
* @property
|
|
18395
18395
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18402,7 +18402,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18402
18402
|
return __pyx_r;
|
|
18403
18403
|
}
|
|
18404
18404
|
|
|
18405
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18405
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
|
|
18406
18406
|
*
|
|
18407
18407
|
* @property
|
|
18408
18408
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18413,7 +18413,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18413
18413
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
18414
18414
|
npy_intp *__pyx_r;
|
|
18415
18415
|
|
|
18416
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18416
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":276
|
|
18417
18417
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
18418
18418
|
* """
|
|
18419
18419
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -18423,7 +18423,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18423
18423
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
18424
18424
|
goto __pyx_L0;
|
|
18425
18425
|
|
|
18426
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18426
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
|
|
18427
18427
|
*
|
|
18428
18428
|
* @property
|
|
18429
18429
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18436,7 +18436,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18436
18436
|
return __pyx_r;
|
|
18437
18437
|
}
|
|
18438
18438
|
|
|
18439
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18439
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
|
|
18440
18440
|
*
|
|
18441
18441
|
* @property
|
|
18442
18442
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18447,7 +18447,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18447
18447
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
18448
18448
|
npy_intp __pyx_r;
|
|
18449
18449
|
|
|
18450
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18450
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":282
|
|
18451
18451
|
* """Returns the total size (in number of elements) of the array.
|
|
18452
18452
|
* """
|
|
18453
18453
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -18457,7 +18457,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18457
18457
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
18458
18458
|
goto __pyx_L0;
|
|
18459
18459
|
|
|
18460
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18460
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
|
|
18461
18461
|
*
|
|
18462
18462
|
* @property
|
|
18463
18463
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18470,7 +18470,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18470
18470
|
return __pyx_r;
|
|
18471
18471
|
}
|
|
18472
18472
|
|
|
18473
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18473
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
18474
18474
|
*
|
|
18475
18475
|
* @property
|
|
18476
18476
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18481,7 +18481,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18481
18481
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
18482
18482
|
char *__pyx_r;
|
|
18483
18483
|
|
|
18484
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18484
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":291
|
|
18485
18485
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
18486
18486
|
* """
|
|
18487
18487
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -18491,7 +18491,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18491
18491
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
18492
18492
|
goto __pyx_L0;
|
|
18493
18493
|
|
|
18494
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18494
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
18495
18495
|
*
|
|
18496
18496
|
* @property
|
|
18497
18497
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18504,7 +18504,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18504
18504
|
return __pyx_r;
|
|
18505
18505
|
}
|
|
18506
18506
|
|
|
18507
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18507
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
18508
18508
|
* ctypedef npy_cdouble complex_t
|
|
18509
18509
|
*
|
|
18510
18510
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18521,7 +18521,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18521
18521
|
int __pyx_clineno = 0;
|
|
18522
18522
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
|
|
18523
18523
|
|
|
18524
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18524
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":778
|
|
18525
18525
|
*
|
|
18526
18526
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
18527
18527
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -18535,7 +18535,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18535
18535
|
__pyx_t_1 = 0;
|
|
18536
18536
|
goto __pyx_L0;
|
|
18537
18537
|
|
|
18538
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18538
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
18539
18539
|
* ctypedef npy_cdouble complex_t
|
|
18540
18540
|
*
|
|
18541
18541
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18554,7 +18554,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18554
18554
|
return __pyx_r;
|
|
18555
18555
|
}
|
|
18556
18556
|
|
|
18557
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18557
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
18558
18558
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18559
18559
|
*
|
|
18560
18560
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18571,7 +18571,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18571
18571
|
int __pyx_clineno = 0;
|
|
18572
18572
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
|
|
18573
18573
|
|
|
18574
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18574
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":781
|
|
18575
18575
|
*
|
|
18576
18576
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
18577
18577
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -18585,7 +18585,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18585
18585
|
__pyx_t_1 = 0;
|
|
18586
18586
|
goto __pyx_L0;
|
|
18587
18587
|
|
|
18588
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18588
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
18589
18589
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18590
18590
|
*
|
|
18591
18591
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18604,7 +18604,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18604
18604
|
return __pyx_r;
|
|
18605
18605
|
}
|
|
18606
18606
|
|
|
18607
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18607
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
|
|
18608
18608
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18609
18609
|
*
|
|
18610
18610
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18621,7 +18621,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18621
18621
|
int __pyx_clineno = 0;
|
|
18622
18622
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
|
|
18623
18623
|
|
|
18624
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18624
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":784
|
|
18625
18625
|
*
|
|
18626
18626
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
18627
18627
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -18635,7 +18635,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18635
18635
|
__pyx_t_1 = 0;
|
|
18636
18636
|
goto __pyx_L0;
|
|
18637
18637
|
|
|
18638
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18638
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
|
|
18639
18639
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18640
18640
|
*
|
|
18641
18641
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18654,7 +18654,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18654
18654
|
return __pyx_r;
|
|
18655
18655
|
}
|
|
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":786
|
|
18658
18658
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
18659
18659
|
*
|
|
18660
18660
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -18671,7 +18671,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18671
18671
|
int __pyx_clineno = 0;
|
|
18672
18672
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
|
|
18673
18673
|
|
|
18674
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18674
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":787
|
|
18675
18675
|
*
|
|
18676
18676
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
18677
18677
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -18685,7 +18685,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18685
18685
|
__pyx_t_1 = 0;
|
|
18686
18686
|
goto __pyx_L0;
|
|
18687
18687
|
|
|
18688
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18688
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
|
|
18689
18689
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
18690
18690
|
*
|
|
18691
18691
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -18704,7 +18704,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18704
18704
|
return __pyx_r;
|
|
18705
18705
|
}
|
|
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":789
|
|
18708
18708
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
18709
18709
|
*
|
|
18710
18710
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -18721,7 +18721,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18721
18721
|
int __pyx_clineno = 0;
|
|
18722
18722
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
|
|
18723
18723
|
|
|
18724
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18724
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
|
|
18725
18725
|
*
|
|
18726
18726
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
18727
18727
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -18735,7 +18735,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18735
18735
|
__pyx_t_1 = 0;
|
|
18736
18736
|
goto __pyx_L0;
|
|
18737
18737
|
|
|
18738
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18738
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
18739
18739
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
18740
18740
|
*
|
|
18741
18741
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -18754,7 +18754,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18754
18754
|
return __pyx_r;
|
|
18755
18755
|
}
|
|
18756
18756
|
|
|
18757
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18757
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
18758
18758
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
18759
18759
|
*
|
|
18760
18760
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -18768,7 +18768,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18768
18768
|
int __pyx_t_1;
|
|
18769
18769
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
|
|
18770
18770
|
|
|
18771
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18771
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
|
|
18772
18772
|
*
|
|
18773
18773
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18774
18774
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -18778,7 +18778,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18778
18778
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
18779
18779
|
if (__pyx_t_1) {
|
|
18780
18780
|
|
|
18781
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18781
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":794
|
|
18782
18782
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18783
18783
|
* if PyDataType_HASSUBARRAY(d):
|
|
18784
18784
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -18790,7 +18790,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18790
18790
|
__pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
|
|
18791
18791
|
goto __pyx_L0;
|
|
18792
18792
|
|
|
18793
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18793
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
|
|
18794
18794
|
*
|
|
18795
18795
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18796
18796
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -18799,7 +18799,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18799
18799
|
*/
|
|
18800
18800
|
}
|
|
18801
18801
|
|
|
18802
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18802
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":796
|
|
18803
18803
|
* return <tuple>d.subarray.shape
|
|
18804
18804
|
* else:
|
|
18805
18805
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -18813,7 +18813,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18813
18813
|
goto __pyx_L0;
|
|
18814
18814
|
}
|
|
18815
18815
|
|
|
18816
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18816
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
18817
18817
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
18818
18818
|
*
|
|
18819
18819
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -18828,7 +18828,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18828
18828
|
return __pyx_r;
|
|
18829
18829
|
}
|
|
18830
18830
|
|
|
18831
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18831
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
|
|
18832
18832
|
* int _import_umath() except -1
|
|
18833
18833
|
*
|
|
18834
18834
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -18838,7 +18838,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18838
18838
|
|
|
18839
18839
|
static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
|
|
18840
18840
|
|
|
18841
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18841
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
|
|
18842
18842
|
*
|
|
18843
18843
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
18844
18844
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -18847,7 +18847,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18847
18847
|
*/
|
|
18848
18848
|
Py_INCREF(__pyx_v_base);
|
|
18849
18849
|
|
|
18850
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18850
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
|
|
18851
18851
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
18852
18852
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
18853
18853
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -18856,7 +18856,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18856
18856
|
*/
|
|
18857
18857
|
(void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
|
|
18858
18858
|
|
|
18859
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18859
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
|
|
18860
18860
|
* int _import_umath() except -1
|
|
18861
18861
|
*
|
|
18862
18862
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -18867,7 +18867,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18867
18867
|
/* function exit code */
|
|
18868
18868
|
}
|
|
18869
18869
|
|
|
18870
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18870
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
|
|
18871
18871
|
* PyArray_SetBaseObject(arr, base)
|
|
18872
18872
|
*
|
|
18873
18873
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -18882,7 +18882,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18882
18882
|
int __pyx_t_1;
|
|
18883
18883
|
__Pyx_RefNannySetupContext("get_array_base", 1);
|
|
18884
18884
|
|
|
18885
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18885
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
|
|
18886
18886
|
*
|
|
18887
18887
|
* cdef inline object get_array_base(ndarray arr):
|
|
18888
18888
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -18891,7 +18891,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18891
18891
|
*/
|
|
18892
18892
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
18893
18893
|
|
|
18894
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18894
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
|
|
18895
18895
|
* cdef inline object get_array_base(ndarray arr):
|
|
18896
18896
|
* base = PyArray_BASE(arr)
|
|
18897
18897
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -18901,7 +18901,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18901
18901
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
18902
18902
|
if (__pyx_t_1) {
|
|
18903
18903
|
|
|
18904
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18904
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
|
|
18905
18905
|
* base = PyArray_BASE(arr)
|
|
18906
18906
|
* if base is NULL:
|
|
18907
18907
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -18912,7 +18912,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18912
18912
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
18913
18913
|
goto __pyx_L0;
|
|
18914
18914
|
|
|
18915
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18915
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
|
|
18916
18916
|
* cdef inline object get_array_base(ndarray arr):
|
|
18917
18917
|
* base = PyArray_BASE(arr)
|
|
18918
18918
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -18921,7 +18921,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18921
18921
|
*/
|
|
18922
18922
|
}
|
|
18923
18923
|
|
|
18924
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18924
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":979
|
|
18925
18925
|
* if base is NULL:
|
|
18926
18926
|
* return None
|
|
18927
18927
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -18933,7 +18933,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18933
18933
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
18934
18934
|
goto __pyx_L0;
|
|
18935
18935
|
|
|
18936
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18936
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
|
|
18937
18937
|
* PyArray_SetBaseObject(arr, base)
|
|
18938
18938
|
*
|
|
18939
18939
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -18948,7 +18948,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18948
18948
|
return __pyx_r;
|
|
18949
18949
|
}
|
|
18950
18950
|
|
|
18951
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18951
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
18952
18952
|
* # Versions of the import_* functions which are more suitable for
|
|
18953
18953
|
* # Cython code.
|
|
18954
18954
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18972,7 +18972,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18972
18972
|
int __pyx_clineno = 0;
|
|
18973
18973
|
__Pyx_RefNannySetupContext("import_array", 1);
|
|
18974
18974
|
|
|
18975
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18975
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
18976
18976
|
* # Cython code.
|
|
18977
18977
|
* cdef inline int import_array() except -1:
|
|
18978
18978
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18988,7 +18988,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18988
18988
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
18989
18989
|
/*try:*/ {
|
|
18990
18990
|
|
|
18991
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18991
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
|
|
18992
18992
|
* cdef inline int import_array() except -1:
|
|
18993
18993
|
* try:
|
|
18994
18994
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -18997,7 +18997,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18997
18997
|
*/
|
|
18998
18998
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 985, __pyx_L3_error)
|
|
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":984
|
|
19001
19001
|
* # Cython code.
|
|
19002
19002
|
* cdef inline int import_array() except -1:
|
|
19003
19003
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19011,7 +19011,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19011
19011
|
goto __pyx_L8_try_end;
|
|
19012
19012
|
__pyx_L3_error:;
|
|
19013
19013
|
|
|
19014
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19014
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
|
|
19015
19015
|
* try:
|
|
19016
19016
|
* __pyx_import_array()
|
|
19017
19017
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19026,7 +19026,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19026
19026
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19027
19027
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19028
19028
|
|
|
19029
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19029
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
19030
19030
|
* __pyx_import_array()
|
|
19031
19031
|
* except Exception:
|
|
19032
19032
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19041,7 +19041,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19041
19041
|
}
|
|
19042
19042
|
goto __pyx_L5_except_error;
|
|
19043
19043
|
|
|
19044
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19044
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19045
19045
|
* # Cython code.
|
|
19046
19046
|
* cdef inline int import_array() except -1:
|
|
19047
19047
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19057,7 +19057,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19057
19057
|
__pyx_L8_try_end:;
|
|
19058
19058
|
}
|
|
19059
19059
|
|
|
19060
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19060
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19061
19061
|
* # Versions of the import_* functions which are more suitable for
|
|
19062
19062
|
* # Cython code.
|
|
19063
19063
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19080,7 +19080,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19080
19080
|
return __pyx_r;
|
|
19081
19081
|
}
|
|
19082
19082
|
|
|
19083
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19083
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19084
19084
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19085
19085
|
*
|
|
19086
19086
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19104,7 +19104,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19104
19104
|
int __pyx_clineno = 0;
|
|
19105
19105
|
__Pyx_RefNannySetupContext("import_umath", 1);
|
|
19106
19106
|
|
|
19107
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19107
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19108
19108
|
*
|
|
19109
19109
|
* cdef inline int import_umath() except -1:
|
|
19110
19110
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19120,7 +19120,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19120
19120
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19121
19121
|
/*try:*/ {
|
|
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":991
|
|
19124
19124
|
* cdef inline int import_umath() except -1:
|
|
19125
19125
|
* try:
|
|
19126
19126
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19129,7 +19129,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19129
19129
|
*/
|
|
19130
19130
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 991, __pyx_L3_error)
|
|
19131
19131
|
|
|
19132
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19132
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19133
19133
|
*
|
|
19134
19134
|
* cdef inline int import_umath() except -1:
|
|
19135
19135
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19143,7 +19143,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19143
19143
|
goto __pyx_L8_try_end;
|
|
19144
19144
|
__pyx_L3_error:;
|
|
19145
19145
|
|
|
19146
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19146
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
|
|
19147
19147
|
* try:
|
|
19148
19148
|
* _import_umath()
|
|
19149
19149
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19158,7 +19158,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19158
19158
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19159
19159
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19160
19160
|
|
|
19161
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19161
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
19162
19162
|
* _import_umath()
|
|
19163
19163
|
* except Exception:
|
|
19164
19164
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19173,7 +19173,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19173
19173
|
}
|
|
19174
19174
|
goto __pyx_L5_except_error;
|
|
19175
19175
|
|
|
19176
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19176
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19177
19177
|
*
|
|
19178
19178
|
* cdef inline int import_umath() except -1:
|
|
19179
19179
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19189,7 +19189,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19189
19189
|
__pyx_L8_try_end:;
|
|
19190
19190
|
}
|
|
19191
19191
|
|
|
19192
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19192
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19193
19193
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19194
19194
|
*
|
|
19195
19195
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19212,7 +19212,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19212
19212
|
return __pyx_r;
|
|
19213
19213
|
}
|
|
19214
19214
|
|
|
19215
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19215
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
19216
19216
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19217
19217
|
*
|
|
19218
19218
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19236,7 +19236,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19236
19236
|
int __pyx_clineno = 0;
|
|
19237
19237
|
__Pyx_RefNannySetupContext("import_ufunc", 1);
|
|
19238
19238
|
|
|
19239
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19239
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19240
19240
|
*
|
|
19241
19241
|
* cdef inline int import_ufunc() except -1:
|
|
19242
19242
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19252,7 +19252,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19252
19252
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19253
19253
|
/*try:*/ {
|
|
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":997
|
|
19256
19256
|
* cdef inline int import_ufunc() except -1:
|
|
19257
19257
|
* try:
|
|
19258
19258
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19261,7 +19261,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19261
19261
|
*/
|
|
19262
19262
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 997, __pyx_L3_error)
|
|
19263
19263
|
|
|
19264
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19264
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19265
19265
|
*
|
|
19266
19266
|
* cdef inline int import_ufunc() except -1:
|
|
19267
19267
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19275,7 +19275,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19275
19275
|
goto __pyx_L8_try_end;
|
|
19276
19276
|
__pyx_L3_error:;
|
|
19277
19277
|
|
|
19278
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19278
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
|
|
19279
19279
|
* try:
|
|
19280
19280
|
* _import_umath()
|
|
19281
19281
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19290,7 +19290,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19290
19290
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19291
19291
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19292
19292
|
|
|
19293
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19293
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
|
|
19294
19294
|
* _import_umath()
|
|
19295
19295
|
* except Exception:
|
|
19296
19296
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19305,7 +19305,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19305
19305
|
}
|
|
19306
19306
|
goto __pyx_L5_except_error;
|
|
19307
19307
|
|
|
19308
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19308
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19309
19309
|
*
|
|
19310
19310
|
* cdef inline int import_ufunc() except -1:
|
|
19311
19311
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19321,7 +19321,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19321
19321
|
__pyx_L8_try_end:;
|
|
19322
19322
|
}
|
|
19323
19323
|
|
|
19324
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19324
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
19325
19325
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19326
19326
|
*
|
|
19327
19327
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19344,7 +19344,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19344
19344
|
return __pyx_r;
|
|
19345
19345
|
}
|
|
19346
19346
|
|
|
19347
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19347
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
|
|
19348
19348
|
*
|
|
19349
19349
|
*
|
|
19350
19350
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19355,7 +19355,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19355
19355
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
19356
19356
|
int __pyx_r;
|
|
19357
19357
|
|
|
19358
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19358
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
19359
19359
|
* bool
|
|
19360
19360
|
* """
|
|
19361
19361
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19365,7 +19365,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19365
19365
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
19366
19366
|
goto __pyx_L0;
|
|
19367
19367
|
|
|
19368
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19368
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
|
|
19369
19369
|
*
|
|
19370
19370
|
*
|
|
19371
19371
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19378,7 +19378,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19378
19378
|
return __pyx_r;
|
|
19379
19379
|
}
|
|
19380
19380
|
|
|
19381
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19381
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
19382
19382
|
*
|
|
19383
19383
|
*
|
|
19384
19384
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19389,7 +19389,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19389
19389
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
19390
19390
|
int __pyx_r;
|
|
19391
19391
|
|
|
19392
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19392
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
19393
19393
|
* bool
|
|
19394
19394
|
* """
|
|
19395
19395
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19399,7 +19399,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19399
19399
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
19400
19400
|
goto __pyx_L0;
|
|
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":1017
|
|
19403
19403
|
*
|
|
19404
19404
|
*
|
|
19405
19405
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19412,7 +19412,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19412
19412
|
return __pyx_r;
|
|
19413
19413
|
}
|
|
19414
19414
|
|
|
19415
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19415
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
19416
19416
|
*
|
|
19417
19417
|
*
|
|
19418
19418
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19423,7 +19423,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19423
19423
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
19424
19424
|
npy_datetime __pyx_r;
|
|
19425
19425
|
|
|
19426
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19426
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
|
|
19427
19427
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
19428
19428
|
* """
|
|
19429
19429
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19433,7 +19433,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19433
19433
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
19434
19434
|
goto __pyx_L0;
|
|
19435
19435
|
|
|
19436
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19436
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
19437
19437
|
*
|
|
19438
19438
|
*
|
|
19439
19439
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19446,7 +19446,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19446
19446
|
return __pyx_r;
|
|
19447
19447
|
}
|
|
19448
19448
|
|
|
19449
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19449
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
|
|
19450
19450
|
*
|
|
19451
19451
|
*
|
|
19452
19452
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19457,7 +19457,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19457
19457
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
19458
19458
|
npy_timedelta __pyx_r;
|
|
19459
19459
|
|
|
19460
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19460
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
|
|
19461
19461
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
19462
19462
|
* """
|
|
19463
19463
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19467,7 +19467,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19467
19467
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
19468
19468
|
goto __pyx_L0;
|
|
19469
19469
|
|
|
19470
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19470
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
|
|
19471
19471
|
*
|
|
19472
19472
|
*
|
|
19473
19473
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19480,7 +19480,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19480
19480
|
return __pyx_r;
|
|
19481
19481
|
}
|
|
19482
19482
|
|
|
19483
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19483
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
|
|
19484
19484
|
*
|
|
19485
19485
|
*
|
|
19486
19486
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19491,7 +19491,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19491
19491
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
19492
19492
|
NPY_DATETIMEUNIT __pyx_r;
|
|
19493
19493
|
|
|
19494
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19494
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1053
|
|
19495
19495
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
19496
19496
|
* """
|
|
19497
19497
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -19499,7 +19499,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
19499
19499
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
19500
19500
|
goto __pyx_L0;
|
|
19501
19501
|
|
|
19502
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19502
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
|
|
19503
19503
|
*
|
|
19504
19504
|
*
|
|
19505
19505
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -24938,7 +24938,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
24938
24938
|
__Pyx_GOTREF(__pyx_tuple__8);
|
|
24939
24939
|
__Pyx_GIVEREF(__pyx_tuple__8);
|
|
24940
24940
|
|
|
24941
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
24941
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
24942
24942
|
* __pyx_import_array()
|
|
24943
24943
|
* except Exception:
|
|
24944
24944
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -24949,7 +24949,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
24949
24949
|
__Pyx_GOTREF(__pyx_tuple__9);
|
|
24950
24950
|
__Pyx_GIVEREF(__pyx_tuple__9);
|
|
24951
24951
|
|
|
24952
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
24952
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
24953
24953
|
* _import_umath()
|
|
24954
24954
|
* except Exception:
|
|
24955
24955
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|