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 # <<<<<<<<<<<<<<
|
|
@@ -1902,7 +1902,7 @@ struct __pyx_MemviewEnum_obj;
|
|
|
1902
1902
|
struct __pyx_memoryview_obj;
|
|
1903
1903
|
struct __pyx_memoryviewslice_obj;
|
|
1904
1904
|
|
|
1905
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1905
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1906
1906
|
* ctypedef npy_longdouble longdouble_t
|
|
1907
1907
|
*
|
|
1908
1908
|
* ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
|
|
@@ -1911,7 +1911,7 @@ struct __pyx_memoryviewslice_obj;
|
|
|
1911
1911
|
*/
|
|
1912
1912
|
typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
1913
1913
|
|
|
1914
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1914
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
|
|
1915
1915
|
*
|
|
1916
1916
|
* ctypedef npy_cfloat cfloat_t
|
|
1917
1917
|
* ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1920,7 +1920,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
|
1920
1920
|
*/
|
|
1921
1921
|
typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
1922
1922
|
|
|
1923
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1923
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
|
|
1924
1924
|
* ctypedef npy_cfloat cfloat_t
|
|
1925
1925
|
* ctypedef npy_cdouble cdouble_t
|
|
1926
1926
|
* ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1929,7 +1929,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
|
1929
1929
|
*/
|
|
1930
1930
|
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
|
|
1931
1931
|
|
|
1932
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1932
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":775
|
|
1933
1933
|
* ctypedef npy_clongdouble clongdouble_t
|
|
1934
1934
|
*
|
|
1935
1935
|
* ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
|
|
@@ -18306,7 +18306,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18306
18306
|
return __pyx_r;
|
|
18307
18307
|
}
|
|
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":246
|
|
18310
18310
|
*
|
|
18311
18311
|
* @property
|
|
18312
18312
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18317,7 +18317,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18317
18317
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
18318
18318
|
PyObject *__pyx_r;
|
|
18319
18319
|
|
|
18320
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18320
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":249
|
|
18321
18321
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
18322
18322
|
* """
|
|
18323
18323
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -18327,7 +18327,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18327
18327
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
18328
18328
|
goto __pyx_L0;
|
|
18329
18329
|
|
|
18330
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18330
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
|
|
18331
18331
|
*
|
|
18332
18332
|
* @property
|
|
18333
18333
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18340,7 +18340,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18340
18340
|
return __pyx_r;
|
|
18341
18341
|
}
|
|
18342
18342
|
|
|
18343
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18343
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
|
|
18344
18344
|
*
|
|
18345
18345
|
* @property
|
|
18346
18346
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18354,7 +18354,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18354
18354
|
PyArray_Descr *__pyx_t_1;
|
|
18355
18355
|
__Pyx_RefNannySetupContext("descr", 1);
|
|
18356
18356
|
|
|
18357
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18357
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":255
|
|
18358
18358
|
* """Returns an owned reference to the dtype of the array.
|
|
18359
18359
|
* """
|
|
18360
18360
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -18367,7 +18367,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18367
18367
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
18368
18368
|
goto __pyx_L0;
|
|
18369
18369
|
|
|
18370
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18370
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
|
|
18371
18371
|
*
|
|
18372
18372
|
* @property
|
|
18373
18373
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18382,7 +18382,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18382
18382
|
return __pyx_r;
|
|
18383
18383
|
}
|
|
18384
18384
|
|
|
18385
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18385
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
|
|
18386
18386
|
*
|
|
18387
18387
|
* @property
|
|
18388
18388
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18393,7 +18393,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18393
18393
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
18394
18394
|
int __pyx_r;
|
|
18395
18395
|
|
|
18396
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18396
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":261
|
|
18397
18397
|
* """Returns the number of dimensions in the array.
|
|
18398
18398
|
* """
|
|
18399
18399
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -18403,7 +18403,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18403
18403
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
18404
18404
|
goto __pyx_L0;
|
|
18405
18405
|
|
|
18406
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18406
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
|
|
18407
18407
|
*
|
|
18408
18408
|
* @property
|
|
18409
18409
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18416,7 +18416,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18416
18416
|
return __pyx_r;
|
|
18417
18417
|
}
|
|
18418
18418
|
|
|
18419
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18419
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
|
|
18420
18420
|
*
|
|
18421
18421
|
* @property
|
|
18422
18422
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18427,7 +18427,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18427
18427
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
18428
18428
|
npy_intp *__pyx_r;
|
|
18429
18429
|
|
|
18430
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18430
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":269
|
|
18431
18431
|
* Can return NULL for 0-dimensional arrays.
|
|
18432
18432
|
* """
|
|
18433
18433
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -18437,7 +18437,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18437
18437
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
18438
18438
|
goto __pyx_L0;
|
|
18439
18439
|
|
|
18440
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18440
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
|
|
18441
18441
|
*
|
|
18442
18442
|
* @property
|
|
18443
18443
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18450,7 +18450,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18450
18450
|
return __pyx_r;
|
|
18451
18451
|
}
|
|
18452
18452
|
|
|
18453
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18453
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
|
|
18454
18454
|
*
|
|
18455
18455
|
* @property
|
|
18456
18456
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18461,7 +18461,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18461
18461
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
18462
18462
|
npy_intp *__pyx_r;
|
|
18463
18463
|
|
|
18464
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18464
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":276
|
|
18465
18465
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
18466
18466
|
* """
|
|
18467
18467
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -18471,7 +18471,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18471
18471
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
18472
18472
|
goto __pyx_L0;
|
|
18473
18473
|
|
|
18474
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18474
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
|
|
18475
18475
|
*
|
|
18476
18476
|
* @property
|
|
18477
18477
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18484,7 +18484,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18484
18484
|
return __pyx_r;
|
|
18485
18485
|
}
|
|
18486
18486
|
|
|
18487
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18487
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
|
|
18488
18488
|
*
|
|
18489
18489
|
* @property
|
|
18490
18490
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18495,7 +18495,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18495
18495
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
18496
18496
|
npy_intp __pyx_r;
|
|
18497
18497
|
|
|
18498
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18498
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":282
|
|
18499
18499
|
* """Returns the total size (in number of elements) of the array.
|
|
18500
18500
|
* """
|
|
18501
18501
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -18505,7 +18505,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18505
18505
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
18506
18506
|
goto __pyx_L0;
|
|
18507
18507
|
|
|
18508
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18508
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
|
|
18509
18509
|
*
|
|
18510
18510
|
* @property
|
|
18511
18511
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18518,7 +18518,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18518
18518
|
return __pyx_r;
|
|
18519
18519
|
}
|
|
18520
18520
|
|
|
18521
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18521
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
18522
18522
|
*
|
|
18523
18523
|
* @property
|
|
18524
18524
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18529,7 +18529,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18529
18529
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
18530
18530
|
char *__pyx_r;
|
|
18531
18531
|
|
|
18532
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18532
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":291
|
|
18533
18533
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
18534
18534
|
* """
|
|
18535
18535
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -18539,7 +18539,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18539
18539
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
18540
18540
|
goto __pyx_L0;
|
|
18541
18541
|
|
|
18542
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18542
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
18543
18543
|
*
|
|
18544
18544
|
* @property
|
|
18545
18545
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18552,7 +18552,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18552
18552
|
return __pyx_r;
|
|
18553
18553
|
}
|
|
18554
18554
|
|
|
18555
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18555
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
18556
18556
|
* ctypedef npy_cdouble complex_t
|
|
18557
18557
|
*
|
|
18558
18558
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18569,7 +18569,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18569
18569
|
int __pyx_clineno = 0;
|
|
18570
18570
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
|
|
18571
18571
|
|
|
18572
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18572
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":778
|
|
18573
18573
|
*
|
|
18574
18574
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
18575
18575
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -18583,7 +18583,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18583
18583
|
__pyx_t_1 = 0;
|
|
18584
18584
|
goto __pyx_L0;
|
|
18585
18585
|
|
|
18586
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18586
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
18587
18587
|
* ctypedef npy_cdouble complex_t
|
|
18588
18588
|
*
|
|
18589
18589
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18602,7 +18602,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18602
18602
|
return __pyx_r;
|
|
18603
18603
|
}
|
|
18604
18604
|
|
|
18605
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18605
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
18606
18606
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18607
18607
|
*
|
|
18608
18608
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18619,7 +18619,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18619
18619
|
int __pyx_clineno = 0;
|
|
18620
18620
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
|
|
18621
18621
|
|
|
18622
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18622
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":781
|
|
18623
18623
|
*
|
|
18624
18624
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
18625
18625
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -18633,7 +18633,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18633
18633
|
__pyx_t_1 = 0;
|
|
18634
18634
|
goto __pyx_L0;
|
|
18635
18635
|
|
|
18636
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18636
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
18637
18637
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18638
18638
|
*
|
|
18639
18639
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18652,7 +18652,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18652
18652
|
return __pyx_r;
|
|
18653
18653
|
}
|
|
18654
18654
|
|
|
18655
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18655
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
|
|
18656
18656
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18657
18657
|
*
|
|
18658
18658
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18669,7 +18669,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18669
18669
|
int __pyx_clineno = 0;
|
|
18670
18670
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
|
|
18671
18671
|
|
|
18672
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18672
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":784
|
|
18673
18673
|
*
|
|
18674
18674
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
18675
18675
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -18683,7 +18683,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18683
18683
|
__pyx_t_1 = 0;
|
|
18684
18684
|
goto __pyx_L0;
|
|
18685
18685
|
|
|
18686
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18686
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
|
|
18687
18687
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18688
18688
|
*
|
|
18689
18689
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18702,7 +18702,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18702
18702
|
return __pyx_r;
|
|
18703
18703
|
}
|
|
18704
18704
|
|
|
18705
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18705
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
|
|
18706
18706
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
18707
18707
|
*
|
|
18708
18708
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -18719,7 +18719,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18719
18719
|
int __pyx_clineno = 0;
|
|
18720
18720
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
|
|
18721
18721
|
|
|
18722
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18722
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":787
|
|
18723
18723
|
*
|
|
18724
18724
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
18725
18725
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -18733,7 +18733,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18733
18733
|
__pyx_t_1 = 0;
|
|
18734
18734
|
goto __pyx_L0;
|
|
18735
18735
|
|
|
18736
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18736
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
|
|
18737
18737
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
18738
18738
|
*
|
|
18739
18739
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -18752,7 +18752,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18752
18752
|
return __pyx_r;
|
|
18753
18753
|
}
|
|
18754
18754
|
|
|
18755
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18755
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
18756
18756
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
18757
18757
|
*
|
|
18758
18758
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -18769,7 +18769,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18769
18769
|
int __pyx_clineno = 0;
|
|
18770
18770
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
|
|
18771
18771
|
|
|
18772
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18772
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
|
|
18773
18773
|
*
|
|
18774
18774
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
18775
18775
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -18783,7 +18783,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18783
18783
|
__pyx_t_1 = 0;
|
|
18784
18784
|
goto __pyx_L0;
|
|
18785
18785
|
|
|
18786
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18786
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
18787
18787
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
18788
18788
|
*
|
|
18789
18789
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -18802,7 +18802,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18802
18802
|
return __pyx_r;
|
|
18803
18803
|
}
|
|
18804
18804
|
|
|
18805
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18805
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
18806
18806
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
18807
18807
|
*
|
|
18808
18808
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -18816,7 +18816,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18816
18816
|
int __pyx_t_1;
|
|
18817
18817
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
|
|
18818
18818
|
|
|
18819
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18819
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
|
|
18820
18820
|
*
|
|
18821
18821
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18822
18822
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -18826,7 +18826,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18826
18826
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
18827
18827
|
if (__pyx_t_1) {
|
|
18828
18828
|
|
|
18829
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18829
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":794
|
|
18830
18830
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18831
18831
|
* if PyDataType_HASSUBARRAY(d):
|
|
18832
18832
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -18838,7 +18838,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18838
18838
|
__pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
|
|
18839
18839
|
goto __pyx_L0;
|
|
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":793
|
|
18842
18842
|
*
|
|
18843
18843
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18844
18844
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -18847,7 +18847,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18847
18847
|
*/
|
|
18848
18848
|
}
|
|
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":796
|
|
18851
18851
|
* return <tuple>d.subarray.shape
|
|
18852
18852
|
* else:
|
|
18853
18853
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -18861,7 +18861,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18861
18861
|
goto __pyx_L0;
|
|
18862
18862
|
}
|
|
18863
18863
|
|
|
18864
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18864
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
18865
18865
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
18866
18866
|
*
|
|
18867
18867
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -18876,7 +18876,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18876
18876
|
return __pyx_r;
|
|
18877
18877
|
}
|
|
18878
18878
|
|
|
18879
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18879
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
|
|
18880
18880
|
* int _import_umath() except -1
|
|
18881
18881
|
*
|
|
18882
18882
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -18886,7 +18886,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18886
18886
|
|
|
18887
18887
|
static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
|
|
18888
18888
|
|
|
18889
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18889
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
|
|
18890
18890
|
*
|
|
18891
18891
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
18892
18892
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -18895,7 +18895,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18895
18895
|
*/
|
|
18896
18896
|
Py_INCREF(__pyx_v_base);
|
|
18897
18897
|
|
|
18898
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18898
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
|
|
18899
18899
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
18900
18900
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
18901
18901
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -18904,7 +18904,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18904
18904
|
*/
|
|
18905
18905
|
(void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
|
|
18906
18906
|
|
|
18907
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18907
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
|
|
18908
18908
|
* int _import_umath() except -1
|
|
18909
18909
|
*
|
|
18910
18910
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -18915,7 +18915,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18915
18915
|
/* function exit code */
|
|
18916
18916
|
}
|
|
18917
18917
|
|
|
18918
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18918
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
|
|
18919
18919
|
* PyArray_SetBaseObject(arr, base)
|
|
18920
18920
|
*
|
|
18921
18921
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -18930,7 +18930,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18930
18930
|
int __pyx_t_1;
|
|
18931
18931
|
__Pyx_RefNannySetupContext("get_array_base", 1);
|
|
18932
18932
|
|
|
18933
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18933
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
|
|
18934
18934
|
*
|
|
18935
18935
|
* cdef inline object get_array_base(ndarray arr):
|
|
18936
18936
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -18939,7 +18939,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18939
18939
|
*/
|
|
18940
18940
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
18941
18941
|
|
|
18942
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18942
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
|
|
18943
18943
|
* cdef inline object get_array_base(ndarray arr):
|
|
18944
18944
|
* base = PyArray_BASE(arr)
|
|
18945
18945
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -18949,7 +18949,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18949
18949
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
18950
18950
|
if (__pyx_t_1) {
|
|
18951
18951
|
|
|
18952
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18952
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
|
|
18953
18953
|
* base = PyArray_BASE(arr)
|
|
18954
18954
|
* if base is NULL:
|
|
18955
18955
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -18960,7 +18960,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18960
18960
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
18961
18961
|
goto __pyx_L0;
|
|
18962
18962
|
|
|
18963
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18963
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
|
|
18964
18964
|
* cdef inline object get_array_base(ndarray arr):
|
|
18965
18965
|
* base = PyArray_BASE(arr)
|
|
18966
18966
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -18969,7 +18969,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18969
18969
|
*/
|
|
18970
18970
|
}
|
|
18971
18971
|
|
|
18972
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18972
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":979
|
|
18973
18973
|
* if base is NULL:
|
|
18974
18974
|
* return None
|
|
18975
18975
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -18981,7 +18981,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18981
18981
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
18982
18982
|
goto __pyx_L0;
|
|
18983
18983
|
|
|
18984
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18984
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
|
|
18985
18985
|
* PyArray_SetBaseObject(arr, base)
|
|
18986
18986
|
*
|
|
18987
18987
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -18996,7 +18996,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18996
18996
|
return __pyx_r;
|
|
18997
18997
|
}
|
|
18998
18998
|
|
|
18999
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18999
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19000
19000
|
* # Versions of the import_* functions which are more suitable for
|
|
19001
19001
|
* # Cython code.
|
|
19002
19002
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19020,7 +19020,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19020
19020
|
int __pyx_clineno = 0;
|
|
19021
19021
|
__Pyx_RefNannySetupContext("import_array", 1);
|
|
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":984
|
|
19024
19024
|
* # Cython code.
|
|
19025
19025
|
* cdef inline int import_array() except -1:
|
|
19026
19026
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19036,7 +19036,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19036
19036
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19037
19037
|
/*try:*/ {
|
|
19038
19038
|
|
|
19039
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19039
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
|
|
19040
19040
|
* cdef inline int import_array() except -1:
|
|
19041
19041
|
* try:
|
|
19042
19042
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -19045,7 +19045,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19045
19045
|
*/
|
|
19046
19046
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 985, __pyx_L3_error)
|
|
19047
19047
|
|
|
19048
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19048
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19049
19049
|
* # Cython code.
|
|
19050
19050
|
* cdef inline int import_array() except -1:
|
|
19051
19051
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19059,7 +19059,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19059
19059
|
goto __pyx_L8_try_end;
|
|
19060
19060
|
__pyx_L3_error:;
|
|
19061
19061
|
|
|
19062
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19062
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
|
|
19063
19063
|
* try:
|
|
19064
19064
|
* __pyx_import_array()
|
|
19065
19065
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19074,7 +19074,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19074
19074
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19075
19075
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19076
19076
|
|
|
19077
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19077
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
19078
19078
|
* __pyx_import_array()
|
|
19079
19079
|
* except Exception:
|
|
19080
19080
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19089,7 +19089,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19089
19089
|
}
|
|
19090
19090
|
goto __pyx_L5_except_error;
|
|
19091
19091
|
|
|
19092
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19092
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19093
19093
|
* # Cython code.
|
|
19094
19094
|
* cdef inline int import_array() except -1:
|
|
19095
19095
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19105,7 +19105,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19105
19105
|
__pyx_L8_try_end:;
|
|
19106
19106
|
}
|
|
19107
19107
|
|
|
19108
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19108
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19109
19109
|
* # Versions of the import_* functions which are more suitable for
|
|
19110
19110
|
* # Cython code.
|
|
19111
19111
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19128,7 +19128,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19128
19128
|
return __pyx_r;
|
|
19129
19129
|
}
|
|
19130
19130
|
|
|
19131
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19131
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19132
19132
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19133
19133
|
*
|
|
19134
19134
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19152,7 +19152,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19152
19152
|
int __pyx_clineno = 0;
|
|
19153
19153
|
__Pyx_RefNannySetupContext("import_umath", 1);
|
|
19154
19154
|
|
|
19155
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19155
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19156
19156
|
*
|
|
19157
19157
|
* cdef inline int import_umath() except -1:
|
|
19158
19158
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19168,7 +19168,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19168
19168
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19169
19169
|
/*try:*/ {
|
|
19170
19170
|
|
|
19171
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19171
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
|
|
19172
19172
|
* cdef inline int import_umath() except -1:
|
|
19173
19173
|
* try:
|
|
19174
19174
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19177,7 +19177,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19177
19177
|
*/
|
|
19178
19178
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 991, __pyx_L3_error)
|
|
19179
19179
|
|
|
19180
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19180
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19181
19181
|
*
|
|
19182
19182
|
* cdef inline int import_umath() except -1:
|
|
19183
19183
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19191,7 +19191,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19191
19191
|
goto __pyx_L8_try_end;
|
|
19192
19192
|
__pyx_L3_error:;
|
|
19193
19193
|
|
|
19194
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19194
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
|
|
19195
19195
|
* try:
|
|
19196
19196
|
* _import_umath()
|
|
19197
19197
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19206,7 +19206,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19206
19206
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19207
19207
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19208
19208
|
|
|
19209
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19209
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
19210
19210
|
* _import_umath()
|
|
19211
19211
|
* except Exception:
|
|
19212
19212
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19221,7 +19221,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19221
19221
|
}
|
|
19222
19222
|
goto __pyx_L5_except_error;
|
|
19223
19223
|
|
|
19224
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19224
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19225
19225
|
*
|
|
19226
19226
|
* cdef inline int import_umath() except -1:
|
|
19227
19227
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19237,7 +19237,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19237
19237
|
__pyx_L8_try_end:;
|
|
19238
19238
|
}
|
|
19239
19239
|
|
|
19240
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19240
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19241
19241
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19242
19242
|
*
|
|
19243
19243
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19260,7 +19260,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19260
19260
|
return __pyx_r;
|
|
19261
19261
|
}
|
|
19262
19262
|
|
|
19263
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19263
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
19264
19264
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19265
19265
|
*
|
|
19266
19266
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19284,7 +19284,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19284
19284
|
int __pyx_clineno = 0;
|
|
19285
19285
|
__Pyx_RefNannySetupContext("import_ufunc", 1);
|
|
19286
19286
|
|
|
19287
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19287
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19288
19288
|
*
|
|
19289
19289
|
* cdef inline int import_ufunc() except -1:
|
|
19290
19290
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19300,7 +19300,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19300
19300
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19301
19301
|
/*try:*/ {
|
|
19302
19302
|
|
|
19303
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19303
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
|
|
19304
19304
|
* cdef inline int import_ufunc() except -1:
|
|
19305
19305
|
* try:
|
|
19306
19306
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19309,7 +19309,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19309
19309
|
*/
|
|
19310
19310
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 997, __pyx_L3_error)
|
|
19311
19311
|
|
|
19312
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19312
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19313
19313
|
*
|
|
19314
19314
|
* cdef inline int import_ufunc() except -1:
|
|
19315
19315
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19323,7 +19323,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19323
19323
|
goto __pyx_L8_try_end;
|
|
19324
19324
|
__pyx_L3_error:;
|
|
19325
19325
|
|
|
19326
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19326
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
|
|
19327
19327
|
* try:
|
|
19328
19328
|
* _import_umath()
|
|
19329
19329
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19338,7 +19338,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19338
19338
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19339
19339
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19340
19340
|
|
|
19341
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19341
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
|
|
19342
19342
|
* _import_umath()
|
|
19343
19343
|
* except Exception:
|
|
19344
19344
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19353,7 +19353,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19353
19353
|
}
|
|
19354
19354
|
goto __pyx_L5_except_error;
|
|
19355
19355
|
|
|
19356
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19356
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19357
19357
|
*
|
|
19358
19358
|
* cdef inline int import_ufunc() except -1:
|
|
19359
19359
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19369,7 +19369,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19369
19369
|
__pyx_L8_try_end:;
|
|
19370
19370
|
}
|
|
19371
19371
|
|
|
19372
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19372
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
19373
19373
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19374
19374
|
*
|
|
19375
19375
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19392,7 +19392,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19392
19392
|
return __pyx_r;
|
|
19393
19393
|
}
|
|
19394
19394
|
|
|
19395
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19395
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
|
|
19396
19396
|
*
|
|
19397
19397
|
*
|
|
19398
19398
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19403,7 +19403,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19403
19403
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
19404
19404
|
int __pyx_r;
|
|
19405
19405
|
|
|
19406
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19406
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
19407
19407
|
* bool
|
|
19408
19408
|
* """
|
|
19409
19409
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19413,7 +19413,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19413
19413
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
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":1002
|
|
19417
19417
|
*
|
|
19418
19418
|
*
|
|
19419
19419
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19426,7 +19426,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19426
19426
|
return __pyx_r;
|
|
19427
19427
|
}
|
|
19428
19428
|
|
|
19429
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19429
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
19430
19430
|
*
|
|
19431
19431
|
*
|
|
19432
19432
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19437,7 +19437,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19437
19437
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
19438
19438
|
int __pyx_r;
|
|
19439
19439
|
|
|
19440
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19440
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
19441
19441
|
* bool
|
|
19442
19442
|
* """
|
|
19443
19443
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19447,7 +19447,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19447
19447
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
19448
19448
|
goto __pyx_L0;
|
|
19449
19449
|
|
|
19450
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19450
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
19451
19451
|
*
|
|
19452
19452
|
*
|
|
19453
19453
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19460,7 +19460,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19460
19460
|
return __pyx_r;
|
|
19461
19461
|
}
|
|
19462
19462
|
|
|
19463
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19463
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
19464
19464
|
*
|
|
19465
19465
|
*
|
|
19466
19466
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19471,7 +19471,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19471
19471
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
19472
19472
|
npy_datetime __pyx_r;
|
|
19473
19473
|
|
|
19474
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19474
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
|
|
19475
19475
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
19476
19476
|
* """
|
|
19477
19477
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19481,7 +19481,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19481
19481
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
19482
19482
|
goto __pyx_L0;
|
|
19483
19483
|
|
|
19484
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19484
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
19485
19485
|
*
|
|
19486
19486
|
*
|
|
19487
19487
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19494,7 +19494,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19494
19494
|
return __pyx_r;
|
|
19495
19495
|
}
|
|
19496
19496
|
|
|
19497
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19497
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
|
|
19498
19498
|
*
|
|
19499
19499
|
*
|
|
19500
19500
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19505,7 +19505,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19505
19505
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
19506
19506
|
npy_timedelta __pyx_r;
|
|
19507
19507
|
|
|
19508
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19508
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
|
|
19509
19509
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
19510
19510
|
* """
|
|
19511
19511
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19515,7 +19515,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19515
19515
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
19516
19516
|
goto __pyx_L0;
|
|
19517
19517
|
|
|
19518
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19518
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
|
|
19519
19519
|
*
|
|
19520
19520
|
*
|
|
19521
19521
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19528,7 +19528,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19528
19528
|
return __pyx_r;
|
|
19529
19529
|
}
|
|
19530
19530
|
|
|
19531
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19531
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
|
|
19532
19532
|
*
|
|
19533
19533
|
*
|
|
19534
19534
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19539,7 +19539,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19539
19539
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
19540
19540
|
NPY_DATETIMEUNIT __pyx_r;
|
|
19541
19541
|
|
|
19542
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19542
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1053
|
|
19543
19543
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
19544
19544
|
* """
|
|
19545
19545
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -19547,7 +19547,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
19547
19547
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
19548
19548
|
goto __pyx_L0;
|
|
19549
19549
|
|
|
19550
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19550
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
|
|
19551
19551
|
*
|
|
19552
19552
|
*
|
|
19553
19553
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -22493,7 +22493,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
22493
22493
|
__Pyx_GOTREF(__pyx_tuple__8);
|
|
22494
22494
|
__Pyx_GIVEREF(__pyx_tuple__8);
|
|
22495
22495
|
|
|
22496
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
22496
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
22497
22497
|
* __pyx_import_array()
|
|
22498
22498
|
* except Exception:
|
|
22499
22499
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -22504,7 +22504,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
22504
22504
|
__Pyx_GOTREF(__pyx_tuple__9);
|
|
22505
22505
|
__Pyx_GIVEREF(__pyx_tuple__9);
|
|
22506
22506
|
|
|
22507
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
22507
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
22508
22508
|
* _import_umath()
|
|
22509
22509
|
* except Exception:
|
|
22510
22510
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|