biotite 0.39.0__cp310-cp310-win_amd64.whl → 0.41.0__cp310-cp310-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of biotite might be problematic. Click here for more details.
- biotite/__init__.py +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 +258 -237
- biotite/sequence/align/banded.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/cigar.py +60 -15
- biotite/sequence/align/kmeralphabet.c +243 -222
- biotite/sequence/align/kmeralphabet.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/kmersimilarity.c +215 -196
- biotite/sequence/align/kmersimilarity.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/kmertable.cpp +233 -205
- biotite/sequence/align/localgapped.c +258 -237
- biotite/sequence/align/localgapped.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/localungapped.c +235 -214
- biotite/sequence/align/localungapped.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/multiple.c +255 -234
- biotite/sequence/align/multiple.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/pairwise.c +274 -253
- biotite/sequence/align/pairwise.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/permutation.c +215 -196
- biotite/sequence/align/permutation.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/selector.c +217 -197
- biotite/sequence/align/selector.cp310-win_amd64.pyd +0 -0
- biotite/sequence/align/tracetable.c +215 -195
- biotite/sequence/align/tracetable.cp310-win_amd64.pyd +0 -0
- biotite/sequence/annotation.py +2 -2
- biotite/sequence/codec.c +235 -214
- biotite/sequence/codec.cp310-win_amd64.pyd +0 -0
- biotite/sequence/io/fasta/convert.py +27 -24
- biotite/sequence/phylo/nj.c +215 -196
- biotite/sequence/phylo/nj.cp310-win_amd64.pyd +0 -0
- biotite/sequence/phylo/tree.c +227 -202
- biotite/sequence/phylo/tree.cp310-win_amd64.pyd +0 -0
- biotite/sequence/phylo/upgma.c +215 -196
- biotite/sequence/phylo/upgma.cp310-win_amd64.pyd +0 -0
- biotite/structure/__init__.py +2 -0
- biotite/structure/basepairs.py +7 -12
- biotite/structure/bonds.c +1437 -1279
- biotite/structure/bonds.cp310-win_amd64.pyd +0 -0
- biotite/structure/celllist.c +217 -197
- biotite/structure/celllist.cp310-win_amd64.pyd +0 -0
- biotite/structure/charges.c +1052 -1101
- biotite/structure/charges.cp310-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 +219 -198
- biotite/structure/io/mmtf/convertarray.cp310-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/convertfile.c +217 -197
- biotite/structure/io/mmtf/convertfile.cp310-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/decode.c +225 -204
- biotite/structure/io/mmtf/decode.cp310-win_amd64.pyd +0 -0
- biotite/structure/io/mmtf/encode.c +215 -196
- biotite/structure/io/mmtf/encode.cp310-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.cp310-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 +112813 -0
- biotite/structure/io/pdbx/encoding.cp310-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 +215 -196
- biotite/structure/sasa.cp310-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
|
@@ -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
|
|
|
@@ -1289,24 +1324,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
|
|
|
1289
1324
|
#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
|
|
1290
1325
|
#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
|
|
1291
1326
|
#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
|
|
1292
|
-
#if CYTHON_COMPILING_IN_LIMITED_API
|
|
1293
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
|
|
1294
|
-
{
|
|
1295
|
-
const wchar_t *u_end = u;
|
|
1296
|
-
while (*u_end++) ;
|
|
1297
|
-
return (size_t)(u_end - u - 1);
|
|
1298
|
-
}
|
|
1299
|
-
#else
|
|
1300
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
|
|
1301
|
-
{
|
|
1302
|
-
const Py_UNICODE *u_end = u;
|
|
1303
|
-
while (*u_end++) ;
|
|
1304
|
-
return (size_t)(u_end - u - 1);
|
|
1305
|
-
}
|
|
1306
|
-
#endif
|
|
1307
1327
|
#define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
|
|
1308
|
-
#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
|
|
1309
|
-
#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
|
|
1310
1328
|
#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
|
|
1311
1329
|
#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
|
|
1312
1330
|
#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
|
|
@@ -1356,7 +1374,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
|
|
|
1356
1374
|
#endif
|
|
1357
1375
|
typedef Py_ssize_t __Pyx_compact_pylong;
|
|
1358
1376
|
typedef size_t __Pyx_compact_upylong;
|
|
1359
|
-
#else
|
|
1377
|
+
#else
|
|
1360
1378
|
#define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
|
|
1361
1379
|
#define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
|
|
1362
1380
|
#define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
|
|
@@ -1646,7 +1664,7 @@ typedef struct {
|
|
|
1646
1664
|
|
|
1647
1665
|
/* #### Code section: numeric_typedefs ### */
|
|
1648
1666
|
|
|
1649
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1667
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
|
|
1650
1668
|
* # in Cython to enable them only on the right systems.
|
|
1651
1669
|
*
|
|
1652
1670
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
|
@@ -1655,7 +1673,7 @@ typedef struct {
|
|
|
1655
1673
|
*/
|
|
1656
1674
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1657
1675
|
|
|
1658
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1676
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
|
|
1659
1677
|
*
|
|
1660
1678
|
* ctypedef npy_int8 int8_t
|
|
1661
1679
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
|
@@ -1664,7 +1682,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
|
1664
1682
|
*/
|
|
1665
1683
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1666
1684
|
|
|
1667
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1685
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
|
|
1668
1686
|
* ctypedef npy_int8 int8_t
|
|
1669
1687
|
* ctypedef npy_int16 int16_t
|
|
1670
1688
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
|
@@ -1673,7 +1691,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
|
1673
1691
|
*/
|
|
1674
1692
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1675
1693
|
|
|
1676
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1694
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":735
|
|
1677
1695
|
* ctypedef npy_int16 int16_t
|
|
1678
1696
|
* ctypedef npy_int32 int32_t
|
|
1679
1697
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
|
@@ -1682,7 +1700,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
|
1682
1700
|
*/
|
|
1683
1701
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1684
1702
|
|
|
1685
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1703
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
|
|
1686
1704
|
* #ctypedef npy_int128 int128_t
|
|
1687
1705
|
*
|
|
1688
1706
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
|
@@ -1691,7 +1709,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
|
1691
1709
|
*/
|
|
1692
1710
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1693
1711
|
|
|
1694
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1712
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
|
|
1695
1713
|
*
|
|
1696
1714
|
* ctypedef npy_uint8 uint8_t
|
|
1697
1715
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
|
@@ -1700,7 +1718,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
|
1700
1718
|
*/
|
|
1701
1719
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1702
1720
|
|
|
1703
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1721
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
|
|
1704
1722
|
* ctypedef npy_uint8 uint8_t
|
|
1705
1723
|
* ctypedef npy_uint16 uint16_t
|
|
1706
1724
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
|
@@ -1709,7 +1727,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
|
1709
1727
|
*/
|
|
1710
1728
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1711
1729
|
|
|
1712
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1730
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":742
|
|
1713
1731
|
* ctypedef npy_uint16 uint16_t
|
|
1714
1732
|
* ctypedef npy_uint32 uint32_t
|
|
1715
1733
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
|
@@ -1718,7 +1736,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
|
1718
1736
|
*/
|
|
1719
1737
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1720
1738
|
|
|
1721
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1739
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
|
|
1722
1740
|
* #ctypedef npy_uint128 uint128_t
|
|
1723
1741
|
*
|
|
1724
1742
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
|
@@ -1727,7 +1745,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
|
1727
1745
|
*/
|
|
1728
1746
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1729
1747
|
|
|
1730
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1748
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":747
|
|
1731
1749
|
*
|
|
1732
1750
|
* ctypedef npy_float32 float32_t
|
|
1733
1751
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
|
@@ -1736,7 +1754,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
|
1736
1754
|
*/
|
|
1737
1755
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1738
1756
|
|
|
1739
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1757
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
|
|
1740
1758
|
* # The int types are mapped a bit surprising --
|
|
1741
1759
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1742
1760
|
* ctypedef npy_long int_t # <<<<<<<<<<<<<<
|
|
@@ -1745,7 +1763,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
|
1745
1763
|
*/
|
|
1746
1764
|
typedef npy_long __pyx_t_5numpy_int_t;
|
|
1747
1765
|
|
|
1748
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1766
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
|
|
1749
1767
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1750
1768
|
* ctypedef npy_long int_t
|
|
1751
1769
|
* ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
|
|
@@ -1754,7 +1772,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
|
|
|
1754
1772
|
*/
|
|
1755
1773
|
typedef npy_longlong __pyx_t_5numpy_long_t;
|
|
1756
1774
|
|
|
1757
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1775
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
|
|
1758
1776
|
* ctypedef npy_long int_t
|
|
1759
1777
|
* ctypedef npy_longlong long_t
|
|
1760
1778
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
|
@@ -1763,7 +1781,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
|
|
|
1763
1781
|
*/
|
|
1764
1782
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1765
1783
|
|
|
1766
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1784
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
|
|
1767
1785
|
* ctypedef npy_longlong longlong_t
|
|
1768
1786
|
*
|
|
1769
1787
|
* ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
|
|
@@ -1772,7 +1790,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
|
1772
1790
|
*/
|
|
1773
1791
|
typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
1774
1792
|
|
|
1775
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1793
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
|
|
1776
1794
|
*
|
|
1777
1795
|
* ctypedef npy_ulong uint_t
|
|
1778
1796
|
* ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
|
|
@@ -1781,7 +1799,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
|
1781
1799
|
*/
|
|
1782
1800
|
typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
|
|
1783
1801
|
|
|
1784
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1802
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":762
|
|
1785
1803
|
* ctypedef npy_ulong uint_t
|
|
1786
1804
|
* ctypedef npy_ulonglong ulong_t
|
|
1787
1805
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
|
@@ -1790,7 +1808,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
|
|
|
1790
1808
|
*/
|
|
1791
1809
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1792
1810
|
|
|
1793
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1811
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
|
|
1794
1812
|
* ctypedef npy_ulonglong ulonglong_t
|
|
1795
1813
|
*
|
|
1796
1814
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
|
@@ -1799,7 +1817,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
|
1799
1817
|
*/
|
|
1800
1818
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1801
1819
|
|
|
1802
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1820
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
|
|
1803
1821
|
*
|
|
1804
1822
|
* ctypedef npy_intp intp_t
|
|
1805
1823
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
|
@@ -1808,7 +1826,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
|
1808
1826
|
*/
|
|
1809
1827
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1810
1828
|
|
|
1811
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1829
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
|
|
1812
1830
|
* ctypedef npy_uintp uintp_t
|
|
1813
1831
|
*
|
|
1814
1832
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
|
@@ -1817,7 +1835,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
|
1817
1835
|
*/
|
|
1818
1836
|
typedef npy_double __pyx_t_5numpy_float_t;
|
|
1819
1837
|
|
|
1820
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1838
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
|
|
1821
1839
|
*
|
|
1822
1840
|
* ctypedef npy_double float_t
|
|
1823
1841
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
|
@@ -1826,7 +1844,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
|
1826
1844
|
*/
|
|
1827
1845
|
typedef npy_double __pyx_t_5numpy_double_t;
|
|
1828
1846
|
|
|
1829
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1847
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
|
|
1830
1848
|
* ctypedef npy_double float_t
|
|
1831
1849
|
* ctypedef npy_double double_t
|
|
1832
1850
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1930,7 +1948,7 @@ struct __pyx_MemviewEnum_obj;
|
|
|
1930
1948
|
struct __pyx_memoryview_obj;
|
|
1931
1949
|
struct __pyx_memoryviewslice_obj;
|
|
1932
1950
|
|
|
1933
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1951
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1934
1952
|
* ctypedef npy_longdouble longdouble_t
|
|
1935
1953
|
*
|
|
1936
1954
|
* ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
|
|
@@ -1939,7 +1957,7 @@ struct __pyx_memoryviewslice_obj;
|
|
|
1939
1957
|
*/
|
|
1940
1958
|
typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
1941
1959
|
|
|
1942
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1960
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
|
|
1943
1961
|
*
|
|
1944
1962
|
* ctypedef npy_cfloat cfloat_t
|
|
1945
1963
|
* ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1948,7 +1966,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
|
1948
1966
|
*/
|
|
1949
1967
|
typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
1950
1968
|
|
|
1951
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1969
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
|
|
1952
1970
|
* ctypedef npy_cfloat cfloat_t
|
|
1953
1971
|
* ctypedef npy_cdouble cdouble_t
|
|
1954
1972
|
* ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1957,7 +1975,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
|
1957
1975
|
*/
|
|
1958
1976
|
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
|
|
1959
1977
|
|
|
1960
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1978
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":775
|
|
1961
1979
|
* ctypedef npy_clongdouble clongdouble_t
|
|
1962
1980
|
*
|
|
1963
1981
|
* ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
|
|
@@ -2278,8 +2296,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2278
2296
|
#define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
|
|
2279
2297
|
#define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
|
|
2280
2298
|
#else
|
|
2281
|
-
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2282
|
-
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2299
|
+
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2300
|
+
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2283
2301
|
#endif
|
|
2284
2302
|
#define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
|
|
2285
2303
|
#define __Pyx_KwValues_VARARGS(args, nargs) NULL
|
|
@@ -2295,8 +2313,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2295
2313
|
#else
|
|
2296
2314
|
#define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
|
|
2297
2315
|
#endif
|
|
2298
|
-
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg
|
|
2299
|
-
|
|
2316
|
+
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
|
|
2317
|
+
to have the same reference counting */
|
|
2318
|
+
#define __Pyx_Arg_XDECREF_FASTCALL(arg)
|
|
2300
2319
|
#else
|
|
2301
2320
|
#define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
|
|
2302
2321
|
#define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
|
|
@@ -2927,22 +2946,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
|
|
|
2927
2946
|
#endif
|
|
2928
2947
|
|
|
2929
2948
|
/* TypeImport.proto */
|
|
2930
|
-
#ifndef
|
|
2931
|
-
#define
|
|
2949
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2950
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2932
2951
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
2933
2952
|
#include <stdalign.h>
|
|
2934
2953
|
#endif
|
|
2935
2954
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
2936
|
-
#define
|
|
2955
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
|
|
2937
2956
|
#else
|
|
2938
|
-
#define
|
|
2957
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
|
|
2939
2958
|
#endif
|
|
2940
|
-
enum
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2959
|
+
enum __Pyx_ImportType_CheckSize_3_0_10 {
|
|
2960
|
+
__Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
|
|
2961
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
|
|
2962
|
+
__Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
|
|
2944
2963
|
};
|
|
2945
|
-
static PyTypeObject *
|
|
2964
|
+
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);
|
|
2946
2965
|
#endif
|
|
2947
2966
|
|
|
2948
2967
|
/* SetNameInClass.proto */
|
|
@@ -3046,7 +3065,7 @@ typedef struct {
|
|
|
3046
3065
|
#endif
|
|
3047
3066
|
void *defaults;
|
|
3048
3067
|
int defaults_pyobjects;
|
|
3049
|
-
size_t defaults_size;
|
|
3068
|
+
size_t defaults_size;
|
|
3050
3069
|
int flags;
|
|
3051
3070
|
PyObject *defaults_tuple;
|
|
3052
3071
|
PyObject *defaults_kwdict;
|
|
@@ -19262,7 +19281,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
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-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
|
|
19266
19285
|
*
|
|
19267
19286
|
* @property
|
|
19268
19287
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19273,7 +19292,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
19273
19292
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
19274
19293
|
PyObject *__pyx_r;
|
|
19275
19294
|
|
|
19276
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19295
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":249
|
|
19277
19296
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
19278
19297
|
* """
|
|
19279
19298
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -19283,7 +19302,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
19283
19302
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
19284
19303
|
goto __pyx_L0;
|
|
19285
19304
|
|
|
19286
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19305
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
|
|
19287
19306
|
*
|
|
19288
19307
|
* @property
|
|
19289
19308
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19296,7 +19315,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
19296
19315
|
return __pyx_r;
|
|
19297
19316
|
}
|
|
19298
19317
|
|
|
19299
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19318
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
|
|
19300
19319
|
*
|
|
19301
19320
|
* @property
|
|
19302
19321
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -19310,7 +19329,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19310
19329
|
PyArray_Descr *__pyx_t_1;
|
|
19311
19330
|
__Pyx_RefNannySetupContext("descr", 1);
|
|
19312
19331
|
|
|
19313
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19332
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":255
|
|
19314
19333
|
* """Returns an owned reference to the dtype of the array.
|
|
19315
19334
|
* """
|
|
19316
19335
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -19323,7 +19342,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19323
19342
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
19324
19343
|
goto __pyx_L0;
|
|
19325
19344
|
|
|
19326
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19345
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
|
|
19327
19346
|
*
|
|
19328
19347
|
* @property
|
|
19329
19348
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -19338,7 +19357,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19338
19357
|
return __pyx_r;
|
|
19339
19358
|
}
|
|
19340
19359
|
|
|
19341
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19360
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
|
|
19342
19361
|
*
|
|
19343
19362
|
* @property
|
|
19344
19363
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19349,7 +19368,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19349
19368
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
19350
19369
|
int __pyx_r;
|
|
19351
19370
|
|
|
19352
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19371
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":261
|
|
19353
19372
|
* """Returns the number of dimensions in the array.
|
|
19354
19373
|
* """
|
|
19355
19374
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -19359,7 +19378,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
19359
19378
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
19360
19379
|
goto __pyx_L0;
|
|
19361
19380
|
|
|
19362
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19381
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
|
|
19363
19382
|
*
|
|
19364
19383
|
* @property
|
|
19365
19384
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19372,7 +19391,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
19372
19391
|
return __pyx_r;
|
|
19373
19392
|
}
|
|
19374
19393
|
|
|
19375
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19394
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
|
|
19376
19395
|
*
|
|
19377
19396
|
* @property
|
|
19378
19397
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19383,7 +19402,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
19383
19402
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
19384
19403
|
npy_intp *__pyx_r;
|
|
19385
19404
|
|
|
19386
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19405
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":269
|
|
19387
19406
|
* Can return NULL for 0-dimensional arrays.
|
|
19388
19407
|
* """
|
|
19389
19408
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -19393,7 +19412,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
19393
19412
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
19394
19413
|
goto __pyx_L0;
|
|
19395
19414
|
|
|
19396
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19415
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
|
|
19397
19416
|
*
|
|
19398
19417
|
* @property
|
|
19399
19418
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19406,7 +19425,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
19406
19425
|
return __pyx_r;
|
|
19407
19426
|
}
|
|
19408
19427
|
|
|
19409
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19428
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
|
|
19410
19429
|
*
|
|
19411
19430
|
* @property
|
|
19412
19431
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19417,7 +19436,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
19417
19436
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
19418
19437
|
npy_intp *__pyx_r;
|
|
19419
19438
|
|
|
19420
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19439
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":276
|
|
19421
19440
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
19422
19441
|
* """
|
|
19423
19442
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -19427,7 +19446,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
19427
19446
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
19428
19447
|
goto __pyx_L0;
|
|
19429
19448
|
|
|
19430
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19449
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
|
|
19431
19450
|
*
|
|
19432
19451
|
* @property
|
|
19433
19452
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19440,7 +19459,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
19440
19459
|
return __pyx_r;
|
|
19441
19460
|
}
|
|
19442
19461
|
|
|
19443
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19462
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
|
|
19444
19463
|
*
|
|
19445
19464
|
* @property
|
|
19446
19465
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19451,7 +19470,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
19451
19470
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
19452
19471
|
npy_intp __pyx_r;
|
|
19453
19472
|
|
|
19454
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19473
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":282
|
|
19455
19474
|
* """Returns the total size (in number of elements) of the array.
|
|
19456
19475
|
* """
|
|
19457
19476
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -19461,7 +19480,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
19461
19480
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
19462
19481
|
goto __pyx_L0;
|
|
19463
19482
|
|
|
19464
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19483
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
|
|
19465
19484
|
*
|
|
19466
19485
|
* @property
|
|
19467
19486
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19474,7 +19493,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
19474
19493
|
return __pyx_r;
|
|
19475
19494
|
}
|
|
19476
19495
|
|
|
19477
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19496
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
19478
19497
|
*
|
|
19479
19498
|
* @property
|
|
19480
19499
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19485,7 +19504,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
19485
19504
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
19486
19505
|
char *__pyx_r;
|
|
19487
19506
|
|
|
19488
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19507
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":291
|
|
19489
19508
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
19490
19509
|
* """
|
|
19491
19510
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -19495,7 +19514,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
19495
19514
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
19496
19515
|
goto __pyx_L0;
|
|
19497
19516
|
|
|
19498
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19517
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
19499
19518
|
*
|
|
19500
19519
|
* @property
|
|
19501
19520
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19508,7 +19527,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
19508
19527
|
return __pyx_r;
|
|
19509
19528
|
}
|
|
19510
19529
|
|
|
19511
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19530
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
19512
19531
|
* ctypedef npy_cdouble complex_t
|
|
19513
19532
|
*
|
|
19514
19533
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -19525,7 +19544,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
19525
19544
|
int __pyx_clineno = 0;
|
|
19526
19545
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
|
|
19527
19546
|
|
|
19528
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19547
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":778
|
|
19529
19548
|
*
|
|
19530
19549
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
19531
19550
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -19539,7 +19558,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
19539
19558
|
__pyx_t_1 = 0;
|
|
19540
19559
|
goto __pyx_L0;
|
|
19541
19560
|
|
|
19542
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19561
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
19543
19562
|
* ctypedef npy_cdouble complex_t
|
|
19544
19563
|
*
|
|
19545
19564
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -19558,7 +19577,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
19558
19577
|
return __pyx_r;
|
|
19559
19578
|
}
|
|
19560
19579
|
|
|
19561
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19580
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
19562
19581
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
19563
19582
|
*
|
|
19564
19583
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -19575,7 +19594,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19575
19594
|
int __pyx_clineno = 0;
|
|
19576
19595
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
|
|
19577
19596
|
|
|
19578
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19597
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":781
|
|
19579
19598
|
*
|
|
19580
19599
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
19581
19600
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -19589,7 +19608,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19589
19608
|
__pyx_t_1 = 0;
|
|
19590
19609
|
goto __pyx_L0;
|
|
19591
19610
|
|
|
19592
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19611
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
19593
19612
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
19594
19613
|
*
|
|
19595
19614
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -19608,7 +19627,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19608
19627
|
return __pyx_r;
|
|
19609
19628
|
}
|
|
19610
19629
|
|
|
19611
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19630
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
|
|
19612
19631
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
19613
19632
|
*
|
|
19614
19633
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -19625,7 +19644,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19625
19644
|
int __pyx_clineno = 0;
|
|
19626
19645
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
|
|
19627
19646
|
|
|
19628
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19647
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":784
|
|
19629
19648
|
*
|
|
19630
19649
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
19631
19650
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -19639,7 +19658,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19639
19658
|
__pyx_t_1 = 0;
|
|
19640
19659
|
goto __pyx_L0;
|
|
19641
19660
|
|
|
19642
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19661
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
|
|
19643
19662
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
19644
19663
|
*
|
|
19645
19664
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -19658,7 +19677,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19658
19677
|
return __pyx_r;
|
|
19659
19678
|
}
|
|
19660
19679
|
|
|
19661
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19680
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
|
|
19662
19681
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
19663
19682
|
*
|
|
19664
19683
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -19675,7 +19694,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19675
19694
|
int __pyx_clineno = 0;
|
|
19676
19695
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
|
|
19677
19696
|
|
|
19678
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19697
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":787
|
|
19679
19698
|
*
|
|
19680
19699
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
19681
19700
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -19689,7 +19708,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19689
19708
|
__pyx_t_1 = 0;
|
|
19690
19709
|
goto __pyx_L0;
|
|
19691
19710
|
|
|
19692
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19711
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
|
|
19693
19712
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
19694
19713
|
*
|
|
19695
19714
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -19708,7 +19727,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19708
19727
|
return __pyx_r;
|
|
19709
19728
|
}
|
|
19710
19729
|
|
|
19711
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19730
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
19712
19731
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
19713
19732
|
*
|
|
19714
19733
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -19725,7 +19744,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19725
19744
|
int __pyx_clineno = 0;
|
|
19726
19745
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
|
|
19727
19746
|
|
|
19728
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19747
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
|
|
19729
19748
|
*
|
|
19730
19749
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
19731
19750
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -19739,7 +19758,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19739
19758
|
__pyx_t_1 = 0;
|
|
19740
19759
|
goto __pyx_L0;
|
|
19741
19760
|
|
|
19742
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19761
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
19743
19762
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
19744
19763
|
*
|
|
19745
19764
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -19758,7 +19777,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19758
19777
|
return __pyx_r;
|
|
19759
19778
|
}
|
|
19760
19779
|
|
|
19761
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19780
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
19762
19781
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
19763
19782
|
*
|
|
19764
19783
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -19772,7 +19791,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19772
19791
|
int __pyx_t_1;
|
|
19773
19792
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
|
|
19774
19793
|
|
|
19775
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19794
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
|
|
19776
19795
|
*
|
|
19777
19796
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19778
19797
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -19782,7 +19801,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19782
19801
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
19783
19802
|
if (__pyx_t_1) {
|
|
19784
19803
|
|
|
19785
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19804
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":794
|
|
19786
19805
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19787
19806
|
* if PyDataType_HASSUBARRAY(d):
|
|
19788
19807
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -19794,7 +19813,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19794
19813
|
__pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
|
|
19795
19814
|
goto __pyx_L0;
|
|
19796
19815
|
|
|
19797
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19816
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
|
|
19798
19817
|
*
|
|
19799
19818
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19800
19819
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -19803,7 +19822,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19803
19822
|
*/
|
|
19804
19823
|
}
|
|
19805
19824
|
|
|
19806
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19825
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":796
|
|
19807
19826
|
* return <tuple>d.subarray.shape
|
|
19808
19827
|
* else:
|
|
19809
19828
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -19817,7 +19836,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19817
19836
|
goto __pyx_L0;
|
|
19818
19837
|
}
|
|
19819
19838
|
|
|
19820
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19839
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
19821
19840
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
19822
19841
|
*
|
|
19823
19842
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -19832,7 +19851,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19832
19851
|
return __pyx_r;
|
|
19833
19852
|
}
|
|
19834
19853
|
|
|
19835
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19854
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
|
|
19836
19855
|
* int _import_umath() except -1
|
|
19837
19856
|
*
|
|
19838
19857
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -19842,7 +19861,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19842
19861
|
|
|
19843
19862
|
static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
|
|
19844
19863
|
|
|
19845
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19864
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
|
|
19846
19865
|
*
|
|
19847
19866
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
19848
19867
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -19851,7 +19870,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19851
19870
|
*/
|
|
19852
19871
|
Py_INCREF(__pyx_v_base);
|
|
19853
19872
|
|
|
19854
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19873
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
|
|
19855
19874
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
19856
19875
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
19857
19876
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -19860,7 +19879,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19860
19879
|
*/
|
|
19861
19880
|
(void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
|
|
19862
19881
|
|
|
19863
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19882
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
|
|
19864
19883
|
* int _import_umath() except -1
|
|
19865
19884
|
*
|
|
19866
19885
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -19871,7 +19890,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19871
19890
|
/* function exit code */
|
|
19872
19891
|
}
|
|
19873
19892
|
|
|
19874
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19893
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
|
|
19875
19894
|
* PyArray_SetBaseObject(arr, base)
|
|
19876
19895
|
*
|
|
19877
19896
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19886,7 +19905,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19886
19905
|
int __pyx_t_1;
|
|
19887
19906
|
__Pyx_RefNannySetupContext("get_array_base", 1);
|
|
19888
19907
|
|
|
19889
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19908
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
|
|
19890
19909
|
*
|
|
19891
19910
|
* cdef inline object get_array_base(ndarray arr):
|
|
19892
19911
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -19895,7 +19914,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19895
19914
|
*/
|
|
19896
19915
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
19897
19916
|
|
|
19898
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19917
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
|
|
19899
19918
|
* cdef inline object get_array_base(ndarray arr):
|
|
19900
19919
|
* base = PyArray_BASE(arr)
|
|
19901
19920
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19905,7 +19924,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19905
19924
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
19906
19925
|
if (__pyx_t_1) {
|
|
19907
19926
|
|
|
19908
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19927
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
|
|
19909
19928
|
* base = PyArray_BASE(arr)
|
|
19910
19929
|
* if base is NULL:
|
|
19911
19930
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -19916,7 +19935,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19916
19935
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
19917
19936
|
goto __pyx_L0;
|
|
19918
19937
|
|
|
19919
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19938
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
|
|
19920
19939
|
* cdef inline object get_array_base(ndarray arr):
|
|
19921
19940
|
* base = PyArray_BASE(arr)
|
|
19922
19941
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19925,7 +19944,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19925
19944
|
*/
|
|
19926
19945
|
}
|
|
19927
19946
|
|
|
19928
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19947
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":979
|
|
19929
19948
|
* if base is NULL:
|
|
19930
19949
|
* return None
|
|
19931
19950
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -19937,7 +19956,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19937
19956
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
19938
19957
|
goto __pyx_L0;
|
|
19939
19958
|
|
|
19940
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19959
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
|
|
19941
19960
|
* PyArray_SetBaseObject(arr, base)
|
|
19942
19961
|
*
|
|
19943
19962
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19952,7 +19971,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19952
19971
|
return __pyx_r;
|
|
19953
19972
|
}
|
|
19954
19973
|
|
|
19955
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19974
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19956
19975
|
* # Versions of the import_* functions which are more suitable for
|
|
19957
19976
|
* # Cython code.
|
|
19958
19977
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19976,7 +19995,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19976
19995
|
int __pyx_clineno = 0;
|
|
19977
19996
|
__Pyx_RefNannySetupContext("import_array", 1);
|
|
19978
19997
|
|
|
19979
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19998
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19980
19999
|
* # Cython code.
|
|
19981
20000
|
* cdef inline int import_array() except -1:
|
|
19982
20001
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19992,7 +20011,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19992
20011
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19993
20012
|
/*try:*/ {
|
|
19994
20013
|
|
|
19995
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20014
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
|
|
19996
20015
|
* cdef inline int import_array() except -1:
|
|
19997
20016
|
* try:
|
|
19998
20017
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -20001,7 +20020,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
20001
20020
|
*/
|
|
20002
20021
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 985, __pyx_L3_error)
|
|
20003
20022
|
|
|
20004
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20023
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
20005
20024
|
* # Cython code.
|
|
20006
20025
|
* cdef inline int import_array() except -1:
|
|
20007
20026
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20015,7 +20034,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
20015
20034
|
goto __pyx_L8_try_end;
|
|
20016
20035
|
__pyx_L3_error:;
|
|
20017
20036
|
|
|
20018
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20037
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
|
|
20019
20038
|
* try:
|
|
20020
20039
|
* __pyx_import_array()
|
|
20021
20040
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -20030,7 +20049,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
20030
20049
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
20031
20050
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
20032
20051
|
|
|
20033
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20052
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
20034
20053
|
* __pyx_import_array()
|
|
20035
20054
|
* except Exception:
|
|
20036
20055
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -20045,7 +20064,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
20045
20064
|
}
|
|
20046
20065
|
goto __pyx_L5_except_error;
|
|
20047
20066
|
|
|
20048
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20067
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
20049
20068
|
* # Cython code.
|
|
20050
20069
|
* cdef inline int import_array() except -1:
|
|
20051
20070
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20061,7 +20080,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
20061
20080
|
__pyx_L8_try_end:;
|
|
20062
20081
|
}
|
|
20063
20082
|
|
|
20064
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20083
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
20065
20084
|
* # Versions of the import_* functions which are more suitable for
|
|
20066
20085
|
* # Cython code.
|
|
20067
20086
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -20084,7 +20103,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
20084
20103
|
return __pyx_r;
|
|
20085
20104
|
}
|
|
20086
20105
|
|
|
20087
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20106
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
|
|
20088
20107
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
20089
20108
|
*
|
|
20090
20109
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -20108,7 +20127,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20108
20127
|
int __pyx_clineno = 0;
|
|
20109
20128
|
__Pyx_RefNannySetupContext("import_umath", 1);
|
|
20110
20129
|
|
|
20111
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20130
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
20112
20131
|
*
|
|
20113
20132
|
* cdef inline int import_umath() except -1:
|
|
20114
20133
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20124,7 +20143,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20124
20143
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
20125
20144
|
/*try:*/ {
|
|
20126
20145
|
|
|
20127
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20146
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
|
|
20128
20147
|
* cdef inline int import_umath() except -1:
|
|
20129
20148
|
* try:
|
|
20130
20149
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -20133,7 +20152,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20133
20152
|
*/
|
|
20134
20153
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 991, __pyx_L3_error)
|
|
20135
20154
|
|
|
20136
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20155
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
20137
20156
|
*
|
|
20138
20157
|
* cdef inline int import_umath() except -1:
|
|
20139
20158
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20147,7 +20166,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20147
20166
|
goto __pyx_L8_try_end;
|
|
20148
20167
|
__pyx_L3_error:;
|
|
20149
20168
|
|
|
20150
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20169
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
|
|
20151
20170
|
* try:
|
|
20152
20171
|
* _import_umath()
|
|
20153
20172
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -20162,7 +20181,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20162
20181
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
20163
20182
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
20164
20183
|
|
|
20165
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20184
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
20166
20185
|
* _import_umath()
|
|
20167
20186
|
* except Exception:
|
|
20168
20187
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -20177,7 +20196,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20177
20196
|
}
|
|
20178
20197
|
goto __pyx_L5_except_error;
|
|
20179
20198
|
|
|
20180
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20199
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
20181
20200
|
*
|
|
20182
20201
|
* cdef inline int import_umath() except -1:
|
|
20183
20202
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20193,7 +20212,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20193
20212
|
__pyx_L8_try_end:;
|
|
20194
20213
|
}
|
|
20195
20214
|
|
|
20196
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20215
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
|
|
20197
20216
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
20198
20217
|
*
|
|
20199
20218
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -20216,7 +20235,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20216
20235
|
return __pyx_r;
|
|
20217
20236
|
}
|
|
20218
20237
|
|
|
20219
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20238
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
20220
20239
|
* raise ImportError("numpy.core.umath failed to import")
|
|
20221
20240
|
*
|
|
20222
20241
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -20240,7 +20259,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20240
20259
|
int __pyx_clineno = 0;
|
|
20241
20260
|
__Pyx_RefNannySetupContext("import_ufunc", 1);
|
|
20242
20261
|
|
|
20243
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20262
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
20244
20263
|
*
|
|
20245
20264
|
* cdef inline int import_ufunc() except -1:
|
|
20246
20265
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20256,7 +20275,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20256
20275
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
20257
20276
|
/*try:*/ {
|
|
20258
20277
|
|
|
20259
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20278
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
|
|
20260
20279
|
* cdef inline int import_ufunc() except -1:
|
|
20261
20280
|
* try:
|
|
20262
20281
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -20265,7 +20284,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20265
20284
|
*/
|
|
20266
20285
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 997, __pyx_L3_error)
|
|
20267
20286
|
|
|
20268
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20287
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
20269
20288
|
*
|
|
20270
20289
|
* cdef inline int import_ufunc() except -1:
|
|
20271
20290
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20279,7 +20298,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20279
20298
|
goto __pyx_L8_try_end;
|
|
20280
20299
|
__pyx_L3_error:;
|
|
20281
20300
|
|
|
20282
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20301
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
|
|
20283
20302
|
* try:
|
|
20284
20303
|
* _import_umath()
|
|
20285
20304
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -20294,7 +20313,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20294
20313
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
20295
20314
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
20296
20315
|
|
|
20297
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20316
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
|
|
20298
20317
|
* _import_umath()
|
|
20299
20318
|
* except Exception:
|
|
20300
20319
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -20309,7 +20328,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20309
20328
|
}
|
|
20310
20329
|
goto __pyx_L5_except_error;
|
|
20311
20330
|
|
|
20312
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20331
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
20313
20332
|
*
|
|
20314
20333
|
* cdef inline int import_ufunc() except -1:
|
|
20315
20334
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20325,7 +20344,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20325
20344
|
__pyx_L8_try_end:;
|
|
20326
20345
|
}
|
|
20327
20346
|
|
|
20328
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20347
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
20329
20348
|
* raise ImportError("numpy.core.umath failed to import")
|
|
20330
20349
|
*
|
|
20331
20350
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -20348,7 +20367,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20348
20367
|
return __pyx_r;
|
|
20349
20368
|
}
|
|
20350
20369
|
|
|
20351
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20370
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
|
|
20352
20371
|
*
|
|
20353
20372
|
*
|
|
20354
20373
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20359,7 +20378,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20359
20378
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
20360
20379
|
int __pyx_r;
|
|
20361
20380
|
|
|
20362
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20381
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
20363
20382
|
* bool
|
|
20364
20383
|
* """
|
|
20365
20384
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -20369,7 +20388,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
20369
20388
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
20370
20389
|
goto __pyx_L0;
|
|
20371
20390
|
|
|
20372
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20391
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
|
|
20373
20392
|
*
|
|
20374
20393
|
*
|
|
20375
20394
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20382,7 +20401,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
20382
20401
|
return __pyx_r;
|
|
20383
20402
|
}
|
|
20384
20403
|
|
|
20385
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20404
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
20386
20405
|
*
|
|
20387
20406
|
*
|
|
20388
20407
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20393,7 +20412,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
20393
20412
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
20394
20413
|
int __pyx_r;
|
|
20395
20414
|
|
|
20396
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20415
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
20397
20416
|
* bool
|
|
20398
20417
|
* """
|
|
20399
20418
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -20403,7 +20422,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
20403
20422
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
20404
20423
|
goto __pyx_L0;
|
|
20405
20424
|
|
|
20406
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20425
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
20407
20426
|
*
|
|
20408
20427
|
*
|
|
20409
20428
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20416,7 +20435,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
20416
20435
|
return __pyx_r;
|
|
20417
20436
|
}
|
|
20418
20437
|
|
|
20419
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20438
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
20420
20439
|
*
|
|
20421
20440
|
*
|
|
20422
20441
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20427,7 +20446,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
20427
20446
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
20428
20447
|
npy_datetime __pyx_r;
|
|
20429
20448
|
|
|
20430
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20449
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
|
|
20431
20450
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
20432
20451
|
* """
|
|
20433
20452
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -20437,7 +20456,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
20437
20456
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
20438
20457
|
goto __pyx_L0;
|
|
20439
20458
|
|
|
20440
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20459
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
20441
20460
|
*
|
|
20442
20461
|
*
|
|
20443
20462
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20450,7 +20469,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
20450
20469
|
return __pyx_r;
|
|
20451
20470
|
}
|
|
20452
20471
|
|
|
20453
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20472
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
|
|
20454
20473
|
*
|
|
20455
20474
|
*
|
|
20456
20475
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20461,7 +20480,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
20461
20480
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
20462
20481
|
npy_timedelta __pyx_r;
|
|
20463
20482
|
|
|
20464
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20483
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
|
|
20465
20484
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
20466
20485
|
* """
|
|
20467
20486
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -20471,7 +20490,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
20471
20490
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
20472
20491
|
goto __pyx_L0;
|
|
20473
20492
|
|
|
20474
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20493
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
|
|
20475
20494
|
*
|
|
20476
20495
|
*
|
|
20477
20496
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20484,7 +20503,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
20484
20503
|
return __pyx_r;
|
|
20485
20504
|
}
|
|
20486
20505
|
|
|
20487
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20506
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
|
|
20488
20507
|
*
|
|
20489
20508
|
*
|
|
20490
20509
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20495,7 +20514,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
20495
20514
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
20496
20515
|
NPY_DATETIMEUNIT __pyx_r;
|
|
20497
20516
|
|
|
20498
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20517
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1053
|
|
20499
20518
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
20500
20519
|
* """
|
|
20501
20520
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -20503,7 +20522,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
20503
20522
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
20504
20523
|
goto __pyx_L0;
|
|
20505
20524
|
|
|
20506
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
20525
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
|
|
20507
20526
|
*
|
|
20508
20527
|
*
|
|
20509
20528
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -23349,10 +23368,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_2_get_distance_mat
|
|
|
23349
23368
|
Py_ssize_t __pyx_v_itemsize;
|
|
23350
23369
|
int __pyx_v_dtype_signed;
|
|
23351
23370
|
Py_UCS4 __pyx_v_kind;
|
|
23352
|
-
int
|
|
23353
|
-
int
|
|
23354
|
-
int
|
|
23355
|
-
int
|
|
23371
|
+
int __pyx_v___pyx_fused_dtype_uint8_is_signed;
|
|
23372
|
+
int __pyx_v___pyx_fused_dtype_uint16_is_signed;
|
|
23373
|
+
int __pyx_v___pyx_fused_dtype_uint32_is_signed;
|
|
23374
|
+
int __pyx_v___pyx_fused_dtype_uint64_is_signed;
|
|
23356
23375
|
PyObject *__pyx_v_arg = NULL;
|
|
23357
23376
|
PyObject *__pyx_v_dtype = NULL;
|
|
23358
23377
|
PyObject *__pyx_v_arg_base = NULL;
|
|
@@ -23420,10 +23439,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_2_get_distance_mat
|
|
|
23420
23439
|
__pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
|
|
23421
23440
|
__pyx_t_1 = 0;
|
|
23422
23441
|
__pyx_v_itemsize = -1L;
|
|
23423
|
-
|
|
23424
|
-
|
|
23425
|
-
|
|
23426
|
-
|
|
23442
|
+
__pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint8)-1L) > 0));
|
|
23443
|
+
__pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint16)-1L) > 0));
|
|
23444
|
+
__pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint32)-1L) > 0));
|
|
23445
|
+
__pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint64)-1L) > 0));
|
|
23427
23446
|
if (unlikely(__pyx_v_args == Py_None)) {
|
|
23428
23447
|
PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
|
|
23429
23448
|
__PYX_ERR(0, 287, __pyx_L1_error)
|
|
@@ -23565,7 +23584,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_2_get_distance_mat
|
|
|
23565
23584
|
__pyx_t_2 = __pyx_t_4;
|
|
23566
23585
|
goto __pyx_L16_bool_binop_done;
|
|
23567
23586
|
}
|
|
23568
|
-
__pyx_t_4 = (!(
|
|
23587
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
|
|
23569
23588
|
__pyx_t_2 = __pyx_t_4;
|
|
23570
23589
|
__pyx_L16_bool_binop_done:;
|
|
23571
23590
|
if (__pyx_t_2) {
|
|
@@ -23588,7 +23607,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_2_get_distance_mat
|
|
|
23588
23607
|
__pyx_t_2 = __pyx_t_4;
|
|
23589
23608
|
goto __pyx_L20_bool_binop_done;
|
|
23590
23609
|
}
|
|
23591
|
-
__pyx_t_4 = (!(
|
|
23610
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
|
|
23592
23611
|
__pyx_t_2 = __pyx_t_4;
|
|
23593
23612
|
__pyx_L20_bool_binop_done:;
|
|
23594
23613
|
if (__pyx_t_2) {
|
|
@@ -23611,7 +23630,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_2_get_distance_mat
|
|
|
23611
23630
|
__pyx_t_2 = __pyx_t_4;
|
|
23612
23631
|
goto __pyx_L24_bool_binop_done;
|
|
23613
23632
|
}
|
|
23614
|
-
__pyx_t_4 = (!(
|
|
23633
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
|
|
23615
23634
|
__pyx_t_2 = __pyx_t_4;
|
|
23616
23635
|
__pyx_L24_bool_binop_done:;
|
|
23617
23636
|
if (__pyx_t_2) {
|
|
@@ -23634,7 +23653,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_2_get_distance_mat
|
|
|
23634
23653
|
__pyx_t_2 = __pyx_t_4;
|
|
23635
23654
|
goto __pyx_L28_bool_binop_done;
|
|
23636
23655
|
}
|
|
23637
|
-
__pyx_t_4 = (!(
|
|
23656
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
|
|
23638
23657
|
__pyx_t_2 = __pyx_t_4;
|
|
23639
23658
|
__pyx_L28_bool_binop_done:;
|
|
23640
23659
|
if (__pyx_t_2) {
|
|
@@ -31594,10 +31613,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_6_progressive_alig
|
|
|
31594
31613
|
Py_ssize_t __pyx_v_itemsize;
|
|
31595
31614
|
int __pyx_v_dtype_signed;
|
|
31596
31615
|
Py_UCS4 __pyx_v_kind;
|
|
31597
|
-
int
|
|
31598
|
-
int
|
|
31599
|
-
int
|
|
31600
|
-
int
|
|
31616
|
+
int __pyx_v___pyx_fused_dtype_uint8_is_signed;
|
|
31617
|
+
int __pyx_v___pyx_fused_dtype_uint16_is_signed;
|
|
31618
|
+
int __pyx_v___pyx_fused_dtype_uint32_is_signed;
|
|
31619
|
+
int __pyx_v___pyx_fused_dtype_uint64_is_signed;
|
|
31601
31620
|
PyObject *__pyx_v_arg = NULL;
|
|
31602
31621
|
PyObject *__pyx_v_dtype = NULL;
|
|
31603
31622
|
PyObject *__pyx_v_arg_base = NULL;
|
|
@@ -31665,10 +31684,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_6_progressive_alig
|
|
|
31665
31684
|
__pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
|
|
31666
31685
|
__pyx_t_1 = 0;
|
|
31667
31686
|
__pyx_v_itemsize = -1L;
|
|
31668
|
-
|
|
31669
|
-
|
|
31670
|
-
|
|
31671
|
-
|
|
31687
|
+
__pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint8)-1L) > 0));
|
|
31688
|
+
__pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint16)-1L) > 0));
|
|
31689
|
+
__pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint32)-1L) > 0));
|
|
31690
|
+
__pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint64)-1L) > 0));
|
|
31672
31691
|
if (unlikely(__pyx_v_args == Py_None)) {
|
|
31673
31692
|
PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
|
|
31674
31693
|
__PYX_ERR(0, 459, __pyx_L1_error)
|
|
@@ -31810,7 +31829,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_6_progressive_alig
|
|
|
31810
31829
|
__pyx_t_2 = __pyx_t_4;
|
|
31811
31830
|
goto __pyx_L16_bool_binop_done;
|
|
31812
31831
|
}
|
|
31813
|
-
__pyx_t_4 = (!(
|
|
31832
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
|
|
31814
31833
|
__pyx_t_2 = __pyx_t_4;
|
|
31815
31834
|
__pyx_L16_bool_binop_done:;
|
|
31816
31835
|
if (__pyx_t_2) {
|
|
@@ -31833,7 +31852,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_6_progressive_alig
|
|
|
31833
31852
|
__pyx_t_2 = __pyx_t_4;
|
|
31834
31853
|
goto __pyx_L20_bool_binop_done;
|
|
31835
31854
|
}
|
|
31836
|
-
__pyx_t_4 = (!(
|
|
31855
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
|
|
31837
31856
|
__pyx_t_2 = __pyx_t_4;
|
|
31838
31857
|
__pyx_L20_bool_binop_done:;
|
|
31839
31858
|
if (__pyx_t_2) {
|
|
@@ -31856,7 +31875,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_6_progressive_alig
|
|
|
31856
31875
|
__pyx_t_2 = __pyx_t_4;
|
|
31857
31876
|
goto __pyx_L24_bool_binop_done;
|
|
31858
31877
|
}
|
|
31859
|
-
__pyx_t_4 = (!(
|
|
31878
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
|
|
31860
31879
|
__pyx_t_2 = __pyx_t_4;
|
|
31861
31880
|
__pyx_L24_bool_binop_done:;
|
|
31862
31881
|
if (__pyx_t_2) {
|
|
@@ -31879,7 +31898,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_6_progressive_alig
|
|
|
31879
31898
|
__pyx_t_2 = __pyx_t_4;
|
|
31880
31899
|
goto __pyx_L28_bool_binop_done;
|
|
31881
31900
|
}
|
|
31882
|
-
__pyx_t_4 = (!(
|
|
31901
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
|
|
31883
31902
|
__pyx_t_2 = __pyx_t_4;
|
|
31884
31903
|
__pyx_L28_bool_binop_done:;
|
|
31885
31904
|
if (__pyx_t_2) {
|
|
@@ -37615,10 +37634,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_8_replace_gaps(CYT
|
|
|
37615
37634
|
Py_ssize_t __pyx_v_itemsize;
|
|
37616
37635
|
int __pyx_v_dtype_signed;
|
|
37617
37636
|
Py_UCS4 __pyx_v_kind;
|
|
37618
|
-
int
|
|
37619
|
-
int
|
|
37620
|
-
int
|
|
37621
|
-
int
|
|
37637
|
+
int __pyx_v___pyx_fused_dtype_uint8_is_signed;
|
|
37638
|
+
int __pyx_v___pyx_fused_dtype_uint16_is_signed;
|
|
37639
|
+
int __pyx_v___pyx_fused_dtype_uint32_is_signed;
|
|
37640
|
+
int __pyx_v___pyx_fused_dtype_uint64_is_signed;
|
|
37622
37641
|
PyObject *__pyx_v_arg = NULL;
|
|
37623
37642
|
PyObject *__pyx_v_dtype = NULL;
|
|
37624
37643
|
PyObject *__pyx_v_arg_base = NULL;
|
|
@@ -37686,10 +37705,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_8_replace_gaps(CYT
|
|
|
37686
37705
|
__pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
|
|
37687
37706
|
__pyx_t_1 = 0;
|
|
37688
37707
|
__pyx_v_itemsize = -1L;
|
|
37689
|
-
|
|
37690
|
-
|
|
37691
|
-
|
|
37692
|
-
|
|
37708
|
+
__pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint8)-1L) > 0));
|
|
37709
|
+
__pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint16)-1L) > 0));
|
|
37710
|
+
__pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint32)-1L) > 0));
|
|
37711
|
+
__pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint64)-1L) > 0));
|
|
37693
37712
|
if (unlikely(__pyx_v_args == Py_None)) {
|
|
37694
37713
|
PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
|
|
37695
37714
|
__PYX_ERR(0, 573, __pyx_L1_error)
|
|
@@ -37831,7 +37850,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_8_replace_gaps(CYT
|
|
|
37831
37850
|
__pyx_t_2 = __pyx_t_4;
|
|
37832
37851
|
goto __pyx_L16_bool_binop_done;
|
|
37833
37852
|
}
|
|
37834
|
-
__pyx_t_4 = (!(
|
|
37853
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
|
|
37835
37854
|
__pyx_t_2 = __pyx_t_4;
|
|
37836
37855
|
__pyx_L16_bool_binop_done:;
|
|
37837
37856
|
if (__pyx_t_2) {
|
|
@@ -37854,7 +37873,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_8_replace_gaps(CYT
|
|
|
37854
37873
|
__pyx_t_2 = __pyx_t_4;
|
|
37855
37874
|
goto __pyx_L20_bool_binop_done;
|
|
37856
37875
|
}
|
|
37857
|
-
__pyx_t_4 = (!(
|
|
37876
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
|
|
37858
37877
|
__pyx_t_2 = __pyx_t_4;
|
|
37859
37878
|
__pyx_L20_bool_binop_done:;
|
|
37860
37879
|
if (__pyx_t_2) {
|
|
@@ -37877,7 +37896,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_8_replace_gaps(CYT
|
|
|
37877
37896
|
__pyx_t_2 = __pyx_t_4;
|
|
37878
37897
|
goto __pyx_L24_bool_binop_done;
|
|
37879
37898
|
}
|
|
37880
|
-
__pyx_t_4 = (!(
|
|
37899
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
|
|
37881
37900
|
__pyx_t_2 = __pyx_t_4;
|
|
37882
37901
|
__pyx_L24_bool_binop_done:;
|
|
37883
37902
|
if (__pyx_t_2) {
|
|
@@ -37900,7 +37919,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_8_replace_gaps(CYT
|
|
|
37900
37919
|
__pyx_t_2 = __pyx_t_4;
|
|
37901
37920
|
goto __pyx_L28_bool_binop_done;
|
|
37902
37921
|
}
|
|
37903
|
-
__pyx_t_4 = (!(
|
|
37922
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
|
|
37904
37923
|
__pyx_t_2 = __pyx_t_4;
|
|
37905
37924
|
__pyx_L28_bool_binop_done:;
|
|
37906
37925
|
if (__pyx_t_2) {
|
|
@@ -41383,7 +41402,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
41383
41402
|
__Pyx_GOTREF(__pyx_tuple__8);
|
|
41384
41403
|
__Pyx_GIVEREF(__pyx_tuple__8);
|
|
41385
41404
|
|
|
41386
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
41405
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
41387
41406
|
* __pyx_import_array()
|
|
41388
41407
|
* except Exception:
|
|
41389
41408
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -41394,7 +41413,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
41394
41413
|
__Pyx_GOTREF(__pyx_tuple__9);
|
|
41395
41414
|
__Pyx_GIVEREF(__pyx_tuple__9);
|
|
41396
41415
|
|
|
41397
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
41416
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
41398
41417
|
* _import_umath()
|
|
41399
41418
|
* except Exception:
|
|
41400
41419
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -42057,33 +42076,33 @@ static int __Pyx_modinit_type_import_code(void) {
|
|
|
42057
42076
|
/*--- Type import code ---*/
|
|
42058
42077
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
42059
42078
|
__Pyx_GOTREF(__pyx_t_1);
|
|
42060
|
-
__pyx_ptype_7cpython_4type_type =
|
|
42079
|
+
__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
|
42061
42080
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
42062
|
-
sizeof(PyTypeObject),
|
|
42081
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
42063
42082
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
42064
|
-
sizeof(PyTypeObject),
|
|
42083
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
42065
42084
|
#else
|
|
42066
|
-
sizeof(PyHeapTypeObject),
|
|
42085
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
|
|
42067
42086
|
#endif
|
|
42068
|
-
|
|
42087
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
42069
42088
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
42070
42089
|
__pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 203, __pyx_L1_error)
|
|
42071
42090
|
__Pyx_GOTREF(__pyx_t_1);
|
|
42072
|
-
__pyx_ptype_5numpy_dtype =
|
|
42073
|
-
__pyx_ptype_5numpy_flatiter =
|
|
42074
|
-
__pyx_ptype_5numpy_broadcast =
|
|
42075
|
-
__pyx_ptype_5numpy_ndarray =
|
|
42076
|
-
__pyx_ptype_5numpy_generic =
|
|
42077
|
-
__pyx_ptype_5numpy_number =
|
|
42078
|
-
__pyx_ptype_5numpy_integer =
|
|
42079
|
-
__pyx_ptype_5numpy_signedinteger =
|
|
42080
|
-
__pyx_ptype_5numpy_unsignedinteger =
|
|
42081
|
-
__pyx_ptype_5numpy_inexact =
|
|
42082
|
-
__pyx_ptype_5numpy_floating =
|
|
42083
|
-
__pyx_ptype_5numpy_complexfloating =
|
|
42084
|
-
__pyx_ptype_5numpy_flexible =
|
|
42085
|
-
__pyx_ptype_5numpy_character =
|
|
42086
|
-
__pyx_ptype_5numpy_ufunc =
|
|
42091
|
+
__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, 203, __pyx_L1_error)
|
|
42092
|
+
__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, 226, __pyx_L1_error)
|
|
42093
|
+
__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, 230, __pyx_L1_error)
|
|
42094
|
+
__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, 239, __pyx_L1_error)
|
|
42095
|
+
__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, 813, __pyx_L1_error)
|
|
42096
|
+
__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, 815, __pyx_L1_error)
|
|
42097
|
+
__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, 817, __pyx_L1_error)
|
|
42098
|
+
__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, 819, __pyx_L1_error)
|
|
42099
|
+
__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, 821, __pyx_L1_error)
|
|
42100
|
+
__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, 823, __pyx_L1_error)
|
|
42101
|
+
__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, 825, __pyx_L1_error)
|
|
42102
|
+
__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, 827, __pyx_L1_error)
|
|
42103
|
+
__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, 829, __pyx_L1_error)
|
|
42104
|
+
__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, 831, __pyx_L1_error)
|
|
42105
|
+
__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, 869, __pyx_L1_error)
|
|
42087
42106
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
42088
42107
|
__Pyx_RefNannyFinishContext();
|
|
42089
42108
|
return 0;
|
|
@@ -43820,11 +43839,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
|
|
|
43820
43839
|
{
|
|
43821
43840
|
int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
|
|
43822
43841
|
if (unlikely(eq != 0)) {
|
|
43823
|
-
if (unlikely(eq < 0)) return NULL;
|
|
43842
|
+
if (unlikely(eq < 0)) return NULL;
|
|
43824
43843
|
return kwvalues[i];
|
|
43825
43844
|
}
|
|
43826
43845
|
}
|
|
43827
|
-
return NULL;
|
|
43846
|
+
return NULL;
|
|
43828
43847
|
}
|
|
43829
43848
|
#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
|
|
43830
43849
|
CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
|
|
@@ -43937,7 +43956,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
43937
43956
|
if (*name) {
|
|
43938
43957
|
values[name-argnames] = value;
|
|
43939
43958
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
43940
|
-
Py_INCREF(value);
|
|
43959
|
+
Py_INCREF(value);
|
|
43941
43960
|
Py_DECREF(key);
|
|
43942
43961
|
#endif
|
|
43943
43962
|
key = NULL;
|
|
@@ -43956,7 +43975,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
43956
43975
|
&& _PyString_Eq(**name, key)) {
|
|
43957
43976
|
values[name-argnames] = value;
|
|
43958
43977
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
43959
|
-
value = NULL;
|
|
43978
|
+
value = NULL;
|
|
43960
43979
|
#endif
|
|
43961
43980
|
break;
|
|
43962
43981
|
}
|
|
@@ -43988,7 +44007,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
43988
44007
|
if (cmp == 0) {
|
|
43989
44008
|
values[name-argnames] = value;
|
|
43990
44009
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
43991
|
-
value = NULL;
|
|
44010
|
+
value = NULL;
|
|
43992
44011
|
#endif
|
|
43993
44012
|
break;
|
|
43994
44013
|
}
|
|
@@ -46027,9 +46046,10 @@ static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, long intval,
|
|
|
46027
46046
|
|
|
46028
46047
|
/* IterFinish */
|
|
46029
46048
|
static CYTHON_INLINE int __Pyx_IterFinish(void) {
|
|
46049
|
+
PyObject* exc_type;
|
|
46030
46050
|
__Pyx_PyThreadState_declare
|
|
46031
46051
|
__Pyx_PyThreadState_assign
|
|
46032
|
-
|
|
46052
|
+
exc_type = __Pyx_PyErr_CurrentExceptionType();
|
|
46033
46053
|
if (unlikely(exc_type)) {
|
|
46034
46054
|
if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
|
|
46035
46055
|
return -1;
|
|
@@ -46476,9 +46496,10 @@ static CYTHON_INLINE int __Pyx_dict_iter_next(
|
|
|
46476
46496
|
|
|
46477
46497
|
/* UnpackUnboundCMethod */
|
|
46478
46498
|
static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *args, PyObject *kwargs) {
|
|
46499
|
+
PyObject *result;
|
|
46479
46500
|
PyObject *selfless_args = PyTuple_GetSlice(args, 1, PyTuple_Size(args));
|
|
46480
46501
|
if (unlikely(!selfless_args)) return NULL;
|
|
46481
|
-
|
|
46502
|
+
result = PyObject_Call(method, selfless_args, kwargs);
|
|
46482
46503
|
Py_DECREF(selfless_args);
|
|
46483
46504
|
return result;
|
|
46484
46505
|
}
|
|
@@ -47201,10 +47222,10 @@ __PYX_GOOD:
|
|
|
47201
47222
|
#endif
|
|
47202
47223
|
|
|
47203
47224
|
/* TypeImport */
|
|
47204
|
-
#ifndef
|
|
47205
|
-
#define
|
|
47206
|
-
static PyTypeObject *
|
|
47207
|
-
size_t size, size_t alignment, enum
|
|
47225
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_0_10
|
|
47226
|
+
#define __PYX_HAVE_RT_ImportType_3_0_10
|
|
47227
|
+
static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
|
|
47228
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
|
|
47208
47229
|
{
|
|
47209
47230
|
PyObject *result = 0;
|
|
47210
47231
|
char warning[200];
|
|
@@ -47258,7 +47279,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
47258
47279
|
module_name, class_name, size, basicsize+itemsize);
|
|
47259
47280
|
goto bad;
|
|
47260
47281
|
}
|
|
47261
|
-
if (check_size ==
|
|
47282
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
|
|
47262
47283
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
47263
47284
|
PyErr_Format(PyExc_ValueError,
|
|
47264
47285
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -47266,7 +47287,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
47266
47287
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
47267
47288
|
goto bad;
|
|
47268
47289
|
}
|
|
47269
|
-
else if (check_size ==
|
|
47290
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
|
|
47270
47291
|
PyOS_snprintf(warning, sizeof(warning),
|
|
47271
47292
|
"%s.%s size changed, may indicate binary incompatibility. "
|
|
47272
47293
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -48266,7 +48287,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
|
|
|
48266
48287
|
default:
|
|
48267
48288
|
return NULL;
|
|
48268
48289
|
}
|
|
48269
|
-
return ((
|
|
48290
|
+
return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
|
|
48270
48291
|
}
|
|
48271
48292
|
static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
|
|
48272
48293
|
{
|
|
@@ -49370,7 +49391,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
|
|
|
49370
49391
|
#else
|
|
49371
49392
|
py_code = PyCode_NewEmpty(filename, funcname, py_line);
|
|
49372
49393
|
#endif
|
|
49373
|
-
Py_XDECREF(py_funcname);
|
|
49394
|
+
Py_XDECREF(py_funcname);
|
|
49374
49395
|
return py_code;
|
|
49375
49396
|
bad:
|
|
49376
49397
|
Py_XDECREF(py_funcname);
|