biotite 0.39.0__cp312-cp312-win_amd64.whl → 0.41.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/pubchem/download.py +23 -23
- biotite/database/pubchem/query.py +7 -7
- biotite/database/rcsb/download.py +19 -14
- biotite/file.py +17 -9
- biotite/sequence/align/banded.c +256 -235
- biotite/sequence/align/banded.cp312-win_amd64.pyd +0 -0
- biotite/sequence/align/cigar.py +60 -15
- 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/annotation.py +2 -2
- biotite/sequence/codec.c +233 -212
- biotite/sequence/codec.cp312-win_amd64.pyd +0 -0
- biotite/sequence/io/fasta/convert.py +27 -24
- 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/__init__.py +2 -0
- biotite/structure/basepairs.py +7 -12
- biotite/structure/bonds.c +1435 -1277
- 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/dotbracket.py +2 -0
- biotite/structure/filter.py +30 -37
- biotite/structure/info/__init__.py +5 -8
- biotite/structure/info/atoms.py +31 -68
- biotite/structure/info/bonds.py +47 -101
- biotite/structure/info/ccd/README.rst +8 -0
- biotite/structure/info/ccd/amino_acids.txt +1663 -0
- biotite/structure/info/ccd/carbohydrates.txt +1135 -0
- biotite/structure/info/ccd/components.bcif +0 -0
- biotite/structure/info/ccd/nucleotides.txt +798 -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 +78 -25
- biotite/structure/info/standardize.py +17 -12
- biotite/structure/integrity.py +19 -70
- biotite/structure/io/__init__.py +2 -4
- biotite/structure/io/ctab.py +12 -106
- biotite/structure/io/general.py +167 -181
- biotite/structure/io/gro/file.py +16 -16
- 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/mol/__init__.py +4 -2
- biotite/structure/io/mol/convert.py +71 -7
- biotite/structure/io/mol/ctab.py +414 -0
- biotite/structure/io/mol/header.py +116 -0
- biotite/structure/io/mol/{file.py → mol.py} +69 -82
- biotite/structure/io/mol/sdf.py +909 -0
- biotite/structure/io/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 +89 -34
- 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 +12 -6
- biotite/structure/io/pdbx/bcif.py +648 -0
- biotite/structure/io/pdbx/cif.py +1032 -0
- biotite/structure/io/pdbx/component.py +246 -0
- biotite/structure/io/pdbx/convert.py +858 -386
- biotite/structure/io/pdbx/encoding.c +112803 -0
- biotite/structure/io/pdbx/encoding.cp312-win_amd64.pyd +0 -0
- biotite/structure/io/pdbx/legacy.py +267 -0
- biotite/structure/molecules.py +151 -151
- biotite/structure/repair.py +253 -0
- biotite/structure/sasa.c +213 -194
- biotite/structure/sasa.cp312-win_amd64.pyd +0 -0
- biotite/structure/sequence.py +112 -0
- biotite/structure/superimpose.py +618 -116
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/METADATA +3 -3
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/RECORD +109 -103
- {biotite-0.39.0.dist-info → biotite-0.41.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.41.0.dist-info}/LICENSE.rst +0 -0
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/top_level.txt +0 -0
biotite/structure/celllist.c
CHANGED
|
@@ -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-ffpf5z7d/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-ffpf5z7d/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-ffpf5z7d/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-ffpf5z7d/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-ffpf5z7d/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-ffpf5z7d/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-ffpf5z7d/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-ffpf5z7d/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-ffpf5z7d/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-ffpf5z7d/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-ffpf5z7d/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-ffpf5z7d/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-ffpf5z7d/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-ffpf5z7d/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-ffpf5z7d/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-ffpf5z7d/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-ffpf5z7d/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-ffpf5z7d/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-ffpf5z7d/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 # <<<<<<<<<<<<<<
|
|
@@ -1876,7 +1894,7 @@ struct __pyx_MemviewEnum_obj;
|
|
|
1876
1894
|
struct __pyx_memoryview_obj;
|
|
1877
1895
|
struct __pyx_memoryviewslice_obj;
|
|
1878
1896
|
|
|
1879
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1897
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
|
|
1880
1898
|
* ctypedef npy_longdouble longdouble_t
|
|
1881
1899
|
*
|
|
1882
1900
|
* ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
|
|
@@ -1885,7 +1903,7 @@ struct __pyx_memoryviewslice_obj;
|
|
|
1885
1903
|
*/
|
|
1886
1904
|
typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
1887
1905
|
|
|
1888
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1906
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
|
|
1889
1907
|
*
|
|
1890
1908
|
* ctypedef npy_cfloat cfloat_t
|
|
1891
1909
|
* ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1894,7 +1912,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
|
1894
1912
|
*/
|
|
1895
1913
|
typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
1896
1914
|
|
|
1897
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1915
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
|
|
1898
1916
|
* ctypedef npy_cfloat cfloat_t
|
|
1899
1917
|
* ctypedef npy_cdouble cdouble_t
|
|
1900
1918
|
* ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1903,7 +1921,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
|
1903
1921
|
*/
|
|
1904
1922
|
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
|
|
1905
1923
|
|
|
1906
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1924
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1907
1925
|
* ctypedef npy_clongdouble clongdouble_t
|
|
1908
1926
|
*
|
|
1909
1927
|
* ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
|
|
@@ -2257,8 +2275,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2257
2275
|
#define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
|
|
2258
2276
|
#define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
|
|
2259
2277
|
#else
|
|
2260
|
-
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2261
|
-
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2278
|
+
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2279
|
+
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2262
2280
|
#endif
|
|
2263
2281
|
#define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
|
|
2264
2282
|
#define __Pyx_KwValues_VARARGS(args, nargs) NULL
|
|
@@ -2274,8 +2292,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2274
2292
|
#else
|
|
2275
2293
|
#define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
|
|
2276
2294
|
#endif
|
|
2277
|
-
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg
|
|
2278
|
-
|
|
2295
|
+
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
|
|
2296
|
+
to have the same reference counting */
|
|
2297
|
+
#define __Pyx_Arg_XDECREF_FASTCALL(arg)
|
|
2279
2298
|
#else
|
|
2280
2299
|
#define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
|
|
2281
2300
|
#define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
|
|
@@ -2766,22 +2785,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
|
|
|
2766
2785
|
#endif
|
|
2767
2786
|
|
|
2768
2787
|
/* TypeImport.proto */
|
|
2769
|
-
#ifndef
|
|
2770
|
-
#define
|
|
2788
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2789
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2771
2790
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
2772
2791
|
#include <stdalign.h>
|
|
2773
2792
|
#endif
|
|
2774
2793
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
2775
|
-
#define
|
|
2794
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
|
|
2776
2795
|
#else
|
|
2777
|
-
#define
|
|
2796
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
|
|
2778
2797
|
#endif
|
|
2779
|
-
enum
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2798
|
+
enum __Pyx_ImportType_CheckSize_3_0_10 {
|
|
2799
|
+
__Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
|
|
2800
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
|
|
2801
|
+
__Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
|
|
2783
2802
|
};
|
|
2784
|
-
static PyTypeObject *
|
|
2803
|
+
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);
|
|
2785
2804
|
#endif
|
|
2786
2805
|
|
|
2787
2806
|
/* FetchSharedCythonModule.proto */
|
|
@@ -2874,7 +2893,7 @@ typedef struct {
|
|
|
2874
2893
|
#endif
|
|
2875
2894
|
void *defaults;
|
|
2876
2895
|
int defaults_pyobjects;
|
|
2877
|
-
size_t defaults_size;
|
|
2896
|
+
size_t defaults_size;
|
|
2878
2897
|
int flags;
|
|
2879
2898
|
PyObject *defaults_tuple;
|
|
2880
2899
|
PyObject *defaults_kwdict;
|
|
@@ -18692,7 +18711,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18692
18711
|
return __pyx_r;
|
|
18693
18712
|
}
|
|
18694
18713
|
|
|
18695
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18714
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
|
|
18696
18715
|
*
|
|
18697
18716
|
* @property
|
|
18698
18717
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18703,7 +18722,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18703
18722
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
18704
18723
|
PyObject *__pyx_r;
|
|
18705
18724
|
|
|
18706
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18725
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
|
|
18707
18726
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
18708
18727
|
* """
|
|
18709
18728
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -18713,7 +18732,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18713
18732
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
18714
18733
|
goto __pyx_L0;
|
|
18715
18734
|
|
|
18716
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18735
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
|
|
18717
18736
|
*
|
|
18718
18737
|
* @property
|
|
18719
18738
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18726,7 +18745,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18726
18745
|
return __pyx_r;
|
|
18727
18746
|
}
|
|
18728
18747
|
|
|
18729
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18748
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
|
|
18730
18749
|
*
|
|
18731
18750
|
* @property
|
|
18732
18751
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18740,7 +18759,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18740
18759
|
PyArray_Descr *__pyx_t_1;
|
|
18741
18760
|
__Pyx_RefNannySetupContext("descr", 1);
|
|
18742
18761
|
|
|
18743
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18762
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
|
|
18744
18763
|
* """Returns an owned reference to the dtype of the array.
|
|
18745
18764
|
* """
|
|
18746
18765
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -18753,7 +18772,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18753
18772
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
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-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
|
|
18757
18776
|
*
|
|
18758
18777
|
* @property
|
|
18759
18778
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18768,7 +18787,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18768
18787
|
return __pyx_r;
|
|
18769
18788
|
}
|
|
18770
18789
|
|
|
18771
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18790
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
|
|
18772
18791
|
*
|
|
18773
18792
|
* @property
|
|
18774
18793
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18779,7 +18798,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18779
18798
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
18780
18799
|
int __pyx_r;
|
|
18781
18800
|
|
|
18782
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18801
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
|
|
18783
18802
|
* """Returns the number of dimensions in the array.
|
|
18784
18803
|
* """
|
|
18785
18804
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -18789,7 +18808,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18789
18808
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
18790
18809
|
goto __pyx_L0;
|
|
18791
18810
|
|
|
18792
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18811
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
|
|
18793
18812
|
*
|
|
18794
18813
|
* @property
|
|
18795
18814
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18802,7 +18821,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18802
18821
|
return __pyx_r;
|
|
18803
18822
|
}
|
|
18804
18823
|
|
|
18805
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18824
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
|
|
18806
18825
|
*
|
|
18807
18826
|
* @property
|
|
18808
18827
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18813,7 +18832,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18813
18832
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
18814
18833
|
npy_intp *__pyx_r;
|
|
18815
18834
|
|
|
18816
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18835
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
|
|
18817
18836
|
* Can return NULL for 0-dimensional arrays.
|
|
18818
18837
|
* """
|
|
18819
18838
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -18823,7 +18842,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18823
18842
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
18824
18843
|
goto __pyx_L0;
|
|
18825
18844
|
|
|
18826
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18845
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
|
|
18827
18846
|
*
|
|
18828
18847
|
* @property
|
|
18829
18848
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18836,7 +18855,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18836
18855
|
return __pyx_r;
|
|
18837
18856
|
}
|
|
18838
18857
|
|
|
18839
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18858
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
|
|
18840
18859
|
*
|
|
18841
18860
|
* @property
|
|
18842
18861
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18847,7 +18866,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18847
18866
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
18848
18867
|
npy_intp *__pyx_r;
|
|
18849
18868
|
|
|
18850
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18869
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
|
|
18851
18870
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
18852
18871
|
* """
|
|
18853
18872
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -18857,7 +18876,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18857
18876
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
18858
18877
|
goto __pyx_L0;
|
|
18859
18878
|
|
|
18860
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18879
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
|
|
18861
18880
|
*
|
|
18862
18881
|
* @property
|
|
18863
18882
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18870,7 +18889,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18870
18889
|
return __pyx_r;
|
|
18871
18890
|
}
|
|
18872
18891
|
|
|
18873
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18892
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
|
|
18874
18893
|
*
|
|
18875
18894
|
* @property
|
|
18876
18895
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18881,7 +18900,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18881
18900
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
18882
18901
|
npy_intp __pyx_r;
|
|
18883
18902
|
|
|
18884
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18903
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
|
|
18885
18904
|
* """Returns the total size (in number of elements) of the array.
|
|
18886
18905
|
* """
|
|
18887
18906
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -18891,7 +18910,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18891
18910
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
18892
18911
|
goto __pyx_L0;
|
|
18893
18912
|
|
|
18894
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18913
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
|
|
18895
18914
|
*
|
|
18896
18915
|
* @property
|
|
18897
18916
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18904,7 +18923,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18904
18923
|
return __pyx_r;
|
|
18905
18924
|
}
|
|
18906
18925
|
|
|
18907
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18926
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
|
|
18908
18927
|
*
|
|
18909
18928
|
* @property
|
|
18910
18929
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18915,7 +18934,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18915
18934
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
18916
18935
|
char *__pyx_r;
|
|
18917
18936
|
|
|
18918
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18937
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
|
|
18919
18938
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
18920
18939
|
* """
|
|
18921
18940
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -18925,7 +18944,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18925
18944
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
18926
18945
|
goto __pyx_L0;
|
|
18927
18946
|
|
|
18928
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18947
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
|
|
18929
18948
|
*
|
|
18930
18949
|
* @property
|
|
18931
18950
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18938,7 +18957,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18938
18957
|
return __pyx_r;
|
|
18939
18958
|
}
|
|
18940
18959
|
|
|
18941
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18960
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
|
|
18942
18961
|
* ctypedef npy_cdouble complex_t
|
|
18943
18962
|
*
|
|
18944
18963
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18955,7 +18974,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18955
18974
|
int __pyx_clineno = 0;
|
|
18956
18975
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
|
|
18957
18976
|
|
|
18958
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18977
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
|
|
18959
18978
|
*
|
|
18960
18979
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
18961
18980
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -18969,7 +18988,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18969
18988
|
__pyx_t_1 = 0;
|
|
18970
18989
|
goto __pyx_L0;
|
|
18971
18990
|
|
|
18972
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18991
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
|
|
18973
18992
|
* ctypedef npy_cdouble complex_t
|
|
18974
18993
|
*
|
|
18975
18994
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18988,7 +19007,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18988
19007
|
return __pyx_r;
|
|
18989
19008
|
}
|
|
18990
19009
|
|
|
18991
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19010
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
|
|
18992
19011
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18993
19012
|
*
|
|
18994
19013
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -19005,7 +19024,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19005
19024
|
int __pyx_clineno = 0;
|
|
19006
19025
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
|
|
19007
19026
|
|
|
19008
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19027
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
19009
19028
|
*
|
|
19010
19029
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
19011
19030
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -19019,7 +19038,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19019
19038
|
__pyx_t_1 = 0;
|
|
19020
19039
|
goto __pyx_L0;
|
|
19021
19040
|
|
|
19022
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19041
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
|
|
19023
19042
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
19024
19043
|
*
|
|
19025
19044
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -19038,7 +19057,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19038
19057
|
return __pyx_r;
|
|
19039
19058
|
}
|
|
19040
19059
|
|
|
19041
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19060
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
|
|
19042
19061
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
19043
19062
|
*
|
|
19044
19063
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -19055,7 +19074,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19055
19074
|
int __pyx_clineno = 0;
|
|
19056
19075
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
|
|
19057
19076
|
|
|
19058
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19077
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
19059
19078
|
*
|
|
19060
19079
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
19061
19080
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -19069,7 +19088,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19069
19088
|
__pyx_t_1 = 0;
|
|
19070
19089
|
goto __pyx_L0;
|
|
19071
19090
|
|
|
19072
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19091
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
|
|
19073
19092
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
19074
19093
|
*
|
|
19075
19094
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -19088,7 +19107,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19088
19107
|
return __pyx_r;
|
|
19089
19108
|
}
|
|
19090
19109
|
|
|
19091
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19110
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
|
|
19092
19111
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
19093
19112
|
*
|
|
19094
19113
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -19105,7 +19124,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19105
19124
|
int __pyx_clineno = 0;
|
|
19106
19125
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
|
|
19107
19126
|
|
|
19108
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19127
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
|
|
19109
19128
|
*
|
|
19110
19129
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
19111
19130
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -19119,7 +19138,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19119
19138
|
__pyx_t_1 = 0;
|
|
19120
19139
|
goto __pyx_L0;
|
|
19121
19140
|
|
|
19122
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19141
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
|
|
19123
19142
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
19124
19143
|
*
|
|
19125
19144
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -19138,7 +19157,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19138
19157
|
return __pyx_r;
|
|
19139
19158
|
}
|
|
19140
19159
|
|
|
19141
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19160
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
|
|
19142
19161
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
19143
19162
|
*
|
|
19144
19163
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -19155,7 +19174,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19155
19174
|
int __pyx_clineno = 0;
|
|
19156
19175
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
|
|
19157
19176
|
|
|
19158
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19177
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
|
|
19159
19178
|
*
|
|
19160
19179
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
19161
19180
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -19169,7 +19188,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19169
19188
|
__pyx_t_1 = 0;
|
|
19170
19189
|
goto __pyx_L0;
|
|
19171
19190
|
|
|
19172
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19191
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
|
|
19173
19192
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
19174
19193
|
*
|
|
19175
19194
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -19188,7 +19207,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19188
19207
|
return __pyx_r;
|
|
19189
19208
|
}
|
|
19190
19209
|
|
|
19191
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19210
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
|
|
19192
19211
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
19193
19212
|
*
|
|
19194
19213
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -19202,7 +19221,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19202
19221
|
int __pyx_t_1;
|
|
19203
19222
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
|
|
19204
19223
|
|
|
19205
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19224
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
19206
19225
|
*
|
|
19207
19226
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19208
19227
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -19212,7 +19231,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19212
19231
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
19213
19232
|
if (__pyx_t_1) {
|
|
19214
19233
|
|
|
19215
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19234
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
|
|
19216
19235
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19217
19236
|
* if PyDataType_HASSUBARRAY(d):
|
|
19218
19237
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -19224,7 +19243,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19224
19243
|
__pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
|
|
19225
19244
|
goto __pyx_L0;
|
|
19226
19245
|
|
|
19227
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19246
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
19228
19247
|
*
|
|
19229
19248
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19230
19249
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -19233,7 +19252,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19233
19252
|
*/
|
|
19234
19253
|
}
|
|
19235
19254
|
|
|
19236
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19255
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
19237
19256
|
* return <tuple>d.subarray.shape
|
|
19238
19257
|
* else:
|
|
19239
19258
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -19247,7 +19266,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19247
19266
|
goto __pyx_L0;
|
|
19248
19267
|
}
|
|
19249
19268
|
|
|
19250
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19269
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
|
|
19251
19270
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
19252
19271
|
*
|
|
19253
19272
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -19262,7 +19281,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19262
19281
|
return __pyx_r;
|
|
19263
19282
|
}
|
|
19264
19283
|
|
|
19265
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19284
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
|
|
19266
19285
|
* int _import_umath() except -1
|
|
19267
19286
|
*
|
|
19268
19287
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -19276,7 +19295,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19276
19295
|
const char *__pyx_filename = NULL;
|
|
19277
19296
|
int __pyx_clineno = 0;
|
|
19278
19297
|
|
|
19279
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19298
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
|
|
19280
19299
|
*
|
|
19281
19300
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
19282
19301
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -19285,7 +19304,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19285
19304
|
*/
|
|
19286
19305
|
Py_INCREF(__pyx_v_base);
|
|
19287
19306
|
|
|
19288
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19307
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
|
|
19289
19308
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
19290
19309
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
19291
19310
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -19294,7 +19313,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19294
19313
|
*/
|
|
19295
19314
|
__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)
|
|
19296
19315
|
|
|
19297
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19316
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
|
|
19298
19317
|
* int _import_umath() except -1
|
|
19299
19318
|
*
|
|
19300
19319
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -19309,7 +19328,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19309
19328
|
__pyx_L0:;
|
|
19310
19329
|
}
|
|
19311
19330
|
|
|
19312
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19331
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
|
|
19313
19332
|
* PyArray_SetBaseObject(arr, base)
|
|
19314
19333
|
*
|
|
19315
19334
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19324,7 +19343,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19324
19343
|
int __pyx_t_1;
|
|
19325
19344
|
__Pyx_RefNannySetupContext("get_array_base", 1);
|
|
19326
19345
|
|
|
19327
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19346
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
|
|
19328
19347
|
*
|
|
19329
19348
|
* cdef inline object get_array_base(ndarray arr):
|
|
19330
19349
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -19333,7 +19352,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19333
19352
|
*/
|
|
19334
19353
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
19335
19354
|
|
|
19336
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19355
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
|
|
19337
19356
|
* cdef inline object get_array_base(ndarray arr):
|
|
19338
19357
|
* base = PyArray_BASE(arr)
|
|
19339
19358
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19343,7 +19362,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19343
19362
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
19344
19363
|
if (__pyx_t_1) {
|
|
19345
19364
|
|
|
19346
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19365
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
|
|
19347
19366
|
* base = PyArray_BASE(arr)
|
|
19348
19367
|
* if base is NULL:
|
|
19349
19368
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -19354,7 +19373,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19354
19373
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
19355
19374
|
goto __pyx_L0;
|
|
19356
19375
|
|
|
19357
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19376
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
|
|
19358
19377
|
* cdef inline object get_array_base(ndarray arr):
|
|
19359
19378
|
* base = PyArray_BASE(arr)
|
|
19360
19379
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19363,7 +19382,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19363
19382
|
*/
|
|
19364
19383
|
}
|
|
19365
19384
|
|
|
19366
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19385
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
|
|
19367
19386
|
* if base is NULL:
|
|
19368
19387
|
* return None
|
|
19369
19388
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -19375,7 +19394,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19375
19394
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
19376
19395
|
goto __pyx_L0;
|
|
19377
19396
|
|
|
19378
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19397
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
|
|
19379
19398
|
* PyArray_SetBaseObject(arr, base)
|
|
19380
19399
|
*
|
|
19381
19400
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19390,7 +19409,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19390
19409
|
return __pyx_r;
|
|
19391
19410
|
}
|
|
19392
19411
|
|
|
19393
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19412
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
|
|
19394
19413
|
* # Versions of the import_* functions which are more suitable for
|
|
19395
19414
|
* # Cython code.
|
|
19396
19415
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19414,7 +19433,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19414
19433
|
int __pyx_clineno = 0;
|
|
19415
19434
|
__Pyx_RefNannySetupContext("import_array", 1);
|
|
19416
19435
|
|
|
19417
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19436
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
|
|
19418
19437
|
* # Cython code.
|
|
19419
19438
|
* cdef inline int import_array() except -1:
|
|
19420
19439
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19430,7 +19449,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19430
19449
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19431
19450
|
/*try:*/ {
|
|
19432
19451
|
|
|
19433
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19452
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
|
|
19434
19453
|
* cdef inline int import_array() except -1:
|
|
19435
19454
|
* try:
|
|
19436
19455
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -19439,7 +19458,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19439
19458
|
*/
|
|
19440
19459
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
|
|
19441
19460
|
|
|
19442
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19461
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
|
|
19443
19462
|
* # Cython code.
|
|
19444
19463
|
* cdef inline int import_array() except -1:
|
|
19445
19464
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19453,7 +19472,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19453
19472
|
goto __pyx_L8_try_end;
|
|
19454
19473
|
__pyx_L3_error:;
|
|
19455
19474
|
|
|
19456
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19475
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19457
19476
|
* try:
|
|
19458
19477
|
* __pyx_import_array()
|
|
19459
19478
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19468,7 +19487,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19468
19487
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19469
19488
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19470
19489
|
|
|
19471
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19490
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19472
19491
|
* __pyx_import_array()
|
|
19473
19492
|
* except Exception:
|
|
19474
19493
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19483,7 +19502,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19483
19502
|
}
|
|
19484
19503
|
goto __pyx_L5_except_error;
|
|
19485
19504
|
|
|
19486
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19505
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
|
|
19487
19506
|
* # Cython code.
|
|
19488
19507
|
* cdef inline int import_array() except -1:
|
|
19489
19508
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19499,7 +19518,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19499
19518
|
__pyx_L8_try_end:;
|
|
19500
19519
|
}
|
|
19501
19520
|
|
|
19502
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19521
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
|
|
19503
19522
|
* # Versions of the import_* functions which are more suitable for
|
|
19504
19523
|
* # Cython code.
|
|
19505
19524
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19522,7 +19541,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19522
19541
|
return __pyx_r;
|
|
19523
19542
|
}
|
|
19524
19543
|
|
|
19525
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19544
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
|
|
19526
19545
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19527
19546
|
*
|
|
19528
19547
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19546,7 +19565,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19546
19565
|
int __pyx_clineno = 0;
|
|
19547
19566
|
__Pyx_RefNannySetupContext("import_umath", 1);
|
|
19548
19567
|
|
|
19549
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19568
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
19550
19569
|
*
|
|
19551
19570
|
* cdef inline int import_umath() except -1:
|
|
19552
19571
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19562,7 +19581,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19562
19581
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19563
19582
|
/*try:*/ {
|
|
19564
19583
|
|
|
19565
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19584
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
|
|
19566
19585
|
* cdef inline int import_umath() except -1:
|
|
19567
19586
|
* try:
|
|
19568
19587
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19571,7 +19590,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19571
19590
|
*/
|
|
19572
19591
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
|
|
19573
19592
|
|
|
19574
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19593
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
19575
19594
|
*
|
|
19576
19595
|
* cdef inline int import_umath() except -1:
|
|
19577
19596
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19585,7 +19604,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19585
19604
|
goto __pyx_L8_try_end;
|
|
19586
19605
|
__pyx_L3_error:;
|
|
19587
19606
|
|
|
19588
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19607
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19589
19608
|
* try:
|
|
19590
19609
|
* _import_umath()
|
|
19591
19610
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19600,7 +19619,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19600
19619
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19601
19620
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19602
19621
|
|
|
19603
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19622
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19604
19623
|
* _import_umath()
|
|
19605
19624
|
* except Exception:
|
|
19606
19625
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19615,7 +19634,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19615
19634
|
}
|
|
19616
19635
|
goto __pyx_L5_except_error;
|
|
19617
19636
|
|
|
19618
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19637
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
19619
19638
|
*
|
|
19620
19639
|
* cdef inline int import_umath() except -1:
|
|
19621
19640
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19631,7 +19650,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19631
19650
|
__pyx_L8_try_end:;
|
|
19632
19651
|
}
|
|
19633
19652
|
|
|
19634
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19653
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
|
|
19635
19654
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19636
19655
|
*
|
|
19637
19656
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19654,7 +19673,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19654
19673
|
return __pyx_r;
|
|
19655
19674
|
}
|
|
19656
19675
|
|
|
19657
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19676
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
|
|
19658
19677
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19659
19678
|
*
|
|
19660
19679
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19678,7 +19697,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19678
19697
|
int __pyx_clineno = 0;
|
|
19679
19698
|
__Pyx_RefNannySetupContext("import_ufunc", 1);
|
|
19680
19699
|
|
|
19681
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19700
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
19682
19701
|
*
|
|
19683
19702
|
* cdef inline int import_ufunc() except -1:
|
|
19684
19703
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19694,7 +19713,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19694
19713
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19695
19714
|
/*try:*/ {
|
|
19696
19715
|
|
|
19697
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19716
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
|
|
19698
19717
|
* cdef inline int import_ufunc() except -1:
|
|
19699
19718
|
* try:
|
|
19700
19719
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19703,7 +19722,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19703
19722
|
*/
|
|
19704
19723
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
|
|
19705
19724
|
|
|
19706
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19725
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
19707
19726
|
*
|
|
19708
19727
|
* cdef inline int import_ufunc() except -1:
|
|
19709
19728
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19717,7 +19736,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19717
19736
|
goto __pyx_L8_try_end;
|
|
19718
19737
|
__pyx_L3_error:;
|
|
19719
19738
|
|
|
19720
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19739
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
19721
19740
|
* try:
|
|
19722
19741
|
* _import_umath()
|
|
19723
19742
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19732,7 +19751,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19732
19751
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19733
19752
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19734
19753
|
|
|
19735
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19754
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19736
19755
|
* _import_umath()
|
|
19737
19756
|
* except Exception:
|
|
19738
19757
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19747,7 +19766,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19747
19766
|
}
|
|
19748
19767
|
goto __pyx_L5_except_error;
|
|
19749
19768
|
|
|
19750
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19769
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
19751
19770
|
*
|
|
19752
19771
|
* cdef inline int import_ufunc() except -1:
|
|
19753
19772
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19763,7 +19782,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19763
19782
|
__pyx_L8_try_end:;
|
|
19764
19783
|
}
|
|
19765
19784
|
|
|
19766
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19785
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
|
|
19767
19786
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19768
19787
|
*
|
|
19769
19788
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19786,7 +19805,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19786
19805
|
return __pyx_r;
|
|
19787
19806
|
}
|
|
19788
19807
|
|
|
19789
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19808
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
|
|
19790
19809
|
*
|
|
19791
19810
|
*
|
|
19792
19811
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19797,7 +19816,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19797
19816
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
19798
19817
|
int __pyx_r;
|
|
19799
19818
|
|
|
19800
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19819
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
|
|
19801
19820
|
* bool
|
|
19802
19821
|
* """
|
|
19803
19822
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19807,7 +19826,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19807
19826
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
19808
19827
|
goto __pyx_L0;
|
|
19809
19828
|
|
|
19810
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19829
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
|
|
19811
19830
|
*
|
|
19812
19831
|
*
|
|
19813
19832
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19820,7 +19839,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19820
19839
|
return __pyx_r;
|
|
19821
19840
|
}
|
|
19822
19841
|
|
|
19823
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19842
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
19824
19843
|
*
|
|
19825
19844
|
*
|
|
19826
19845
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19831,7 +19850,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19831
19850
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
19832
19851
|
int __pyx_r;
|
|
19833
19852
|
|
|
19834
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19853
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
|
|
19835
19854
|
* bool
|
|
19836
19855
|
* """
|
|
19837
19856
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19841,7 +19860,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19841
19860
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
19842
19861
|
goto __pyx_L0;
|
|
19843
19862
|
|
|
19844
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19863
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
19845
19864
|
*
|
|
19846
19865
|
*
|
|
19847
19866
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19854,7 +19873,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19854
19873
|
return __pyx_r;
|
|
19855
19874
|
}
|
|
19856
19875
|
|
|
19857
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19876
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
19858
19877
|
*
|
|
19859
19878
|
*
|
|
19860
19879
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19865,7 +19884,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19865
19884
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
19866
19885
|
npy_datetime __pyx_r;
|
|
19867
19886
|
|
|
19868
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19887
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
|
|
19869
19888
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
19870
19889
|
* """
|
|
19871
19890
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19875,7 +19894,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19875
19894
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
19876
19895
|
goto __pyx_L0;
|
|
19877
19896
|
|
|
19878
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19897
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
19879
19898
|
*
|
|
19880
19899
|
*
|
|
19881
19900
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19888,7 +19907,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19888
19907
|
return __pyx_r;
|
|
19889
19908
|
}
|
|
19890
19909
|
|
|
19891
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19910
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
|
|
19892
19911
|
*
|
|
19893
19912
|
*
|
|
19894
19913
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19899,7 +19918,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19899
19918
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
19900
19919
|
npy_timedelta __pyx_r;
|
|
19901
19920
|
|
|
19902
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19921
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
|
|
19903
19922
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
19904
19923
|
* """
|
|
19905
19924
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19909,7 +19928,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19909
19928
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
19910
19929
|
goto __pyx_L0;
|
|
19911
19930
|
|
|
19912
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19931
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
|
|
19913
19932
|
*
|
|
19914
19933
|
*
|
|
19915
19934
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19922,7 +19941,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19922
19941
|
return __pyx_r;
|
|
19923
19942
|
}
|
|
19924
19943
|
|
|
19925
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19944
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
|
|
19926
19945
|
*
|
|
19927
19946
|
*
|
|
19928
19947
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19933,7 +19952,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19933
19952
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
19934
19953
|
NPY_DATETIMEUNIT __pyx_r;
|
|
19935
19954
|
|
|
19936
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19955
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
|
|
19937
19956
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
19938
19957
|
* """
|
|
19939
19958
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -19941,7 +19960,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
19941
19960
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
19942
19961
|
goto __pyx_L0;
|
|
19943
19962
|
|
|
19944
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19963
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
|
|
19945
19964
|
*
|
|
19946
19965
|
*
|
|
19947
19966
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -28804,7 +28823,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
28804
28823
|
__Pyx_GOTREF(__pyx_tuple__8);
|
|
28805
28824
|
__Pyx_GIVEREF(__pyx_tuple__8);
|
|
28806
28825
|
|
|
28807
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
28826
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
28808
28827
|
* __pyx_import_array()
|
|
28809
28828
|
* except Exception:
|
|
28810
28829
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -28815,7 +28834,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
28815
28834
|
__Pyx_GOTREF(__pyx_tuple__9);
|
|
28816
28835
|
__Pyx_GIVEREF(__pyx_tuple__9);
|
|
28817
28836
|
|
|
28818
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
28837
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
28819
28838
|
* _import_umath()
|
|
28820
28839
|
* except Exception:
|
|
28821
28840
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -29513,33 +29532,33 @@ static int __Pyx_modinit_type_import_code(void) {
|
|
|
29513
29532
|
/*--- Type import code ---*/
|
|
29514
29533
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
29515
29534
|
__Pyx_GOTREF(__pyx_t_1);
|
|
29516
|
-
__pyx_ptype_7cpython_4type_type =
|
|
29535
|
+
__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
|
29517
29536
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
29518
|
-
sizeof(PyTypeObject),
|
|
29537
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
29519
29538
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
29520
|
-
sizeof(PyTypeObject),
|
|
29539
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
29521
29540
|
#else
|
|
29522
|
-
sizeof(PyHeapTypeObject),
|
|
29541
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
|
|
29523
29542
|
#endif
|
|
29524
|
-
|
|
29543
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
29525
29544
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
29526
29545
|
__pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
|
|
29527
29546
|
__Pyx_GOTREF(__pyx_t_1);
|
|
29528
|
-
__pyx_ptype_5numpy_dtype =
|
|
29529
|
-
__pyx_ptype_5numpy_flatiter =
|
|
29530
|
-
__pyx_ptype_5numpy_broadcast =
|
|
29531
|
-
__pyx_ptype_5numpy_ndarray =
|
|
29532
|
-
__pyx_ptype_5numpy_generic =
|
|
29533
|
-
__pyx_ptype_5numpy_number =
|
|
29534
|
-
__pyx_ptype_5numpy_integer =
|
|
29535
|
-
__pyx_ptype_5numpy_signedinteger =
|
|
29536
|
-
__pyx_ptype_5numpy_unsignedinteger =
|
|
29537
|
-
__pyx_ptype_5numpy_inexact =
|
|
29538
|
-
__pyx_ptype_5numpy_floating =
|
|
29539
|
-
__pyx_ptype_5numpy_complexfloating =
|
|
29540
|
-
__pyx_ptype_5numpy_flexible =
|
|
29541
|
-
__pyx_ptype_5numpy_character =
|
|
29542
|
-
__pyx_ptype_5numpy_ufunc =
|
|
29547
|
+
__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)
|
|
29548
|
+
__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)
|
|
29549
|
+
__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)
|
|
29550
|
+
__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)
|
|
29551
|
+
__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)
|
|
29552
|
+
__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)
|
|
29553
|
+
__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)
|
|
29554
|
+
__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)
|
|
29555
|
+
__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)
|
|
29556
|
+
__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)
|
|
29557
|
+
__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)
|
|
29558
|
+
__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)
|
|
29559
|
+
__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)
|
|
29560
|
+
__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)
|
|
29561
|
+
__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)
|
|
29543
29562
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
29544
29563
|
__Pyx_RefNannyFinishContext();
|
|
29545
29564
|
return 0;
|
|
@@ -31029,11 +31048,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
|
|
|
31029
31048
|
{
|
|
31030
31049
|
int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
|
|
31031
31050
|
if (unlikely(eq != 0)) {
|
|
31032
|
-
if (unlikely(eq < 0)) return NULL;
|
|
31051
|
+
if (unlikely(eq < 0)) return NULL;
|
|
31033
31052
|
return kwvalues[i];
|
|
31034
31053
|
}
|
|
31035
31054
|
}
|
|
31036
|
-
return NULL;
|
|
31055
|
+
return NULL;
|
|
31037
31056
|
}
|
|
31038
31057
|
#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
|
|
31039
31058
|
CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
|
|
@@ -31146,7 +31165,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
31146
31165
|
if (*name) {
|
|
31147
31166
|
values[name-argnames] = value;
|
|
31148
31167
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
31149
|
-
Py_INCREF(value);
|
|
31168
|
+
Py_INCREF(value);
|
|
31150
31169
|
Py_DECREF(key);
|
|
31151
31170
|
#endif
|
|
31152
31171
|
key = NULL;
|
|
@@ -31165,7 +31184,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
31165
31184
|
&& _PyString_Eq(**name, key)) {
|
|
31166
31185
|
values[name-argnames] = value;
|
|
31167
31186
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
31168
|
-
value = NULL;
|
|
31187
|
+
value = NULL;
|
|
31169
31188
|
#endif
|
|
31170
31189
|
break;
|
|
31171
31190
|
}
|
|
@@ -31197,7 +31216,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
31197
31216
|
if (cmp == 0) {
|
|
31198
31217
|
values[name-argnames] = value;
|
|
31199
31218
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
31200
|
-
value = NULL;
|
|
31219
|
+
value = NULL;
|
|
31201
31220
|
#endif
|
|
31202
31221
|
break;
|
|
31203
31222
|
}
|
|
@@ -33233,9 +33252,10 @@ static CYTHON_INLINE int __Pyx_PyInt_BoolEqObjC(PyObject *op1, PyObject *op2, lo
|
|
|
33233
33252
|
|
|
33234
33253
|
/* IterFinish */
|
|
33235
33254
|
static CYTHON_INLINE int __Pyx_IterFinish(void) {
|
|
33255
|
+
PyObject* exc_type;
|
|
33236
33256
|
__Pyx_PyThreadState_declare
|
|
33237
33257
|
__Pyx_PyThreadState_assign
|
|
33238
|
-
|
|
33258
|
+
exc_type = __Pyx_PyErr_CurrentExceptionType();
|
|
33239
33259
|
if (unlikely(exc_type)) {
|
|
33240
33260
|
if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
|
|
33241
33261
|
return -1;
|
|
@@ -34167,10 +34187,10 @@ __PYX_GOOD:
|
|
|
34167
34187
|
#endif
|
|
34168
34188
|
|
|
34169
34189
|
/* TypeImport */
|
|
34170
|
-
#ifndef
|
|
34171
|
-
#define
|
|
34172
|
-
static PyTypeObject *
|
|
34173
|
-
size_t size, size_t alignment, enum
|
|
34190
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_0_10
|
|
34191
|
+
#define __PYX_HAVE_RT_ImportType_3_0_10
|
|
34192
|
+
static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
|
|
34193
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
|
|
34174
34194
|
{
|
|
34175
34195
|
PyObject *result = 0;
|
|
34176
34196
|
char warning[200];
|
|
@@ -34224,7 +34244,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
34224
34244
|
module_name, class_name, size, basicsize+itemsize);
|
|
34225
34245
|
goto bad;
|
|
34226
34246
|
}
|
|
34227
|
-
if (check_size ==
|
|
34247
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
|
|
34228
34248
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
34229
34249
|
PyErr_Format(PyExc_ValueError,
|
|
34230
34250
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -34232,7 +34252,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
34232
34252
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
34233
34253
|
goto bad;
|
|
34234
34254
|
}
|
|
34235
|
-
else if (check_size ==
|
|
34255
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
|
|
34236
34256
|
PyOS_snprintf(warning, sizeof(warning),
|
|
34237
34257
|
"%s.%s size changed, may indicate binary incompatibility. "
|
|
34238
34258
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -35232,7 +35252,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
|
|
|
35232
35252
|
default:
|
|
35233
35253
|
return NULL;
|
|
35234
35254
|
}
|
|
35235
|
-
return ((
|
|
35255
|
+
return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
|
|
35236
35256
|
}
|
|
35237
35257
|
static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
|
|
35238
35258
|
{
|
|
@@ -35691,7 +35711,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
|
|
|
35691
35711
|
#else
|
|
35692
35712
|
py_code = PyCode_NewEmpty(filename, funcname, py_line);
|
|
35693
35713
|
#endif
|
|
35694
|
-
Py_XDECREF(py_funcname);
|
|
35714
|
+
Py_XDECREF(py_funcname);
|
|
35695
35715
|
return py_code;
|
|
35696
35716
|
bad:
|
|
35697
35717
|
Py_XDECREF(py_funcname);
|