biotite 0.39.0__cp312-cp312-win_amd64.whl → 0.40.0__cp312-cp312-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 +3 -3
- biotite/application/dssp/app.py +18 -18
- biotite/database/rcsb/download.py +19 -14
- biotite/sequence/align/banded.c +256 -235
- biotite/sequence/align/banded.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/kmeralphabet.c +241 -220
- biotite/sequence/align/kmeralphabet.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/kmersimilarity.c +213 -194
- biotite/sequence/align/kmersimilarity.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.cpp +231 -203
- biotite/sequence/align/localgapped.c +256 -235
- biotite/sequence/align/localgapped.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/localungapped.c +233 -212
- biotite/sequence/align/localungapped.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/multiple.c +253 -232
- biotite/sequence/align/multiple.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/pairwise.c +272 -251
- biotite/sequence/align/pairwise.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/permutation.c +213 -194
- biotite/sequence/align/permutation.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/selector.c +215 -195
- biotite/sequence/align/selector.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/tracetable.c +213 -193
- biotite/sequence/align/tracetable.cp312-win_amd64.pyd +0 -0
- biotite/sequence/codec.c +233 -212
- biotite/sequence/codec.cp312-win_amd64.pyd +0 -0
- biotite/sequence/phylo/nj.c +213 -194
- biotite/sequence/phylo/nj.cp312-win_amd64.pyd +0 -0
- biotite/sequence/phylo/tree.c +225 -200
- biotite/sequence/phylo/tree.cp312-win_amd64.pyd +0 -0
- biotite/sequence/phylo/upgma.c +213 -194
- biotite/sequence/phylo/upgma.cp312-win_amd64.pyd +0 -0
- biotite/structure/basepairs.py +7 -12
- biotite/structure/bonds.c +1173 -1224
- biotite/structure/bonds.cp312-win_amd64.pyd +0 -0
- biotite/structure/celllist.c +215 -195
- biotite/structure/celllist.cp312-win_amd64.pyd +0 -0
- biotite/structure/charges.c +1050 -1099
- biotite/structure/charges.cp312-win_amd64.pyd +0 -0
- biotite/structure/filter.py +30 -37
- biotite/structure/info/__init__.py +5 -8
- biotite/structure/info/atoms.py +25 -67
- biotite/structure/info/bonds.py +46 -100
- biotite/structure/info/ccd/README.rst +8 -0
- biotite/structure/info/ccd/amino_acids.txt +1646 -0
- biotite/structure/info/ccd/carbohydrates.txt +1133 -0
- biotite/structure/info/ccd/components.bcif +0 -0
- biotite/structure/info/ccd/nucleotides.txt +797 -0
- biotite/structure/info/ccd.py +95 -0
- biotite/structure/info/groups.py +90 -0
- biotite/structure/info/masses.py +21 -20
- biotite/structure/info/misc.py +11 -22
- biotite/structure/info/standardize.py +17 -12
- biotite/structure/io/__init__.py +2 -4
- biotite/structure/io/ctab.py +1 -1
- biotite/structure/io/general.py +37 -43
- biotite/structure/io/mmtf/__init__.py +3 -0
- biotite/structure/io/mmtf/convertarray.c +217 -196
- biotite/structure/io/mmtf/convertarray.cp312-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/convertfile.c +215 -195
- biotite/structure/io/mmtf/convertfile.cp312-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/decode.c +223 -202
- biotite/structure/io/mmtf/decode.cp312-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/encode.c +213 -194
- biotite/structure/io/mmtf/encode.cp312-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/file.py +34 -26
- biotite/structure/io/npz/__init__.py +3 -0
- biotite/structure/io/npz/file.py +21 -18
- biotite/structure/io/pdb/__init__.py +3 -3
- biotite/structure/io/pdb/file.py +5 -3
- biotite/structure/io/pdb/hybrid36.c +63 -43
- biotite/structure/io/pdb/hybrid36.cp312-win_amd64.pyd +0 -0
- biotite/structure/io/pdbqt/file.py +32 -32
- biotite/structure/io/pdbx/__init__.py +13 -6
- biotite/structure/io/pdbx/bcif.py +649 -0
- biotite/structure/io/pdbx/cif.py +1028 -0
- biotite/structure/io/pdbx/component.py +243 -0
- biotite/structure/io/pdbx/convert.py +707 -359
- biotite/structure/io/pdbx/encoding.c +112803 -0
- biotite/structure/io/pdbx/encoding.cp312-win_amd64.pyd +0 -0
- biotite/structure/io/pdbx/error.py +14 -0
- biotite/structure/io/pdbx/legacy.py +267 -0
- biotite/structure/molecules.py +151 -151
- biotite/structure/sasa.c +213 -194
- biotite/structure/sasa.cp312-win_amd64.pyd +0 -0
- biotite/structure/superimpose.py +158 -115
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/METADATA +2 -2
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/RECORD +92 -90
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/WHEEL +1 -1
- biotite/structure/info/amino_acids.json +0 -1556
- biotite/structure/info/amino_acids.py +0 -42
- biotite/structure/info/carbohydrates.json +0 -1122
- biotite/structure/info/carbohydrates.py +0 -39
- biotite/structure/info/intra_bonds.msgpack +0 -0
- biotite/structure/info/link_types.msgpack +0 -1
- biotite/structure/info/nucleotides.json +0 -772
- biotite/structure/info/nucleotides.py +0 -39
- biotite/structure/info/residue_masses.msgpack +0 -0
- biotite/structure/info/residue_names.msgpack +0 -3
- biotite/structure/info/residues.msgpack +0 -0
- biotite/structure/io/pdbx/file.py +0 -652
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/LICENSE.rst +0 -0
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/top_level.txt +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Generated by Cython 3.0.
|
|
1
|
+
/* Generated by Cython 3.0.10 */
|
|
2
2
|
|
|
3
3
|
/* BEGIN: Cython Metadata
|
|
4
4
|
{
|
|
@@ -37,10 +37,10 @@ END: Cython Metadata */
|
|
|
37
37
|
#else
|
|
38
38
|
#define __PYX_EXTRA_ABI_MODULE_NAME ""
|
|
39
39
|
#endif
|
|
40
|
-
#define CYTHON_ABI "
|
|
40
|
+
#define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
|
|
41
41
|
#define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
|
|
42
42
|
#define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
|
|
43
|
-
#define CYTHON_HEX_VERSION
|
|
43
|
+
#define CYTHON_HEX_VERSION 0x03000AF0
|
|
44
44
|
#define CYTHON_FUTURE_DIVISION 1
|
|
45
45
|
#include <stddef.h>
|
|
46
46
|
#ifndef offsetof
|
|
@@ -132,6 +132,8 @@ END: Cython Metadata */
|
|
|
132
132
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
133
133
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
134
134
|
#endif
|
|
135
|
+
#undef CYTHON_USE_FREELISTS
|
|
136
|
+
#define CYTHON_USE_FREELISTS 0
|
|
135
137
|
#elif defined(PYPY_VERSION)
|
|
136
138
|
#define CYTHON_COMPILING_IN_PYPY 1
|
|
137
139
|
#define CYTHON_COMPILING_IN_CPYTHON 0
|
|
@@ -193,6 +195,8 @@ END: Cython Metadata */
|
|
|
193
195
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
194
196
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
195
197
|
#endif
|
|
198
|
+
#undef CYTHON_USE_FREELISTS
|
|
199
|
+
#define CYTHON_USE_FREELISTS 0
|
|
196
200
|
#elif defined(CYTHON_LIMITED_API)
|
|
197
201
|
#ifdef Py_LIMITED_API
|
|
198
202
|
#undef __PYX_LIMITED_VERSION_HEX
|
|
@@ -254,6 +258,8 @@ END: Cython Metadata */
|
|
|
254
258
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
255
259
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
256
260
|
#endif
|
|
261
|
+
#undef CYTHON_USE_FREELISTS
|
|
262
|
+
#define CYTHON_USE_FREELISTS 0
|
|
257
263
|
#elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
|
|
258
264
|
#define CYTHON_COMPILING_IN_PYPY 0
|
|
259
265
|
#define CYTHON_COMPILING_IN_CPYTHON 0
|
|
@@ -263,11 +269,17 @@ END: Cython Metadata */
|
|
|
263
269
|
#ifndef CYTHON_USE_TYPE_SLOTS
|
|
264
270
|
#define CYTHON_USE_TYPE_SLOTS 1
|
|
265
271
|
#endif
|
|
272
|
+
#ifndef CYTHON_USE_TYPE_SPECS
|
|
273
|
+
#define CYTHON_USE_TYPE_SPECS 0
|
|
274
|
+
#endif
|
|
266
275
|
#undef CYTHON_USE_PYTYPE_LOOKUP
|
|
267
276
|
#define CYTHON_USE_PYTYPE_LOOKUP 0
|
|
268
277
|
#ifndef CYTHON_USE_ASYNC_SLOTS
|
|
269
278
|
#define CYTHON_USE_ASYNC_SLOTS 1
|
|
270
279
|
#endif
|
|
280
|
+
#ifndef CYTHON_USE_PYLONG_INTERNALS
|
|
281
|
+
#define CYTHON_USE_PYLONG_INTERNALS 0
|
|
282
|
+
#endif
|
|
271
283
|
#undef CYTHON_USE_PYLIST_INTERNALS
|
|
272
284
|
#define CYTHON_USE_PYLIST_INTERNALS 0
|
|
273
285
|
#ifndef CYTHON_USE_UNICODE_INTERNALS
|
|
@@ -275,8 +287,6 @@ END: Cython Metadata */
|
|
|
275
287
|
#endif
|
|
276
288
|
#undef CYTHON_USE_UNICODE_WRITER
|
|
277
289
|
#define CYTHON_USE_UNICODE_WRITER 0
|
|
278
|
-
#undef CYTHON_USE_PYLONG_INTERNALS
|
|
279
|
-
#define CYTHON_USE_PYLONG_INTERNALS 0
|
|
280
290
|
#ifndef CYTHON_AVOID_BORROWED_REFS
|
|
281
291
|
#define CYTHON_AVOID_BORROWED_REFS 0
|
|
282
292
|
#endif
|
|
@@ -288,11 +298,22 @@ END: Cython Metadata */
|
|
|
288
298
|
#endif
|
|
289
299
|
#undef CYTHON_FAST_THREAD_STATE
|
|
290
300
|
#define CYTHON_FAST_THREAD_STATE 0
|
|
301
|
+
#undef CYTHON_FAST_GIL
|
|
302
|
+
#define CYTHON_FAST_GIL 0
|
|
303
|
+
#ifndef CYTHON_METH_FASTCALL
|
|
304
|
+
#define CYTHON_METH_FASTCALL 1
|
|
305
|
+
#endif
|
|
291
306
|
#undef CYTHON_FAST_PYCALL
|
|
292
307
|
#define CYTHON_FAST_PYCALL 0
|
|
308
|
+
#ifndef CYTHON_PEP487_INIT_SUBCLASS
|
|
309
|
+
#define CYTHON_PEP487_INIT_SUBCLASS 1
|
|
310
|
+
#endif
|
|
293
311
|
#ifndef CYTHON_PEP489_MULTI_PHASE_INIT
|
|
294
312
|
#define CYTHON_PEP489_MULTI_PHASE_INIT 1
|
|
295
313
|
#endif
|
|
314
|
+
#ifndef CYTHON_USE_MODULE_STATE
|
|
315
|
+
#define CYTHON_USE_MODULE_STATE 0
|
|
316
|
+
#endif
|
|
296
317
|
#ifndef CYTHON_USE_TP_FINALIZE
|
|
297
318
|
#define CYTHON_USE_TP_FINALIZE 1
|
|
298
319
|
#endif
|
|
@@ -300,6 +321,12 @@ END: Cython Metadata */
|
|
|
300
321
|
#define CYTHON_USE_DICT_VERSIONS 0
|
|
301
322
|
#undef CYTHON_USE_EXC_INFO_STACK
|
|
302
323
|
#define CYTHON_USE_EXC_INFO_STACK 0
|
|
324
|
+
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
325
|
+
#define CYTHON_UPDATE_DESCRIPTOR_DOC 1
|
|
326
|
+
#endif
|
|
327
|
+
#ifndef CYTHON_USE_FREELISTS
|
|
328
|
+
#define CYTHON_USE_FREELISTS 0
|
|
329
|
+
#endif
|
|
303
330
|
#else
|
|
304
331
|
#define CYTHON_COMPILING_IN_PYPY 0
|
|
305
332
|
#define CYTHON_COMPILING_IN_CPYTHON 1
|
|
@@ -390,6 +417,9 @@ END: Cython Metadata */
|
|
|
390
417
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
391
418
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 1
|
|
392
419
|
#endif
|
|
420
|
+
#ifndef CYTHON_USE_FREELISTS
|
|
421
|
+
#define CYTHON_USE_FREELISTS 1
|
|
422
|
+
#endif
|
|
393
423
|
#endif
|
|
394
424
|
#if !defined(CYTHON_FAST_PYCCALL)
|
|
395
425
|
#define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
|
|
@@ -582,14 +612,14 @@ END: Cython Metadata */
|
|
|
582
612
|
PyObject *exception_table = NULL;
|
|
583
613
|
PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
|
|
584
614
|
#if __PYX_LIMITED_VERSION_HEX < 0x030B0000
|
|
585
|
-
PyObject *version_info;
|
|
615
|
+
PyObject *version_info;
|
|
586
616
|
PyObject *py_minor_version = NULL;
|
|
587
617
|
#endif
|
|
588
618
|
long minor_version = 0;
|
|
589
619
|
PyObject *type, *value, *traceback;
|
|
590
620
|
PyErr_Fetch(&type, &value, &traceback);
|
|
591
621
|
#if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
|
|
592
|
-
minor_version = 11;
|
|
622
|
+
minor_version = 11;
|
|
593
623
|
#else
|
|
594
624
|
if (!(version_info = PySys_GetObject("version_info"))) goto end;
|
|
595
625
|
if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
|
|
@@ -647,7 +677,7 @@ END: Cython Metadata */
|
|
|
647
677
|
PyObject *fv, PyObject *cell, PyObject* fn,
|
|
648
678
|
PyObject *name, int fline, PyObject *lnos) {
|
|
649
679
|
PyCodeObject *result;
|
|
650
|
-
PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
|
|
680
|
+
PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
|
|
651
681
|
if (!empty_bytes) return NULL;
|
|
652
682
|
result =
|
|
653
683
|
#if PY_VERSION_HEX >= 0x030C0000
|
|
@@ -733,8 +763,13 @@ END: Cython Metadata */
|
|
|
733
763
|
typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
|
|
734
764
|
Py_ssize_t nargs, PyObject *kwnames);
|
|
735
765
|
#else
|
|
736
|
-
#
|
|
737
|
-
#define
|
|
766
|
+
#if PY_VERSION_HEX >= 0x030d00A4
|
|
767
|
+
# define __Pyx_PyCFunctionFast PyCFunctionFast
|
|
768
|
+
# define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
|
|
769
|
+
#else
|
|
770
|
+
# define __Pyx_PyCFunctionFast _PyCFunctionFast
|
|
771
|
+
# define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
|
|
772
|
+
#endif
|
|
738
773
|
#endif
|
|
739
774
|
#if CYTHON_METH_FASTCALL
|
|
740
775
|
#define __Pyx_METH_FASTCALL METH_FASTCALL
|
|
@@ -1086,7 +1121,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
|
|
|
1086
1121
|
#define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
|
|
1087
1122
|
#define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
|
|
1088
1123
|
#endif
|
|
1089
|
-
#if
|
|
1124
|
+
#if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
|
|
1090
1125
|
#define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
|
|
1091
1126
|
#else
|
|
1092
1127
|
static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
|
|
@@ -1173,7 +1208,7 @@ static CYTHON_INLINE float __PYX_NAN() {
|
|
|
1173
1208
|
#endif
|
|
1174
1209
|
|
|
1175
1210
|
#define __PYX_MARK_ERR_POS(f_index, lineno) \
|
|
1176
|
-
{ __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__;
|
|
1211
|
+
{ __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
|
|
1177
1212
|
#define __PYX_ERR(f_index, lineno, Ln_error) \
|
|
1178
1213
|
{ __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
|
|
1179
1214
|
|
|
@@ -1288,24 +1323,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
|
|
|
1288
1323
|
#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
|
|
1289
1324
|
#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
|
|
1290
1325
|
#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
|
|
1291
|
-
#if CYTHON_COMPILING_IN_LIMITED_API
|
|
1292
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
|
|
1293
|
-
{
|
|
1294
|
-
const wchar_t *u_end = u;
|
|
1295
|
-
while (*u_end++) ;
|
|
1296
|
-
return (size_t)(u_end - u - 1);
|
|
1297
|
-
}
|
|
1298
|
-
#else
|
|
1299
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
|
|
1300
|
-
{
|
|
1301
|
-
const Py_UNICODE *u_end = u;
|
|
1302
|
-
while (*u_end++) ;
|
|
1303
|
-
return (size_t)(u_end - u - 1);
|
|
1304
|
-
}
|
|
1305
|
-
#endif
|
|
1306
1326
|
#define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
|
|
1307
|
-
#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
|
|
1308
|
-
#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
|
|
1309
1327
|
#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
|
|
1310
1328
|
#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
|
|
1311
1329
|
#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
|
|
@@ -1355,7 +1373,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
|
|
|
1355
1373
|
#endif
|
|
1356
1374
|
typedef Py_ssize_t __Pyx_compact_pylong;
|
|
1357
1375
|
typedef size_t __Pyx_compact_upylong;
|
|
1358
|
-
#else
|
|
1376
|
+
#else
|
|
1359
1377
|
#define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
|
|
1360
1378
|
#define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
|
|
1361
1379
|
#define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
|
|
@@ -1645,7 +1663,7 @@ typedef struct {
|
|
|
1645
1663
|
|
|
1646
1664
|
/* #### Code section: numeric_typedefs ### */
|
|
1647
1665
|
|
|
1648
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1666
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":730
|
|
1649
1667
|
* # in Cython to enable them only on the right systems.
|
|
1650
1668
|
*
|
|
1651
1669
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
|
@@ -1654,7 +1672,7 @@ typedef struct {
|
|
|
1654
1672
|
*/
|
|
1655
1673
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1656
1674
|
|
|
1657
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1675
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
|
|
1658
1676
|
*
|
|
1659
1677
|
* ctypedef npy_int8 int8_t
|
|
1660
1678
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
|
@@ -1663,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
|
1663
1681
|
*/
|
|
1664
1682
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1665
1683
|
|
|
1666
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1684
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
|
|
1667
1685
|
* ctypedef npy_int8 int8_t
|
|
1668
1686
|
* ctypedef npy_int16 int16_t
|
|
1669
1687
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
|
@@ -1672,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
|
1672
1690
|
*/
|
|
1673
1691
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1674
1692
|
|
|
1675
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1693
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
|
|
1676
1694
|
* ctypedef npy_int16 int16_t
|
|
1677
1695
|
* ctypedef npy_int32 int32_t
|
|
1678
1696
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
|
@@ -1681,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
|
1681
1699
|
*/
|
|
1682
1700
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1683
1701
|
|
|
1684
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1702
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":737
|
|
1685
1703
|
* #ctypedef npy_int128 int128_t
|
|
1686
1704
|
*
|
|
1687
1705
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
|
@@ -1690,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
|
1690
1708
|
*/
|
|
1691
1709
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1692
1710
|
|
|
1693
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1711
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
|
|
1694
1712
|
*
|
|
1695
1713
|
* ctypedef npy_uint8 uint8_t
|
|
1696
1714
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
|
@@ -1699,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
|
1699
1717
|
*/
|
|
1700
1718
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1701
1719
|
|
|
1702
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1720
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
|
|
1703
1721
|
* ctypedef npy_uint8 uint8_t
|
|
1704
1722
|
* ctypedef npy_uint16 uint16_t
|
|
1705
1723
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
|
@@ -1708,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
|
1708
1726
|
*/
|
|
1709
1727
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1710
1728
|
|
|
1711
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1729
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
|
|
1712
1730
|
* ctypedef npy_uint16 uint16_t
|
|
1713
1731
|
* ctypedef npy_uint32 uint32_t
|
|
1714
1732
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
|
@@ -1717,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
|
1717
1735
|
*/
|
|
1718
1736
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1719
1737
|
|
|
1720
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1738
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":744
|
|
1721
1739
|
* #ctypedef npy_uint128 uint128_t
|
|
1722
1740
|
*
|
|
1723
1741
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
|
@@ -1726,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
|
1726
1744
|
*/
|
|
1727
1745
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1728
1746
|
|
|
1729
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1747
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
|
|
1730
1748
|
*
|
|
1731
1749
|
* ctypedef npy_float32 float32_t
|
|
1732
1750
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
|
@@ -1735,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
|
1735
1753
|
*/
|
|
1736
1754
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1737
1755
|
|
|
1738
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1756
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":754
|
|
1739
1757
|
* # The int types are mapped a bit surprising --
|
|
1740
1758
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1741
1759
|
* ctypedef npy_long int_t # <<<<<<<<<<<<<<
|
|
@@ -1744,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
|
1744
1762
|
*/
|
|
1745
1763
|
typedef npy_long __pyx_t_5numpy_int_t;
|
|
1746
1764
|
|
|
1747
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1765
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
|
|
1748
1766
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1749
1767
|
* ctypedef npy_long int_t
|
|
1750
1768
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
|
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
|
|
|
1753
1771
|
*/
|
|
1754
1772
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1755
1773
|
|
|
1756
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1774
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
|
|
1757
1775
|
* ctypedef npy_longlong longlong_t
|
|
1758
1776
|
*
|
|
1759
1777
|
* ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
|
|
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
|
1762
1780
|
*/
|
|
1763
1781
|
typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
1764
1782
|
|
|
1765
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1783
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
|
|
1766
1784
|
*
|
|
1767
1785
|
* ctypedef npy_ulong uint_t
|
|
1768
1786
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
|
@@ -1771,7 +1789,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
|
1771
1789
|
*/
|
|
1772
1790
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1773
1791
|
|
|
1774
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1792
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
|
|
1775
1793
|
* ctypedef npy_ulonglong ulonglong_t
|
|
1776
1794
|
*
|
|
1777
1795
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
|
@@ -1780,7 +1798,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
|
1780
1798
|
*/
|
|
1781
1799
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1782
1800
|
|
|
1783
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1801
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
|
|
1784
1802
|
*
|
|
1785
1803
|
* ctypedef npy_intp intp_t
|
|
1786
1804
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
|
@@ -1789,7 +1807,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
|
1789
1807
|
*/
|
|
1790
1808
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1791
1809
|
|
|
1792
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1810
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
|
|
1793
1811
|
* ctypedef npy_uintp uintp_t
|
|
1794
1812
|
*
|
|
1795
1813
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
|
@@ -1798,7 +1816,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
|
1798
1816
|
*/
|
|
1799
1817
|
typedef npy_double __pyx_t_5numpy_float_t;
|
|
1800
1818
|
|
|
1801
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1819
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
|
|
1802
1820
|
*
|
|
1803
1821
|
* ctypedef npy_double float_t
|
|
1804
1822
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
|
@@ -1807,7 +1825,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
|
1807
1825
|
*/
|
|
1808
1826
|
typedef npy_double __pyx_t_5numpy_double_t;
|
|
1809
1827
|
|
|
1810
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1828
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
|
|
1811
1829
|
* ctypedef npy_double float_t
|
|
1812
1830
|
* ctypedef npy_double double_t
|
|
1813
1831
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1920,7 +1938,7 @@ struct __pyx_MemviewEnum_obj;
|
|
|
1920
1938
|
struct __pyx_memoryview_obj;
|
|
1921
1939
|
struct __pyx_memoryviewslice_obj;
|
|
1922
1940
|
|
|
1923
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1941
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
|
|
1924
1942
|
* ctypedef npy_longdouble longdouble_t
|
|
1925
1943
|
*
|
|
1926
1944
|
* ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
|
|
@@ -1929,7 +1947,7 @@ struct __pyx_memoryviewslice_obj;
|
|
|
1929
1947
|
*/
|
|
1930
1948
|
typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
1931
1949
|
|
|
1932
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1950
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
|
|
1933
1951
|
*
|
|
1934
1952
|
* ctypedef npy_cfloat cfloat_t
|
|
1935
1953
|
* ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1938,7 +1956,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
|
1938
1956
|
*/
|
|
1939
1957
|
typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
1940
1958
|
|
|
1941
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1959
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
|
|
1942
1960
|
* ctypedef npy_cfloat cfloat_t
|
|
1943
1961
|
* ctypedef npy_cdouble cdouble_t
|
|
1944
1962
|
* ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1947,7 +1965,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
|
1947
1965
|
*/
|
|
1948
1966
|
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
|
|
1949
1967
|
|
|
1950
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1968
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1951
1969
|
* ctypedef npy_clongdouble clongdouble_t
|
|
1952
1970
|
*
|
|
1953
1971
|
* ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
|
|
@@ -2253,8 +2271,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2253
2271
|
#define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
|
|
2254
2272
|
#define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
|
|
2255
2273
|
#else
|
|
2256
|
-
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2257
|
-
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2274
|
+
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2275
|
+
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2258
2276
|
#endif
|
|
2259
2277
|
#define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
|
|
2260
2278
|
#define __Pyx_KwValues_VARARGS(args, nargs) NULL
|
|
@@ -2270,8 +2288,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2270
2288
|
#else
|
|
2271
2289
|
#define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
|
|
2272
2290
|
#endif
|
|
2273
|
-
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg
|
|
2274
|
-
|
|
2291
|
+
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
|
|
2292
|
+
to have the same reference counting */
|
|
2293
|
+
#define __Pyx_Arg_XDECREF_FASTCALL(arg)
|
|
2275
2294
|
#else
|
|
2276
2295
|
#define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
|
|
2277
2296
|
#define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
|
|
@@ -2738,22 +2757,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
|
|
|
2738
2757
|
#endif
|
|
2739
2758
|
|
|
2740
2759
|
/* TypeImport.proto */
|
|
2741
|
-
#ifndef
|
|
2742
|
-
#define
|
|
2760
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2761
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2743
2762
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
2744
2763
|
#include <stdalign.h>
|
|
2745
2764
|
#endif
|
|
2746
2765
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
2747
|
-
#define
|
|
2766
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
|
|
2748
2767
|
#else
|
|
2749
|
-
#define
|
|
2768
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
|
|
2750
2769
|
#endif
|
|
2751
|
-
enum
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2770
|
+
enum __Pyx_ImportType_CheckSize_3_0_10 {
|
|
2771
|
+
__Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
|
|
2772
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
|
|
2773
|
+
__Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
|
|
2755
2774
|
};
|
|
2756
|
-
static PyTypeObject *
|
|
2775
|
+
static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size);
|
|
2757
2776
|
#endif
|
|
2758
2777
|
|
|
2759
2778
|
/* FetchSharedCythonModule.proto */
|
|
@@ -2846,7 +2865,7 @@ typedef struct {
|
|
|
2846
2865
|
#endif
|
|
2847
2866
|
void *defaults;
|
|
2848
2867
|
int defaults_pyobjects;
|
|
2849
|
-
size_t defaults_size;
|
|
2868
|
+
size_t defaults_size;
|
|
2850
2869
|
int flags;
|
|
2851
2870
|
PyObject *defaults_tuple;
|
|
2852
2871
|
PyObject *defaults_kwdict;
|
|
@@ -18221,7 +18240,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18221
18240
|
return __pyx_r;
|
|
18222
18241
|
}
|
|
18223
18242
|
|
|
18224
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18243
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
|
|
18225
18244
|
*
|
|
18226
18245
|
* @property
|
|
18227
18246
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18232,7 +18251,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18232
18251
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
18233
18252
|
PyObject *__pyx_r;
|
|
18234
18253
|
|
|
18235
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18254
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
|
|
18236
18255
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
18237
18256
|
* """
|
|
18238
18257
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -18242,7 +18261,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18242
18261
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
18243
18262
|
goto __pyx_L0;
|
|
18244
18263
|
|
|
18245
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18264
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
|
|
18246
18265
|
*
|
|
18247
18266
|
* @property
|
|
18248
18267
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18255,7 +18274,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18255
18274
|
return __pyx_r;
|
|
18256
18275
|
}
|
|
18257
18276
|
|
|
18258
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18277
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
|
|
18259
18278
|
*
|
|
18260
18279
|
* @property
|
|
18261
18280
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18269,7 +18288,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18269
18288
|
PyArray_Descr *__pyx_t_1;
|
|
18270
18289
|
__Pyx_RefNannySetupContext("descr", 1);
|
|
18271
18290
|
|
|
18272
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18291
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
|
|
18273
18292
|
* """Returns an owned reference to the dtype of the array.
|
|
18274
18293
|
* """
|
|
18275
18294
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -18282,7 +18301,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18282
18301
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
18283
18302
|
goto __pyx_L0;
|
|
18284
18303
|
|
|
18285
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18304
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
|
|
18286
18305
|
*
|
|
18287
18306
|
* @property
|
|
18288
18307
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18297,7 +18316,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18297
18316
|
return __pyx_r;
|
|
18298
18317
|
}
|
|
18299
18318
|
|
|
18300
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18319
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
|
|
18301
18320
|
*
|
|
18302
18321
|
* @property
|
|
18303
18322
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18308,7 +18327,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18308
18327
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
18309
18328
|
int __pyx_r;
|
|
18310
18329
|
|
|
18311
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18330
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
|
|
18312
18331
|
* """Returns the number of dimensions in the array.
|
|
18313
18332
|
* """
|
|
18314
18333
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -18318,7 +18337,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18318
18337
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
18319
18338
|
goto __pyx_L0;
|
|
18320
18339
|
|
|
18321
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18340
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
|
|
18322
18341
|
*
|
|
18323
18342
|
* @property
|
|
18324
18343
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18331,7 +18350,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18331
18350
|
return __pyx_r;
|
|
18332
18351
|
}
|
|
18333
18352
|
|
|
18334
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18353
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
|
|
18335
18354
|
*
|
|
18336
18355
|
* @property
|
|
18337
18356
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18342,7 +18361,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18342
18361
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
18343
18362
|
npy_intp *__pyx_r;
|
|
18344
18363
|
|
|
18345
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18364
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
|
|
18346
18365
|
* Can return NULL for 0-dimensional arrays.
|
|
18347
18366
|
* """
|
|
18348
18367
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -18352,7 +18371,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18352
18371
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
18353
18372
|
goto __pyx_L0;
|
|
18354
18373
|
|
|
18355
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18374
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
|
|
18356
18375
|
*
|
|
18357
18376
|
* @property
|
|
18358
18377
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18365,7 +18384,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18365
18384
|
return __pyx_r;
|
|
18366
18385
|
}
|
|
18367
18386
|
|
|
18368
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18387
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
|
|
18369
18388
|
*
|
|
18370
18389
|
* @property
|
|
18371
18390
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18376,7 +18395,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18376
18395
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
18377
18396
|
npy_intp *__pyx_r;
|
|
18378
18397
|
|
|
18379
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18398
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
|
|
18380
18399
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
18381
18400
|
* """
|
|
18382
18401
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -18386,7 +18405,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18386
18405
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
18387
18406
|
goto __pyx_L0;
|
|
18388
18407
|
|
|
18389
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18408
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
|
|
18390
18409
|
*
|
|
18391
18410
|
* @property
|
|
18392
18411
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18399,7 +18418,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18399
18418
|
return __pyx_r;
|
|
18400
18419
|
}
|
|
18401
18420
|
|
|
18402
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18421
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
|
|
18403
18422
|
*
|
|
18404
18423
|
* @property
|
|
18405
18424
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18410,7 +18429,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18410
18429
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
18411
18430
|
npy_intp __pyx_r;
|
|
18412
18431
|
|
|
18413
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18432
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
|
|
18414
18433
|
* """Returns the total size (in number of elements) of the array.
|
|
18415
18434
|
* """
|
|
18416
18435
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -18420,7 +18439,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18420
18439
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
18421
18440
|
goto __pyx_L0;
|
|
18422
18441
|
|
|
18423
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18442
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
|
|
18424
18443
|
*
|
|
18425
18444
|
* @property
|
|
18426
18445
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18433,7 +18452,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18433
18452
|
return __pyx_r;
|
|
18434
18453
|
}
|
|
18435
18454
|
|
|
18436
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18455
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
|
|
18437
18456
|
*
|
|
18438
18457
|
* @property
|
|
18439
18458
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18444,7 +18463,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18444
18463
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
18445
18464
|
char *__pyx_r;
|
|
18446
18465
|
|
|
18447
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18466
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
|
|
18448
18467
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
18449
18468
|
* """
|
|
18450
18469
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -18454,7 +18473,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18454
18473
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
18455
18474
|
goto __pyx_L0;
|
|
18456
18475
|
|
|
18457
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18476
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
|
|
18458
18477
|
*
|
|
18459
18478
|
* @property
|
|
18460
18479
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18467,7 +18486,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18467
18486
|
return __pyx_r;
|
|
18468
18487
|
}
|
|
18469
18488
|
|
|
18470
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18489
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
|
|
18471
18490
|
* ctypedef npy_cdouble complex_t
|
|
18472
18491
|
*
|
|
18473
18492
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18484,7 +18503,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18484
18503
|
int __pyx_clineno = 0;
|
|
18485
18504
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
|
|
18486
18505
|
|
|
18487
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18506
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
|
|
18488
18507
|
*
|
|
18489
18508
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
18490
18509
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -18498,7 +18517,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18498
18517
|
__pyx_t_1 = 0;
|
|
18499
18518
|
goto __pyx_L0;
|
|
18500
18519
|
|
|
18501
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18520
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
|
|
18502
18521
|
* ctypedef npy_cdouble complex_t
|
|
18503
18522
|
*
|
|
18504
18523
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18517,7 +18536,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18517
18536
|
return __pyx_r;
|
|
18518
18537
|
}
|
|
18519
18538
|
|
|
18520
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18539
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
|
|
18521
18540
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18522
18541
|
*
|
|
18523
18542
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18534,7 +18553,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18534
18553
|
int __pyx_clineno = 0;
|
|
18535
18554
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
|
|
18536
18555
|
|
|
18537
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18556
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
18538
18557
|
*
|
|
18539
18558
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
18540
18559
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -18548,7 +18567,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18548
18567
|
__pyx_t_1 = 0;
|
|
18549
18568
|
goto __pyx_L0;
|
|
18550
18569
|
|
|
18551
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18570
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
|
|
18552
18571
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18553
18572
|
*
|
|
18554
18573
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18567,7 +18586,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18567
18586
|
return __pyx_r;
|
|
18568
18587
|
}
|
|
18569
18588
|
|
|
18570
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18589
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
|
|
18571
18590
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18572
18591
|
*
|
|
18573
18592
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18584,7 +18603,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18584
18603
|
int __pyx_clineno = 0;
|
|
18585
18604
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
|
|
18586
18605
|
|
|
18587
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18606
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
18588
18607
|
*
|
|
18589
18608
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
18590
18609
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -18598,7 +18617,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18598
18617
|
__pyx_t_1 = 0;
|
|
18599
18618
|
goto __pyx_L0;
|
|
18600
18619
|
|
|
18601
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18620
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
|
|
18602
18621
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18603
18622
|
*
|
|
18604
18623
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18617,7 +18636,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18617
18636
|
return __pyx_r;
|
|
18618
18637
|
}
|
|
18619
18638
|
|
|
18620
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18639
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
|
|
18621
18640
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
18622
18641
|
*
|
|
18623
18642
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -18634,7 +18653,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18634
18653
|
int __pyx_clineno = 0;
|
|
18635
18654
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
|
|
18636
18655
|
|
|
18637
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18656
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
|
|
18638
18657
|
*
|
|
18639
18658
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
18640
18659
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -18648,7 +18667,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18648
18667
|
__pyx_t_1 = 0;
|
|
18649
18668
|
goto __pyx_L0;
|
|
18650
18669
|
|
|
18651
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18670
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
|
|
18652
18671
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
18653
18672
|
*
|
|
18654
18673
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -18667,7 +18686,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18667
18686
|
return __pyx_r;
|
|
18668
18687
|
}
|
|
18669
18688
|
|
|
18670
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18689
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
|
|
18671
18690
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
18672
18691
|
*
|
|
18673
18692
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -18684,7 +18703,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18684
18703
|
int __pyx_clineno = 0;
|
|
18685
18704
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
|
|
18686
18705
|
|
|
18687
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18706
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
|
|
18688
18707
|
*
|
|
18689
18708
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
18690
18709
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -18698,7 +18717,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18698
18717
|
__pyx_t_1 = 0;
|
|
18699
18718
|
goto __pyx_L0;
|
|
18700
18719
|
|
|
18701
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18720
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
|
|
18702
18721
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
18703
18722
|
*
|
|
18704
18723
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -18717,7 +18736,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18717
18736
|
return __pyx_r;
|
|
18718
18737
|
}
|
|
18719
18738
|
|
|
18720
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18739
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
|
|
18721
18740
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
18722
18741
|
*
|
|
18723
18742
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -18731,7 +18750,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18731
18750
|
int __pyx_t_1;
|
|
18732
18751
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
|
|
18733
18752
|
|
|
18734
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18753
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
18735
18754
|
*
|
|
18736
18755
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18737
18756
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -18741,7 +18760,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18741
18760
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
18742
18761
|
if (__pyx_t_1) {
|
|
18743
18762
|
|
|
18744
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18763
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
|
|
18745
18764
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18746
18765
|
* if PyDataType_HASSUBARRAY(d):
|
|
18747
18766
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -18753,7 +18772,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18753
18772
|
__pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
|
|
18754
18773
|
goto __pyx_L0;
|
|
18755
18774
|
|
|
18756
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18775
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
18757
18776
|
*
|
|
18758
18777
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18759
18778
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -18762,7 +18781,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18762
18781
|
*/
|
|
18763
18782
|
}
|
|
18764
18783
|
|
|
18765
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18784
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
18766
18785
|
* return <tuple>d.subarray.shape
|
|
18767
18786
|
* else:
|
|
18768
18787
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -18776,7 +18795,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18776
18795
|
goto __pyx_L0;
|
|
18777
18796
|
}
|
|
18778
18797
|
|
|
18779
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18798
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
|
|
18780
18799
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
18781
18800
|
*
|
|
18782
18801
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -18791,7 +18810,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18791
18810
|
return __pyx_r;
|
|
18792
18811
|
}
|
|
18793
18812
|
|
|
18794
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18813
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
|
|
18795
18814
|
* int _import_umath() except -1
|
|
18796
18815
|
*
|
|
18797
18816
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -18805,7 +18824,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18805
18824
|
const char *__pyx_filename = NULL;
|
|
18806
18825
|
int __pyx_clineno = 0;
|
|
18807
18826
|
|
|
18808
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18827
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
|
|
18809
18828
|
*
|
|
18810
18829
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
18811
18830
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -18814,7 +18833,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18814
18833
|
*/
|
|
18815
18834
|
Py_INCREF(__pyx_v_base);
|
|
18816
18835
|
|
|
18817
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18836
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
|
|
18818
18837
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
18819
18838
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
18820
18839
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -18823,7 +18842,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18823
18842
|
*/
|
|
18824
18843
|
__pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(2, 970, __pyx_L1_error)
|
|
18825
18844
|
|
|
18826
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18845
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
|
|
18827
18846
|
* int _import_umath() except -1
|
|
18828
18847
|
*
|
|
18829
18848
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -18838,7 +18857,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18838
18857
|
__pyx_L0:;
|
|
18839
18858
|
}
|
|
18840
18859
|
|
|
18841
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18860
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
|
|
18842
18861
|
* PyArray_SetBaseObject(arr, base)
|
|
18843
18862
|
*
|
|
18844
18863
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -18853,7 +18872,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18853
18872
|
int __pyx_t_1;
|
|
18854
18873
|
__Pyx_RefNannySetupContext("get_array_base", 1);
|
|
18855
18874
|
|
|
18856
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18875
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
|
|
18857
18876
|
*
|
|
18858
18877
|
* cdef inline object get_array_base(ndarray arr):
|
|
18859
18878
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -18862,7 +18881,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18862
18881
|
*/
|
|
18863
18882
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
18864
18883
|
|
|
18865
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18884
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
|
|
18866
18885
|
* cdef inline object get_array_base(ndarray arr):
|
|
18867
18886
|
* base = PyArray_BASE(arr)
|
|
18868
18887
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -18872,7 +18891,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18872
18891
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
18873
18892
|
if (__pyx_t_1) {
|
|
18874
18893
|
|
|
18875
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18894
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
|
|
18876
18895
|
* base = PyArray_BASE(arr)
|
|
18877
18896
|
* if base is NULL:
|
|
18878
18897
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -18883,7 +18902,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18883
18902
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
18884
18903
|
goto __pyx_L0;
|
|
18885
18904
|
|
|
18886
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18905
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
|
|
18887
18906
|
* cdef inline object get_array_base(ndarray arr):
|
|
18888
18907
|
* base = PyArray_BASE(arr)
|
|
18889
18908
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -18892,7 +18911,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18892
18911
|
*/
|
|
18893
18912
|
}
|
|
18894
18913
|
|
|
18895
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18914
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
|
|
18896
18915
|
* if base is NULL:
|
|
18897
18916
|
* return None
|
|
18898
18917
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -18904,7 +18923,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18904
18923
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
18905
18924
|
goto __pyx_L0;
|
|
18906
18925
|
|
|
18907
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18926
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
|
|
18908
18927
|
* PyArray_SetBaseObject(arr, base)
|
|
18909
18928
|
*
|
|
18910
18929
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -18919,7 +18938,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18919
18938
|
return __pyx_r;
|
|
18920
18939
|
}
|
|
18921
18940
|
|
|
18922
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18941
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
|
|
18923
18942
|
* # Versions of the import_* functions which are more suitable for
|
|
18924
18943
|
* # Cython code.
|
|
18925
18944
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18943,7 +18962,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18943
18962
|
int __pyx_clineno = 0;
|
|
18944
18963
|
__Pyx_RefNannySetupContext("import_array", 1);
|
|
18945
18964
|
|
|
18946
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18965
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
|
|
18947
18966
|
* # Cython code.
|
|
18948
18967
|
* cdef inline int import_array() except -1:
|
|
18949
18968
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18959,7 +18978,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18959
18978
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
18960
18979
|
/*try:*/ {
|
|
18961
18980
|
|
|
18962
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18981
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
|
|
18963
18982
|
* cdef inline int import_array() except -1:
|
|
18964
18983
|
* try:
|
|
18965
18984
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -18968,7 +18987,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18968
18987
|
*/
|
|
18969
18988
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
|
|
18970
18989
|
|
|
18971
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18990
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
|
|
18972
18991
|
* # Cython code.
|
|
18973
18992
|
* cdef inline int import_array() except -1:
|
|
18974
18993
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18982,7 +19001,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18982
19001
|
goto __pyx_L8_try_end;
|
|
18983
19002
|
__pyx_L3_error:;
|
|
18984
19003
|
|
|
18985
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19004
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
18986
19005
|
* try:
|
|
18987
19006
|
* __pyx_import_array()
|
|
18988
19007
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -18997,7 +19016,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18997
19016
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
18998
19017
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
18999
19018
|
|
|
19000
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19019
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19001
19020
|
* __pyx_import_array()
|
|
19002
19021
|
* except Exception:
|
|
19003
19022
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19012,7 +19031,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19012
19031
|
}
|
|
19013
19032
|
goto __pyx_L5_except_error;
|
|
19014
19033
|
|
|
19015
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19034
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
|
|
19016
19035
|
* # Cython code.
|
|
19017
19036
|
* cdef inline int import_array() except -1:
|
|
19018
19037
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19028,7 +19047,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19028
19047
|
__pyx_L8_try_end:;
|
|
19029
19048
|
}
|
|
19030
19049
|
|
|
19031
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19050
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
|
|
19032
19051
|
* # Versions of the import_* functions which are more suitable for
|
|
19033
19052
|
* # Cython code.
|
|
19034
19053
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19051,7 +19070,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19051
19070
|
return __pyx_r;
|
|
19052
19071
|
}
|
|
19053
19072
|
|
|
19054
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19073
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
|
|
19055
19074
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19056
19075
|
*
|
|
19057
19076
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19075,7 +19094,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19075
19094
|
int __pyx_clineno = 0;
|
|
19076
19095
|
__Pyx_RefNannySetupContext("import_umath", 1);
|
|
19077
19096
|
|
|
19078
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19097
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
19079
19098
|
*
|
|
19080
19099
|
* cdef inline int import_umath() except -1:
|
|
19081
19100
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19091,7 +19110,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19091
19110
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19092
19111
|
/*try:*/ {
|
|
19093
19112
|
|
|
19094
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19113
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
|
|
19095
19114
|
* cdef inline int import_umath() except -1:
|
|
19096
19115
|
* try:
|
|
19097
19116
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19100,7 +19119,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19100
19119
|
*/
|
|
19101
19120
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
|
|
19102
19121
|
|
|
19103
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19122
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
19104
19123
|
*
|
|
19105
19124
|
* cdef inline int import_umath() except -1:
|
|
19106
19125
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19114,7 +19133,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19114
19133
|
goto __pyx_L8_try_end;
|
|
19115
19134
|
__pyx_L3_error:;
|
|
19116
19135
|
|
|
19117
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19136
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19118
19137
|
* try:
|
|
19119
19138
|
* _import_umath()
|
|
19120
19139
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19129,7 +19148,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19129
19148
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19130
19149
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19131
19150
|
|
|
19132
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19151
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19133
19152
|
* _import_umath()
|
|
19134
19153
|
* except Exception:
|
|
19135
19154
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19144,7 +19163,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19144
19163
|
}
|
|
19145
19164
|
goto __pyx_L5_except_error;
|
|
19146
19165
|
|
|
19147
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19166
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
19148
19167
|
*
|
|
19149
19168
|
* cdef inline int import_umath() except -1:
|
|
19150
19169
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19160,7 +19179,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19160
19179
|
__pyx_L8_try_end:;
|
|
19161
19180
|
}
|
|
19162
19181
|
|
|
19163
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19182
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
|
|
19164
19183
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19165
19184
|
*
|
|
19166
19185
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19183,7 +19202,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19183
19202
|
return __pyx_r;
|
|
19184
19203
|
}
|
|
19185
19204
|
|
|
19186
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19205
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
|
|
19187
19206
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19188
19207
|
*
|
|
19189
19208
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19207,7 +19226,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19207
19226
|
int __pyx_clineno = 0;
|
|
19208
19227
|
__Pyx_RefNannySetupContext("import_ufunc", 1);
|
|
19209
19228
|
|
|
19210
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19229
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
19211
19230
|
*
|
|
19212
19231
|
* cdef inline int import_ufunc() except -1:
|
|
19213
19232
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19223,7 +19242,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19223
19242
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19224
19243
|
/*try:*/ {
|
|
19225
19244
|
|
|
19226
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19245
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
|
|
19227
19246
|
* cdef inline int import_ufunc() except -1:
|
|
19228
19247
|
* try:
|
|
19229
19248
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19232,7 +19251,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19232
19251
|
*/
|
|
19233
19252
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
|
|
19234
19253
|
|
|
19235
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19254
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
19236
19255
|
*
|
|
19237
19256
|
* cdef inline int import_ufunc() except -1:
|
|
19238
19257
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19246,7 +19265,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19246
19265
|
goto __pyx_L8_try_end;
|
|
19247
19266
|
__pyx_L3_error:;
|
|
19248
19267
|
|
|
19249
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19268
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
19250
19269
|
* try:
|
|
19251
19270
|
* _import_umath()
|
|
19252
19271
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19261,7 +19280,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19261
19280
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19262
19281
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19263
19282
|
|
|
19264
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19283
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19265
19284
|
* _import_umath()
|
|
19266
19285
|
* except Exception:
|
|
19267
19286
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19276,7 +19295,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19276
19295
|
}
|
|
19277
19296
|
goto __pyx_L5_except_error;
|
|
19278
19297
|
|
|
19279
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19298
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
19280
19299
|
*
|
|
19281
19300
|
* cdef inline int import_ufunc() except -1:
|
|
19282
19301
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19292,7 +19311,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19292
19311
|
__pyx_L8_try_end:;
|
|
19293
19312
|
}
|
|
19294
19313
|
|
|
19295
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19314
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
|
|
19296
19315
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19297
19316
|
*
|
|
19298
19317
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19315,7 +19334,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19315
19334
|
return __pyx_r;
|
|
19316
19335
|
}
|
|
19317
19336
|
|
|
19318
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19337
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
|
|
19319
19338
|
*
|
|
19320
19339
|
*
|
|
19321
19340
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19326,7 +19345,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19326
19345
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
19327
19346
|
int __pyx_r;
|
|
19328
19347
|
|
|
19329
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19348
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
|
|
19330
19349
|
* bool
|
|
19331
19350
|
* """
|
|
19332
19351
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19336,7 +19355,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19336
19355
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
19337
19356
|
goto __pyx_L0;
|
|
19338
19357
|
|
|
19339
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19358
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
|
|
19340
19359
|
*
|
|
19341
19360
|
*
|
|
19342
19361
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19349,7 +19368,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19349
19368
|
return __pyx_r;
|
|
19350
19369
|
}
|
|
19351
19370
|
|
|
19352
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19371
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
19353
19372
|
*
|
|
19354
19373
|
*
|
|
19355
19374
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19360,7 +19379,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19360
19379
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
19361
19380
|
int __pyx_r;
|
|
19362
19381
|
|
|
19363
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19382
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
|
|
19364
19383
|
* bool
|
|
19365
19384
|
* """
|
|
19366
19385
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19370,7 +19389,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19370
19389
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
19371
19390
|
goto __pyx_L0;
|
|
19372
19391
|
|
|
19373
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19392
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
19374
19393
|
*
|
|
19375
19394
|
*
|
|
19376
19395
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19383,7 +19402,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19383
19402
|
return __pyx_r;
|
|
19384
19403
|
}
|
|
19385
19404
|
|
|
19386
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19405
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
19387
19406
|
*
|
|
19388
19407
|
*
|
|
19389
19408
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19394,7 +19413,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19394
19413
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
19395
19414
|
npy_datetime __pyx_r;
|
|
19396
19415
|
|
|
19397
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19416
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
|
|
19398
19417
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
19399
19418
|
* """
|
|
19400
19419
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19404,7 +19423,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19404
19423
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
19405
19424
|
goto __pyx_L0;
|
|
19406
19425
|
|
|
19407
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19426
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
19408
19427
|
*
|
|
19409
19428
|
*
|
|
19410
19429
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19417,7 +19436,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19417
19436
|
return __pyx_r;
|
|
19418
19437
|
}
|
|
19419
19438
|
|
|
19420
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19439
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
|
|
19421
19440
|
*
|
|
19422
19441
|
*
|
|
19423
19442
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19428,7 +19447,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19428
19447
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
19429
19448
|
npy_timedelta __pyx_r;
|
|
19430
19449
|
|
|
19431
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19450
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
|
|
19432
19451
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
19433
19452
|
* """
|
|
19434
19453
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19438,7 +19457,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19438
19457
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
19439
19458
|
goto __pyx_L0;
|
|
19440
19459
|
|
|
19441
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19460
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
|
|
19442
19461
|
*
|
|
19443
19462
|
*
|
|
19444
19463
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19451,7 +19470,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19451
19470
|
return __pyx_r;
|
|
19452
19471
|
}
|
|
19453
19472
|
|
|
19454
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19473
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
|
|
19455
19474
|
*
|
|
19456
19475
|
*
|
|
19457
19476
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19462,7 +19481,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19462
19481
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
19463
19482
|
NPY_DATETIMEUNIT __pyx_r;
|
|
19464
19483
|
|
|
19465
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19484
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
|
|
19466
19485
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
19467
19486
|
* """
|
|
19468
19487
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -19470,7 +19489,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
19470
19489
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
19471
19490
|
goto __pyx_L0;
|
|
19472
19491
|
|
|
19473
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19492
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
|
|
19474
19493
|
*
|
|
19475
19494
|
*
|
|
19476
19495
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -24909,7 +24928,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
24909
24928
|
__Pyx_GOTREF(__pyx_tuple__8);
|
|
24910
24929
|
__Pyx_GIVEREF(__pyx_tuple__8);
|
|
24911
24930
|
|
|
24912
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
24931
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
24913
24932
|
* __pyx_import_array()
|
|
24914
24933
|
* except Exception:
|
|
24915
24934
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -24920,7 +24939,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
24920
24939
|
__Pyx_GOTREF(__pyx_tuple__9);
|
|
24921
24940
|
__Pyx_GIVEREF(__pyx_tuple__9);
|
|
24922
24941
|
|
|
24923
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
24942
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sk42n0vc/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
24924
24943
|
* _import_umath()
|
|
24925
24944
|
* except Exception:
|
|
24926
24945
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -25359,33 +25378,33 @@ static int __Pyx_modinit_type_import_code(void) {
|
|
|
25359
25378
|
/*--- Type import code ---*/
|
|
25360
25379
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
25361
25380
|
__Pyx_GOTREF(__pyx_t_1);
|
|
25362
|
-
__pyx_ptype_7cpython_4type_type =
|
|
25381
|
+
__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
|
25363
25382
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
25364
|
-
sizeof(PyTypeObject),
|
|
25383
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
25365
25384
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
25366
|
-
sizeof(PyTypeObject),
|
|
25385
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
25367
25386
|
#else
|
|
25368
|
-
sizeof(PyHeapTypeObject),
|
|
25387
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
|
|
25369
25388
|
#endif
|
|
25370
|
-
|
|
25389
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
25371
25390
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
25372
25391
|
__pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
|
|
25373
25392
|
__Pyx_GOTREF(__pyx_t_1);
|
|
25374
|
-
__pyx_ptype_5numpy_dtype =
|
|
25375
|
-
__pyx_ptype_5numpy_flatiter =
|
|
25376
|
-
__pyx_ptype_5numpy_broadcast =
|
|
25377
|
-
__pyx_ptype_5numpy_ndarray =
|
|
25378
|
-
__pyx_ptype_5numpy_generic =
|
|
25379
|
-
__pyx_ptype_5numpy_number =
|
|
25380
|
-
__pyx_ptype_5numpy_integer =
|
|
25381
|
-
__pyx_ptype_5numpy_signedinteger =
|
|
25382
|
-
__pyx_ptype_5numpy_unsignedinteger =
|
|
25383
|
-
__pyx_ptype_5numpy_inexact =
|
|
25384
|
-
__pyx_ptype_5numpy_floating =
|
|
25385
|
-
__pyx_ptype_5numpy_complexfloating =
|
|
25386
|
-
__pyx_ptype_5numpy_flexible =
|
|
25387
|
-
__pyx_ptype_5numpy_character =
|
|
25388
|
-
__pyx_ptype_5numpy_ufunc =
|
|
25393
|
+
__pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
|
|
25394
|
+
__pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
|
|
25395
|
+
__pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
|
|
25396
|
+
__pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
|
|
25397
|
+
__pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 809, __pyx_L1_error)
|
|
25398
|
+
__pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 811, __pyx_L1_error)
|
|
25399
|
+
__pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 813, __pyx_L1_error)
|
|
25400
|
+
__pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 815, __pyx_L1_error)
|
|
25401
|
+
__pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 817, __pyx_L1_error)
|
|
25402
|
+
__pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 819, __pyx_L1_error)
|
|
25403
|
+
__pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 821, __pyx_L1_error)
|
|
25404
|
+
__pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 823, __pyx_L1_error)
|
|
25405
|
+
__pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 825, __pyx_L1_error)
|
|
25406
|
+
__pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 827, __pyx_L1_error)
|
|
25407
|
+
__pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 866, __pyx_L1_error)
|
|
25389
25408
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
25390
25409
|
__Pyx_RefNannyFinishContext();
|
|
25391
25410
|
return 0;
|
|
@@ -26750,11 +26769,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
|
|
|
26750
26769
|
{
|
|
26751
26770
|
int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
|
|
26752
26771
|
if (unlikely(eq != 0)) {
|
|
26753
|
-
if (unlikely(eq < 0)) return NULL;
|
|
26772
|
+
if (unlikely(eq < 0)) return NULL;
|
|
26754
26773
|
return kwvalues[i];
|
|
26755
26774
|
}
|
|
26756
26775
|
}
|
|
26757
|
-
return NULL;
|
|
26776
|
+
return NULL;
|
|
26758
26777
|
}
|
|
26759
26778
|
#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
|
|
26760
26779
|
CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
|
|
@@ -26867,7 +26886,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
26867
26886
|
if (*name) {
|
|
26868
26887
|
values[name-argnames] = value;
|
|
26869
26888
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
26870
|
-
Py_INCREF(value);
|
|
26889
|
+
Py_INCREF(value);
|
|
26871
26890
|
Py_DECREF(key);
|
|
26872
26891
|
#endif
|
|
26873
26892
|
key = NULL;
|
|
@@ -26886,7 +26905,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
26886
26905
|
&& _PyString_Eq(**name, key)) {
|
|
26887
26906
|
values[name-argnames] = value;
|
|
26888
26907
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
26889
|
-
value = NULL;
|
|
26908
|
+
value = NULL;
|
|
26890
26909
|
#endif
|
|
26891
26910
|
break;
|
|
26892
26911
|
}
|
|
@@ -26918,7 +26937,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
26918
26937
|
if (cmp == 0) {
|
|
26919
26938
|
values[name-argnames] = value;
|
|
26920
26939
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
26921
|
-
value = NULL;
|
|
26940
|
+
value = NULL;
|
|
26922
26941
|
#endif
|
|
26923
26942
|
break;
|
|
26924
26943
|
}
|
|
@@ -29536,10 +29555,10 @@ __PYX_GOOD:
|
|
|
29536
29555
|
#endif
|
|
29537
29556
|
|
|
29538
29557
|
/* TypeImport */
|
|
29539
|
-
#ifndef
|
|
29540
|
-
#define
|
|
29541
|
-
static PyTypeObject *
|
|
29542
|
-
size_t size, size_t alignment, enum
|
|
29558
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_0_10
|
|
29559
|
+
#define __PYX_HAVE_RT_ImportType_3_0_10
|
|
29560
|
+
static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
|
|
29561
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
|
|
29543
29562
|
{
|
|
29544
29563
|
PyObject *result = 0;
|
|
29545
29564
|
char warning[200];
|
|
@@ -29593,7 +29612,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
29593
29612
|
module_name, class_name, size, basicsize+itemsize);
|
|
29594
29613
|
goto bad;
|
|
29595
29614
|
}
|
|
29596
|
-
if (check_size ==
|
|
29615
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
|
|
29597
29616
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
29598
29617
|
PyErr_Format(PyExc_ValueError,
|
|
29599
29618
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -29601,7 +29620,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
29601
29620
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
29602
29621
|
goto bad;
|
|
29603
29622
|
}
|
|
29604
|
-
else if (check_size ==
|
|
29623
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
|
|
29605
29624
|
PyOS_snprintf(warning, sizeof(warning),
|
|
29606
29625
|
"%s.%s size changed, may indicate binary incompatibility. "
|
|
29607
29626
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -30601,7 +30620,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
|
|
|
30601
30620
|
default:
|
|
30602
30621
|
return NULL;
|
|
30603
30622
|
}
|
|
30604
|
-
return ((
|
|
30623
|
+
return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
|
|
30605
30624
|
}
|
|
30606
30625
|
static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
|
|
30607
30626
|
{
|
|
@@ -31060,7 +31079,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
|
|
|
31060
31079
|
#else
|
|
31061
31080
|
py_code = PyCode_NewEmpty(filename, funcname, py_line);
|
|
31062
31081
|
#endif
|
|
31063
|
-
Py_XDECREF(py_funcname);
|
|
31082
|
+
Py_XDECREF(py_funcname);
|
|
31064
31083
|
return py_code;
|
|
31065
31084
|
bad:
|
|
31066
31085
|
Py_XDECREF(py_funcname);
|