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
|
|
|
@@ -1288,24 +1323,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
|
|
|
1288
1323
|
#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
|
|
1289
1324
|
#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
|
|
1290
1325
|
#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
|
|
1291
|
-
#if CYTHON_COMPILING_IN_LIMITED_API
|
|
1292
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
|
|
1293
|
-
{
|
|
1294
|
-
const wchar_t *u_end = u;
|
|
1295
|
-
while (*u_end++) ;
|
|
1296
|
-
return (size_t)(u_end - u - 1);
|
|
1297
|
-
}
|
|
1298
|
-
#else
|
|
1299
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
|
|
1300
|
-
{
|
|
1301
|
-
const Py_UNICODE *u_end = u;
|
|
1302
|
-
while (*u_end++) ;
|
|
1303
|
-
return (size_t)(u_end - u - 1);
|
|
1304
|
-
}
|
|
1305
|
-
#endif
|
|
1306
1326
|
#define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
|
|
1307
|
-
#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
|
|
1308
|
-
#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
|
|
1309
1327
|
#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
|
|
1310
1328
|
#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
|
|
1311
1329
|
#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
|
|
@@ -1355,7 +1373,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
|
|
|
1355
1373
|
#endif
|
|
1356
1374
|
typedef Py_ssize_t __Pyx_compact_pylong;
|
|
1357
1375
|
typedef size_t __Pyx_compact_upylong;
|
|
1358
|
-
#else
|
|
1376
|
+
#else
|
|
1359
1377
|
#define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
|
|
1360
1378
|
#define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
|
|
1361
1379
|
#define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
|
|
@@ -1645,7 +1663,7 @@ typedef struct {
|
|
|
1645
1663
|
|
|
1646
1664
|
/* #### Code section: numeric_typedefs ### */
|
|
1647
1665
|
|
|
1648
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1666
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
|
|
1649
1667
|
* # in Cython to enable them only on the right systems.
|
|
1650
1668
|
*
|
|
1651
1669
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
|
@@ -1654,7 +1672,7 @@ typedef struct {
|
|
|
1654
1672
|
*/
|
|
1655
1673
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1656
1674
|
|
|
1657
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1675
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
|
|
1658
1676
|
*
|
|
1659
1677
|
* ctypedef npy_int8 int8_t
|
|
1660
1678
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
|
@@ -1663,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
|
1663
1681
|
*/
|
|
1664
1682
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1665
1683
|
|
|
1666
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1684
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
|
|
1667
1685
|
* ctypedef npy_int8 int8_t
|
|
1668
1686
|
* ctypedef npy_int16 int16_t
|
|
1669
1687
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
|
@@ -1672,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
|
1672
1690
|
*/
|
|
1673
1691
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1674
1692
|
|
|
1675
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1693
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":735
|
|
1676
1694
|
* ctypedef npy_int16 int16_t
|
|
1677
1695
|
* ctypedef npy_int32 int32_t
|
|
1678
1696
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
|
@@ -1681,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
|
1681
1699
|
*/
|
|
1682
1700
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1683
1701
|
|
|
1684
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1702
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
|
|
1685
1703
|
* #ctypedef npy_int128 int128_t
|
|
1686
1704
|
*
|
|
1687
1705
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
|
@@ -1690,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
|
1690
1708
|
*/
|
|
1691
1709
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1692
1710
|
|
|
1693
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1711
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
|
|
1694
1712
|
*
|
|
1695
1713
|
* ctypedef npy_uint8 uint8_t
|
|
1696
1714
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
|
@@ -1699,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
|
1699
1717
|
*/
|
|
1700
1718
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1701
1719
|
|
|
1702
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1720
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
|
|
1703
1721
|
* ctypedef npy_uint8 uint8_t
|
|
1704
1722
|
* ctypedef npy_uint16 uint16_t
|
|
1705
1723
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
|
@@ -1708,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
|
1708
1726
|
*/
|
|
1709
1727
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1710
1728
|
|
|
1711
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1729
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":742
|
|
1712
1730
|
* ctypedef npy_uint16 uint16_t
|
|
1713
1731
|
* ctypedef npy_uint32 uint32_t
|
|
1714
1732
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
|
@@ -1717,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
|
1717
1735
|
*/
|
|
1718
1736
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1719
1737
|
|
|
1720
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1738
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
|
|
1721
1739
|
* #ctypedef npy_uint128 uint128_t
|
|
1722
1740
|
*
|
|
1723
1741
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
|
@@ -1726,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
|
1726
1744
|
*/
|
|
1727
1745
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1728
1746
|
|
|
1729
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1747
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":747
|
|
1730
1748
|
*
|
|
1731
1749
|
* ctypedef npy_float32 float32_t
|
|
1732
1750
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
|
@@ -1735,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
|
1735
1753
|
*/
|
|
1736
1754
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1737
1755
|
|
|
1738
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1756
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
|
|
1739
1757
|
* # The int types are mapped a bit surprising --
|
|
1740
1758
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1741
1759
|
* ctypedef npy_long int_t # <<<<<<<<<<<<<<
|
|
@@ -1744,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
|
1744
1762
|
*/
|
|
1745
1763
|
typedef npy_long __pyx_t_5numpy_int_t;
|
|
1746
1764
|
|
|
1747
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1765
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
|
|
1748
1766
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1749
1767
|
* ctypedef npy_long int_t
|
|
1750
1768
|
* ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
|
|
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
|
|
|
1753
1771
|
*/
|
|
1754
1772
|
typedef npy_longlong __pyx_t_5numpy_long_t;
|
|
1755
1773
|
|
|
1756
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1774
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
|
|
1757
1775
|
* ctypedef npy_long int_t
|
|
1758
1776
|
* ctypedef npy_longlong long_t
|
|
1759
1777
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
|
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
|
|
|
1762
1780
|
*/
|
|
1763
1781
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1764
1782
|
|
|
1765
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1783
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
|
|
1766
1784
|
* ctypedef npy_longlong longlong_t
|
|
1767
1785
|
*
|
|
1768
1786
|
* ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
|
|
@@ -1771,7 +1789,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
|
1771
1789
|
*/
|
|
1772
1790
|
typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
1773
1791
|
|
|
1774
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1792
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
|
|
1775
1793
|
*
|
|
1776
1794
|
* ctypedef npy_ulong uint_t
|
|
1777
1795
|
* ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
|
|
@@ -1780,7 +1798,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
|
1780
1798
|
*/
|
|
1781
1799
|
typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
|
|
1782
1800
|
|
|
1783
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1801
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":762
|
|
1784
1802
|
* ctypedef npy_ulong uint_t
|
|
1785
1803
|
* ctypedef npy_ulonglong ulong_t
|
|
1786
1804
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
|
@@ -1789,7 +1807,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
|
|
|
1789
1807
|
*/
|
|
1790
1808
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1791
1809
|
|
|
1792
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1810
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
|
|
1793
1811
|
* ctypedef npy_ulonglong ulonglong_t
|
|
1794
1812
|
*
|
|
1795
1813
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
|
@@ -1798,7 +1816,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
|
1798
1816
|
*/
|
|
1799
1817
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1800
1818
|
|
|
1801
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1819
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
|
|
1802
1820
|
*
|
|
1803
1821
|
* ctypedef npy_intp intp_t
|
|
1804
1822
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
|
@@ -1807,7 +1825,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
|
1807
1825
|
*/
|
|
1808
1826
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1809
1827
|
|
|
1810
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1828
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
|
|
1811
1829
|
* ctypedef npy_uintp uintp_t
|
|
1812
1830
|
*
|
|
1813
1831
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
|
@@ -1816,7 +1834,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
|
1816
1834
|
*/
|
|
1817
1835
|
typedef npy_double __pyx_t_5numpy_float_t;
|
|
1818
1836
|
|
|
1819
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1837
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
|
|
1820
1838
|
*
|
|
1821
1839
|
* ctypedef npy_double float_t
|
|
1822
1840
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
|
@@ -1825,7 +1843,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
|
1825
1843
|
*/
|
|
1826
1844
|
typedef npy_double __pyx_t_5numpy_double_t;
|
|
1827
1845
|
|
|
1828
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1846
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
|
|
1829
1847
|
* ctypedef npy_double float_t
|
|
1830
1848
|
* ctypedef npy_double double_t
|
|
1831
1849
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1884,7 +1902,7 @@ struct __pyx_MemviewEnum_obj;
|
|
|
1884
1902
|
struct __pyx_memoryview_obj;
|
|
1885
1903
|
struct __pyx_memoryviewslice_obj;
|
|
1886
1904
|
|
|
1887
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1905
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1888
1906
|
* ctypedef npy_longdouble longdouble_t
|
|
1889
1907
|
*
|
|
1890
1908
|
* ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
|
|
@@ -1893,7 +1911,7 @@ struct __pyx_memoryviewslice_obj;
|
|
|
1893
1911
|
*/
|
|
1894
1912
|
typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
1895
1913
|
|
|
1896
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1914
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
|
|
1897
1915
|
*
|
|
1898
1916
|
* ctypedef npy_cfloat cfloat_t
|
|
1899
1917
|
* ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1902,7 +1920,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
|
1902
1920
|
*/
|
|
1903
1921
|
typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
1904
1922
|
|
|
1905
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1923
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
|
|
1906
1924
|
* ctypedef npy_cfloat cfloat_t
|
|
1907
1925
|
* ctypedef npy_cdouble cdouble_t
|
|
1908
1926
|
* ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1911,7 +1929,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
|
1911
1929
|
*/
|
|
1912
1930
|
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
|
|
1913
1931
|
|
|
1914
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1932
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":775
|
|
1915
1933
|
* ctypedef npy_clongdouble clongdouble_t
|
|
1916
1934
|
*
|
|
1917
1935
|
* ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
|
|
@@ -2217,8 +2235,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2217
2235
|
#define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
|
|
2218
2236
|
#define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
|
|
2219
2237
|
#else
|
|
2220
|
-
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2221
|
-
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2238
|
+
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2239
|
+
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2222
2240
|
#endif
|
|
2223
2241
|
#define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
|
|
2224
2242
|
#define __Pyx_KwValues_VARARGS(args, nargs) NULL
|
|
@@ -2234,8 +2252,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2234
2252
|
#else
|
|
2235
2253
|
#define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
|
|
2236
2254
|
#endif
|
|
2237
|
-
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg
|
|
2238
|
-
|
|
2255
|
+
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
|
|
2256
|
+
to have the same reference counting */
|
|
2257
|
+
#define __Pyx_Arg_XDECREF_FASTCALL(arg)
|
|
2239
2258
|
#else
|
|
2240
2259
|
#define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
|
|
2241
2260
|
#define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
|
|
@@ -2698,22 +2717,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
|
|
|
2698
2717
|
#endif
|
|
2699
2718
|
|
|
2700
2719
|
/* TypeImport.proto */
|
|
2701
|
-
#ifndef
|
|
2702
|
-
#define
|
|
2720
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2721
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2703
2722
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
2704
2723
|
#include <stdalign.h>
|
|
2705
2724
|
#endif
|
|
2706
2725
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
2707
|
-
#define
|
|
2726
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
|
|
2708
2727
|
#else
|
|
2709
|
-
#define
|
|
2728
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
|
|
2710
2729
|
#endif
|
|
2711
|
-
enum
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2730
|
+
enum __Pyx_ImportType_CheckSize_3_0_10 {
|
|
2731
|
+
__Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
|
|
2732
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
|
|
2733
|
+
__Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
|
|
2715
2734
|
};
|
|
2716
|
-
static PyTypeObject *
|
|
2735
|
+
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);
|
|
2717
2736
|
#endif
|
|
2718
2737
|
|
|
2719
2738
|
/* FetchSharedCythonModule.proto */
|
|
@@ -2806,7 +2825,7 @@ typedef struct {
|
|
|
2806
2825
|
#endif
|
|
2807
2826
|
void *defaults;
|
|
2808
2827
|
int defaults_pyobjects;
|
|
2809
|
-
size_t defaults_size;
|
|
2828
|
+
size_t defaults_size;
|
|
2810
2829
|
int flags;
|
|
2811
2830
|
PyObject *defaults_tuple;
|
|
2812
2831
|
PyObject *defaults_kwdict;
|
|
@@ -18287,7 +18306,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18287
18306
|
return __pyx_r;
|
|
18288
18307
|
}
|
|
18289
18308
|
|
|
18290
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18309
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
|
|
18291
18310
|
*
|
|
18292
18311
|
* @property
|
|
18293
18312
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18298,7 +18317,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18298
18317
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
18299
18318
|
PyObject *__pyx_r;
|
|
18300
18319
|
|
|
18301
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18320
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":249
|
|
18302
18321
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
18303
18322
|
* """
|
|
18304
18323
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -18308,7 +18327,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18308
18327
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
18309
18328
|
goto __pyx_L0;
|
|
18310
18329
|
|
|
18311
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18330
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
|
|
18312
18331
|
*
|
|
18313
18332
|
* @property
|
|
18314
18333
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18321,7 +18340,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18321
18340
|
return __pyx_r;
|
|
18322
18341
|
}
|
|
18323
18342
|
|
|
18324
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18343
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
|
|
18325
18344
|
*
|
|
18326
18345
|
* @property
|
|
18327
18346
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18335,7 +18354,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18335
18354
|
PyArray_Descr *__pyx_t_1;
|
|
18336
18355
|
__Pyx_RefNannySetupContext("descr", 1);
|
|
18337
18356
|
|
|
18338
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18357
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":255
|
|
18339
18358
|
* """Returns an owned reference to the dtype of the array.
|
|
18340
18359
|
* """
|
|
18341
18360
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -18348,7 +18367,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18348
18367
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
18349
18368
|
goto __pyx_L0;
|
|
18350
18369
|
|
|
18351
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18370
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
|
|
18352
18371
|
*
|
|
18353
18372
|
* @property
|
|
18354
18373
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18363,7 +18382,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18363
18382
|
return __pyx_r;
|
|
18364
18383
|
}
|
|
18365
18384
|
|
|
18366
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18385
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
|
|
18367
18386
|
*
|
|
18368
18387
|
* @property
|
|
18369
18388
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18374,7 +18393,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18374
18393
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
18375
18394
|
int __pyx_r;
|
|
18376
18395
|
|
|
18377
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18396
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":261
|
|
18378
18397
|
* """Returns the number of dimensions in the array.
|
|
18379
18398
|
* """
|
|
18380
18399
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -18384,7 +18403,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18384
18403
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
18385
18404
|
goto __pyx_L0;
|
|
18386
18405
|
|
|
18387
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18406
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
|
|
18388
18407
|
*
|
|
18389
18408
|
* @property
|
|
18390
18409
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18397,7 +18416,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18397
18416
|
return __pyx_r;
|
|
18398
18417
|
}
|
|
18399
18418
|
|
|
18400
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18419
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
|
|
18401
18420
|
*
|
|
18402
18421
|
* @property
|
|
18403
18422
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18408,7 +18427,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18408
18427
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
18409
18428
|
npy_intp *__pyx_r;
|
|
18410
18429
|
|
|
18411
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18430
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":269
|
|
18412
18431
|
* Can return NULL for 0-dimensional arrays.
|
|
18413
18432
|
* """
|
|
18414
18433
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -18418,7 +18437,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18418
18437
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
18419
18438
|
goto __pyx_L0;
|
|
18420
18439
|
|
|
18421
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18440
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
|
|
18422
18441
|
*
|
|
18423
18442
|
* @property
|
|
18424
18443
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18431,7 +18450,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18431
18450
|
return __pyx_r;
|
|
18432
18451
|
}
|
|
18433
18452
|
|
|
18434
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18453
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
|
|
18435
18454
|
*
|
|
18436
18455
|
* @property
|
|
18437
18456
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18442,7 +18461,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18442
18461
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
18443
18462
|
npy_intp *__pyx_r;
|
|
18444
18463
|
|
|
18445
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18464
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":276
|
|
18446
18465
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
18447
18466
|
* """
|
|
18448
18467
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -18452,7 +18471,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18452
18471
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
18453
18472
|
goto __pyx_L0;
|
|
18454
18473
|
|
|
18455
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18474
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
|
|
18456
18475
|
*
|
|
18457
18476
|
* @property
|
|
18458
18477
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18465,7 +18484,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18465
18484
|
return __pyx_r;
|
|
18466
18485
|
}
|
|
18467
18486
|
|
|
18468
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18487
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
|
|
18469
18488
|
*
|
|
18470
18489
|
* @property
|
|
18471
18490
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18476,7 +18495,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18476
18495
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
18477
18496
|
npy_intp __pyx_r;
|
|
18478
18497
|
|
|
18479
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18498
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":282
|
|
18480
18499
|
* """Returns the total size (in number of elements) of the array.
|
|
18481
18500
|
* """
|
|
18482
18501
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -18486,7 +18505,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18486
18505
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
18487
18506
|
goto __pyx_L0;
|
|
18488
18507
|
|
|
18489
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18508
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
|
|
18490
18509
|
*
|
|
18491
18510
|
* @property
|
|
18492
18511
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18499,7 +18518,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18499
18518
|
return __pyx_r;
|
|
18500
18519
|
}
|
|
18501
18520
|
|
|
18502
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18521
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
18503
18522
|
*
|
|
18504
18523
|
* @property
|
|
18505
18524
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18510,7 +18529,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18510
18529
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
18511
18530
|
char *__pyx_r;
|
|
18512
18531
|
|
|
18513
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18532
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":291
|
|
18514
18533
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
18515
18534
|
* """
|
|
18516
18535
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -18520,7 +18539,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18520
18539
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
18521
18540
|
goto __pyx_L0;
|
|
18522
18541
|
|
|
18523
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18542
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
18524
18543
|
*
|
|
18525
18544
|
* @property
|
|
18526
18545
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18533,7 +18552,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18533
18552
|
return __pyx_r;
|
|
18534
18553
|
}
|
|
18535
18554
|
|
|
18536
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18555
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
18537
18556
|
* ctypedef npy_cdouble complex_t
|
|
18538
18557
|
*
|
|
18539
18558
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18550,7 +18569,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18550
18569
|
int __pyx_clineno = 0;
|
|
18551
18570
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
|
|
18552
18571
|
|
|
18553
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18572
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":778
|
|
18554
18573
|
*
|
|
18555
18574
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
18556
18575
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -18564,7 +18583,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18564
18583
|
__pyx_t_1 = 0;
|
|
18565
18584
|
goto __pyx_L0;
|
|
18566
18585
|
|
|
18567
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18586
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
18568
18587
|
* ctypedef npy_cdouble complex_t
|
|
18569
18588
|
*
|
|
18570
18589
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18583,7 +18602,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18583
18602
|
return __pyx_r;
|
|
18584
18603
|
}
|
|
18585
18604
|
|
|
18586
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18605
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
18587
18606
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18588
18607
|
*
|
|
18589
18608
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18600,7 +18619,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18600
18619
|
int __pyx_clineno = 0;
|
|
18601
18620
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
|
|
18602
18621
|
|
|
18603
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18622
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":781
|
|
18604
18623
|
*
|
|
18605
18624
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
18606
18625
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -18614,7 +18633,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18614
18633
|
__pyx_t_1 = 0;
|
|
18615
18634
|
goto __pyx_L0;
|
|
18616
18635
|
|
|
18617
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18636
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
18618
18637
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18619
18638
|
*
|
|
18620
18639
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18633,7 +18652,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18633
18652
|
return __pyx_r;
|
|
18634
18653
|
}
|
|
18635
18654
|
|
|
18636
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18655
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
|
|
18637
18656
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18638
18657
|
*
|
|
18639
18658
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18650,7 +18669,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18650
18669
|
int __pyx_clineno = 0;
|
|
18651
18670
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
|
|
18652
18671
|
|
|
18653
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18672
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":784
|
|
18654
18673
|
*
|
|
18655
18674
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
18656
18675
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -18664,7 +18683,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18664
18683
|
__pyx_t_1 = 0;
|
|
18665
18684
|
goto __pyx_L0;
|
|
18666
18685
|
|
|
18667
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18686
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
|
|
18668
18687
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18669
18688
|
*
|
|
18670
18689
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18683,7 +18702,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18683
18702
|
return __pyx_r;
|
|
18684
18703
|
}
|
|
18685
18704
|
|
|
18686
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18705
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
|
|
18687
18706
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
18688
18707
|
*
|
|
18689
18708
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -18700,7 +18719,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18700
18719
|
int __pyx_clineno = 0;
|
|
18701
18720
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
|
|
18702
18721
|
|
|
18703
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18722
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":787
|
|
18704
18723
|
*
|
|
18705
18724
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
18706
18725
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -18714,7 +18733,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18714
18733
|
__pyx_t_1 = 0;
|
|
18715
18734
|
goto __pyx_L0;
|
|
18716
18735
|
|
|
18717
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18736
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
|
|
18718
18737
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
18719
18738
|
*
|
|
18720
18739
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -18733,7 +18752,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18733
18752
|
return __pyx_r;
|
|
18734
18753
|
}
|
|
18735
18754
|
|
|
18736
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18755
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
18737
18756
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
18738
18757
|
*
|
|
18739
18758
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -18750,7 +18769,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18750
18769
|
int __pyx_clineno = 0;
|
|
18751
18770
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
|
|
18752
18771
|
|
|
18753
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18772
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
|
|
18754
18773
|
*
|
|
18755
18774
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
18756
18775
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -18764,7 +18783,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18764
18783
|
__pyx_t_1 = 0;
|
|
18765
18784
|
goto __pyx_L0;
|
|
18766
18785
|
|
|
18767
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18786
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
18768
18787
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
18769
18788
|
*
|
|
18770
18789
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -18783,7 +18802,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18783
18802
|
return __pyx_r;
|
|
18784
18803
|
}
|
|
18785
18804
|
|
|
18786
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18805
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
18787
18806
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
18788
18807
|
*
|
|
18789
18808
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -18797,7 +18816,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18797
18816
|
int __pyx_t_1;
|
|
18798
18817
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
|
|
18799
18818
|
|
|
18800
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18819
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
|
|
18801
18820
|
*
|
|
18802
18821
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18803
18822
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -18807,7 +18826,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18807
18826
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
18808
18827
|
if (__pyx_t_1) {
|
|
18809
18828
|
|
|
18810
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18829
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":794
|
|
18811
18830
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18812
18831
|
* if PyDataType_HASSUBARRAY(d):
|
|
18813
18832
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -18819,7 +18838,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18819
18838
|
__pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
|
|
18820
18839
|
goto __pyx_L0;
|
|
18821
18840
|
|
|
18822
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18841
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
|
|
18823
18842
|
*
|
|
18824
18843
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18825
18844
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -18828,7 +18847,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18828
18847
|
*/
|
|
18829
18848
|
}
|
|
18830
18849
|
|
|
18831
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18850
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":796
|
|
18832
18851
|
* return <tuple>d.subarray.shape
|
|
18833
18852
|
* else:
|
|
18834
18853
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -18842,7 +18861,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18842
18861
|
goto __pyx_L0;
|
|
18843
18862
|
}
|
|
18844
18863
|
|
|
18845
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18864
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
18846
18865
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
18847
18866
|
*
|
|
18848
18867
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -18857,7 +18876,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18857
18876
|
return __pyx_r;
|
|
18858
18877
|
}
|
|
18859
18878
|
|
|
18860
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18879
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
|
|
18861
18880
|
* int _import_umath() except -1
|
|
18862
18881
|
*
|
|
18863
18882
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -18867,7 +18886,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18867
18886
|
|
|
18868
18887
|
static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
|
|
18869
18888
|
|
|
18870
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18889
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
|
|
18871
18890
|
*
|
|
18872
18891
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
18873
18892
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -18876,7 +18895,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18876
18895
|
*/
|
|
18877
18896
|
Py_INCREF(__pyx_v_base);
|
|
18878
18897
|
|
|
18879
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18898
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
|
|
18880
18899
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
18881
18900
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
18882
18901
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -18885,7 +18904,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18885
18904
|
*/
|
|
18886
18905
|
(void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
|
|
18887
18906
|
|
|
18888
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18907
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
|
|
18889
18908
|
* int _import_umath() except -1
|
|
18890
18909
|
*
|
|
18891
18910
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -18896,7 +18915,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18896
18915
|
/* function exit code */
|
|
18897
18916
|
}
|
|
18898
18917
|
|
|
18899
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18918
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
|
|
18900
18919
|
* PyArray_SetBaseObject(arr, base)
|
|
18901
18920
|
*
|
|
18902
18921
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -18911,7 +18930,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18911
18930
|
int __pyx_t_1;
|
|
18912
18931
|
__Pyx_RefNannySetupContext("get_array_base", 1);
|
|
18913
18932
|
|
|
18914
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18933
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
|
|
18915
18934
|
*
|
|
18916
18935
|
* cdef inline object get_array_base(ndarray arr):
|
|
18917
18936
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -18920,7 +18939,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18920
18939
|
*/
|
|
18921
18940
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
18922
18941
|
|
|
18923
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18942
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
|
|
18924
18943
|
* cdef inline object get_array_base(ndarray arr):
|
|
18925
18944
|
* base = PyArray_BASE(arr)
|
|
18926
18945
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -18930,7 +18949,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18930
18949
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
18931
18950
|
if (__pyx_t_1) {
|
|
18932
18951
|
|
|
18933
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18952
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
|
|
18934
18953
|
* base = PyArray_BASE(arr)
|
|
18935
18954
|
* if base is NULL:
|
|
18936
18955
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -18941,7 +18960,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18941
18960
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
18942
18961
|
goto __pyx_L0;
|
|
18943
18962
|
|
|
18944
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18963
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
|
|
18945
18964
|
* cdef inline object get_array_base(ndarray arr):
|
|
18946
18965
|
* base = PyArray_BASE(arr)
|
|
18947
18966
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -18950,7 +18969,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18950
18969
|
*/
|
|
18951
18970
|
}
|
|
18952
18971
|
|
|
18953
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18972
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":979
|
|
18954
18973
|
* if base is NULL:
|
|
18955
18974
|
* return None
|
|
18956
18975
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -18962,7 +18981,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18962
18981
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
18963
18982
|
goto __pyx_L0;
|
|
18964
18983
|
|
|
18965
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18984
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
|
|
18966
18985
|
* PyArray_SetBaseObject(arr, base)
|
|
18967
18986
|
*
|
|
18968
18987
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -18977,7 +18996,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18977
18996
|
return __pyx_r;
|
|
18978
18997
|
}
|
|
18979
18998
|
|
|
18980
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18999
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
18981
19000
|
* # Versions of the import_* functions which are more suitable for
|
|
18982
19001
|
* # Cython code.
|
|
18983
19002
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19001,7 +19020,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19001
19020
|
int __pyx_clineno = 0;
|
|
19002
19021
|
__Pyx_RefNannySetupContext("import_array", 1);
|
|
19003
19022
|
|
|
19004
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19023
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19005
19024
|
* # Cython code.
|
|
19006
19025
|
* cdef inline int import_array() except -1:
|
|
19007
19026
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19017,7 +19036,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19017
19036
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19018
19037
|
/*try:*/ {
|
|
19019
19038
|
|
|
19020
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19039
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
|
|
19021
19040
|
* cdef inline int import_array() except -1:
|
|
19022
19041
|
* try:
|
|
19023
19042
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -19026,7 +19045,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19026
19045
|
*/
|
|
19027
19046
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 985, __pyx_L3_error)
|
|
19028
19047
|
|
|
19029
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19048
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19030
19049
|
* # Cython code.
|
|
19031
19050
|
* cdef inline int import_array() except -1:
|
|
19032
19051
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19040,7 +19059,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19040
19059
|
goto __pyx_L8_try_end;
|
|
19041
19060
|
__pyx_L3_error:;
|
|
19042
19061
|
|
|
19043
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19062
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
|
|
19044
19063
|
* try:
|
|
19045
19064
|
* __pyx_import_array()
|
|
19046
19065
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19055,7 +19074,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19055
19074
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19056
19075
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19057
19076
|
|
|
19058
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19077
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
19059
19078
|
* __pyx_import_array()
|
|
19060
19079
|
* except Exception:
|
|
19061
19080
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19070,7 +19089,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19070
19089
|
}
|
|
19071
19090
|
goto __pyx_L5_except_error;
|
|
19072
19091
|
|
|
19073
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19092
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19074
19093
|
* # Cython code.
|
|
19075
19094
|
* cdef inline int import_array() except -1:
|
|
19076
19095
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19086,7 +19105,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19086
19105
|
__pyx_L8_try_end:;
|
|
19087
19106
|
}
|
|
19088
19107
|
|
|
19089
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19108
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19090
19109
|
* # Versions of the import_* functions which are more suitable for
|
|
19091
19110
|
* # Cython code.
|
|
19092
19111
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19109,7 +19128,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19109
19128
|
return __pyx_r;
|
|
19110
19129
|
}
|
|
19111
19130
|
|
|
19112
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19131
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19113
19132
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19114
19133
|
*
|
|
19115
19134
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19133,7 +19152,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19133
19152
|
int __pyx_clineno = 0;
|
|
19134
19153
|
__Pyx_RefNannySetupContext("import_umath", 1);
|
|
19135
19154
|
|
|
19136
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19155
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19137
19156
|
*
|
|
19138
19157
|
* cdef inline int import_umath() except -1:
|
|
19139
19158
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19149,7 +19168,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19149
19168
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19150
19169
|
/*try:*/ {
|
|
19151
19170
|
|
|
19152
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19171
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
|
|
19153
19172
|
* cdef inline int import_umath() except -1:
|
|
19154
19173
|
* try:
|
|
19155
19174
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19158,7 +19177,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19158
19177
|
*/
|
|
19159
19178
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 991, __pyx_L3_error)
|
|
19160
19179
|
|
|
19161
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19180
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19162
19181
|
*
|
|
19163
19182
|
* cdef inline int import_umath() except -1:
|
|
19164
19183
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19172,7 +19191,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19172
19191
|
goto __pyx_L8_try_end;
|
|
19173
19192
|
__pyx_L3_error:;
|
|
19174
19193
|
|
|
19175
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19194
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
|
|
19176
19195
|
* try:
|
|
19177
19196
|
* _import_umath()
|
|
19178
19197
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19187,7 +19206,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19187
19206
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19188
19207
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19189
19208
|
|
|
19190
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19209
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
19191
19210
|
* _import_umath()
|
|
19192
19211
|
* except Exception:
|
|
19193
19212
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19202,7 +19221,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19202
19221
|
}
|
|
19203
19222
|
goto __pyx_L5_except_error;
|
|
19204
19223
|
|
|
19205
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19224
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19206
19225
|
*
|
|
19207
19226
|
* cdef inline int import_umath() except -1:
|
|
19208
19227
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19218,7 +19237,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19218
19237
|
__pyx_L8_try_end:;
|
|
19219
19238
|
}
|
|
19220
19239
|
|
|
19221
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19240
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19222
19241
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19223
19242
|
*
|
|
19224
19243
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19241,7 +19260,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19241
19260
|
return __pyx_r;
|
|
19242
19261
|
}
|
|
19243
19262
|
|
|
19244
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19263
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
19245
19264
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19246
19265
|
*
|
|
19247
19266
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19265,7 +19284,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19265
19284
|
int __pyx_clineno = 0;
|
|
19266
19285
|
__Pyx_RefNannySetupContext("import_ufunc", 1);
|
|
19267
19286
|
|
|
19268
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19287
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19269
19288
|
*
|
|
19270
19289
|
* cdef inline int import_ufunc() except -1:
|
|
19271
19290
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19281,7 +19300,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19281
19300
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19282
19301
|
/*try:*/ {
|
|
19283
19302
|
|
|
19284
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19303
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
|
|
19285
19304
|
* cdef inline int import_ufunc() except -1:
|
|
19286
19305
|
* try:
|
|
19287
19306
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19290,7 +19309,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19290
19309
|
*/
|
|
19291
19310
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 997, __pyx_L3_error)
|
|
19292
19311
|
|
|
19293
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19312
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19294
19313
|
*
|
|
19295
19314
|
* cdef inline int import_ufunc() except -1:
|
|
19296
19315
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19304,7 +19323,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19304
19323
|
goto __pyx_L8_try_end;
|
|
19305
19324
|
__pyx_L3_error:;
|
|
19306
19325
|
|
|
19307
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19326
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
|
|
19308
19327
|
* try:
|
|
19309
19328
|
* _import_umath()
|
|
19310
19329
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19319,7 +19338,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19319
19338
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19320
19339
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19321
19340
|
|
|
19322
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19341
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
|
|
19323
19342
|
* _import_umath()
|
|
19324
19343
|
* except Exception:
|
|
19325
19344
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19334,7 +19353,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19334
19353
|
}
|
|
19335
19354
|
goto __pyx_L5_except_error;
|
|
19336
19355
|
|
|
19337
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19356
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19338
19357
|
*
|
|
19339
19358
|
* cdef inline int import_ufunc() except -1:
|
|
19340
19359
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19350,7 +19369,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19350
19369
|
__pyx_L8_try_end:;
|
|
19351
19370
|
}
|
|
19352
19371
|
|
|
19353
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19372
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
19354
19373
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19355
19374
|
*
|
|
19356
19375
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19373,7 +19392,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19373
19392
|
return __pyx_r;
|
|
19374
19393
|
}
|
|
19375
19394
|
|
|
19376
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19395
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
|
|
19377
19396
|
*
|
|
19378
19397
|
*
|
|
19379
19398
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19384,7 +19403,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19384
19403
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
19385
19404
|
int __pyx_r;
|
|
19386
19405
|
|
|
19387
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19406
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
19388
19407
|
* bool
|
|
19389
19408
|
* """
|
|
19390
19409
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19394,7 +19413,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19394
19413
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
19395
19414
|
goto __pyx_L0;
|
|
19396
19415
|
|
|
19397
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19416
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
|
|
19398
19417
|
*
|
|
19399
19418
|
*
|
|
19400
19419
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19407,7 +19426,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19407
19426
|
return __pyx_r;
|
|
19408
19427
|
}
|
|
19409
19428
|
|
|
19410
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19429
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
19411
19430
|
*
|
|
19412
19431
|
*
|
|
19413
19432
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19418,7 +19437,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19418
19437
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
19419
19438
|
int __pyx_r;
|
|
19420
19439
|
|
|
19421
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19440
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
19422
19441
|
* bool
|
|
19423
19442
|
* """
|
|
19424
19443
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19428,7 +19447,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19428
19447
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
19429
19448
|
goto __pyx_L0;
|
|
19430
19449
|
|
|
19431
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19450
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
19432
19451
|
*
|
|
19433
19452
|
*
|
|
19434
19453
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19441,7 +19460,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19441
19460
|
return __pyx_r;
|
|
19442
19461
|
}
|
|
19443
19462
|
|
|
19444
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19463
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
19445
19464
|
*
|
|
19446
19465
|
*
|
|
19447
19466
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19452,7 +19471,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19452
19471
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
19453
19472
|
npy_datetime __pyx_r;
|
|
19454
19473
|
|
|
19455
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19474
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
|
|
19456
19475
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
19457
19476
|
* """
|
|
19458
19477
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19462,7 +19481,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19462
19481
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
19463
19482
|
goto __pyx_L0;
|
|
19464
19483
|
|
|
19465
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19484
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
19466
19485
|
*
|
|
19467
19486
|
*
|
|
19468
19487
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19475,7 +19494,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19475
19494
|
return __pyx_r;
|
|
19476
19495
|
}
|
|
19477
19496
|
|
|
19478
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19497
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
|
|
19479
19498
|
*
|
|
19480
19499
|
*
|
|
19481
19500
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19486,7 +19505,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19486
19505
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
19487
19506
|
npy_timedelta __pyx_r;
|
|
19488
19507
|
|
|
19489
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19508
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
|
|
19490
19509
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
19491
19510
|
* """
|
|
19492
19511
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19496,7 +19515,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19496
19515
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
19497
19516
|
goto __pyx_L0;
|
|
19498
19517
|
|
|
19499
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19518
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
|
|
19500
19519
|
*
|
|
19501
19520
|
*
|
|
19502
19521
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19509,7 +19528,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19509
19528
|
return __pyx_r;
|
|
19510
19529
|
}
|
|
19511
19530
|
|
|
19512
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19531
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
|
|
19513
19532
|
*
|
|
19514
19533
|
*
|
|
19515
19534
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19520,7 +19539,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19520
19539
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
19521
19540
|
NPY_DATETIMEUNIT __pyx_r;
|
|
19522
19541
|
|
|
19523
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19542
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1053
|
|
19524
19543
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
19525
19544
|
* """
|
|
19526
19545
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -19528,7 +19547,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
19528
19547
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
19529
19548
|
goto __pyx_L0;
|
|
19530
19549
|
|
|
19531
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19550
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
|
|
19532
19551
|
*
|
|
19533
19552
|
*
|
|
19534
19553
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -22474,7 +22493,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
22474
22493
|
__Pyx_GOTREF(__pyx_tuple__8);
|
|
22475
22494
|
__Pyx_GIVEREF(__pyx_tuple__8);
|
|
22476
22495
|
|
|
22477
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
22496
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
22478
22497
|
* __pyx_import_array()
|
|
22479
22498
|
* except Exception:
|
|
22480
22499
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -22485,7 +22504,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
22485
22504
|
__Pyx_GOTREF(__pyx_tuple__9);
|
|
22486
22505
|
__Pyx_GIVEREF(__pyx_tuple__9);
|
|
22487
22506
|
|
|
22488
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
22507
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
22489
22508
|
* _import_umath()
|
|
22490
22509
|
* except Exception:
|
|
22491
22510
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -22912,33 +22931,33 @@ static int __Pyx_modinit_type_import_code(void) {
|
|
|
22912
22931
|
/*--- Type import code ---*/
|
|
22913
22932
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
22914
22933
|
__Pyx_GOTREF(__pyx_t_1);
|
|
22915
|
-
__pyx_ptype_7cpython_4type_type =
|
|
22934
|
+
__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
|
22916
22935
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
22917
|
-
sizeof(PyTypeObject),
|
|
22936
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
22918
22937
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
22919
|
-
sizeof(PyTypeObject),
|
|
22938
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
22920
22939
|
#else
|
|
22921
|
-
sizeof(PyHeapTypeObject),
|
|
22940
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
|
|
22922
22941
|
#endif
|
|
22923
|
-
|
|
22942
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
22924
22943
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
22925
22944
|
__pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 203, __pyx_L1_error)
|
|
22926
22945
|
__Pyx_GOTREF(__pyx_t_1);
|
|
22927
|
-
__pyx_ptype_5numpy_dtype =
|
|
22928
|
-
__pyx_ptype_5numpy_flatiter =
|
|
22929
|
-
__pyx_ptype_5numpy_broadcast =
|
|
22930
|
-
__pyx_ptype_5numpy_ndarray =
|
|
22931
|
-
__pyx_ptype_5numpy_generic =
|
|
22932
|
-
__pyx_ptype_5numpy_number =
|
|
22933
|
-
__pyx_ptype_5numpy_integer =
|
|
22934
|
-
__pyx_ptype_5numpy_signedinteger =
|
|
22935
|
-
__pyx_ptype_5numpy_unsignedinteger =
|
|
22936
|
-
__pyx_ptype_5numpy_inexact =
|
|
22937
|
-
__pyx_ptype_5numpy_floating =
|
|
22938
|
-
__pyx_ptype_5numpy_complexfloating =
|
|
22939
|
-
__pyx_ptype_5numpy_flexible =
|
|
22940
|
-
__pyx_ptype_5numpy_character =
|
|
22941
|
-
__pyx_ptype_5numpy_ufunc =
|
|
22946
|
+
__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)
|
|
22947
|
+
__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)
|
|
22948
|
+
__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)
|
|
22949
|
+
__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)
|
|
22950
|
+
__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)
|
|
22951
|
+
__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)
|
|
22952
|
+
__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)
|
|
22953
|
+
__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)
|
|
22954
|
+
__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)
|
|
22955
|
+
__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)
|
|
22956
|
+
__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)
|
|
22957
|
+
__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)
|
|
22958
|
+
__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)
|
|
22959
|
+
__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)
|
|
22960
|
+
__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)
|
|
22942
22961
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
22943
22962
|
__Pyx_RefNannyFinishContext();
|
|
22944
22963
|
return 0;
|
|
@@ -24404,11 +24423,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
|
|
|
24404
24423
|
{
|
|
24405
24424
|
int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
|
|
24406
24425
|
if (unlikely(eq != 0)) {
|
|
24407
|
-
if (unlikely(eq < 0)) return NULL;
|
|
24426
|
+
if (unlikely(eq < 0)) return NULL;
|
|
24408
24427
|
return kwvalues[i];
|
|
24409
24428
|
}
|
|
24410
24429
|
}
|
|
24411
|
-
return NULL;
|
|
24430
|
+
return NULL;
|
|
24412
24431
|
}
|
|
24413
24432
|
#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
|
|
24414
24433
|
CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
|
|
@@ -24521,7 +24540,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
24521
24540
|
if (*name) {
|
|
24522
24541
|
values[name-argnames] = value;
|
|
24523
24542
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
24524
|
-
Py_INCREF(value);
|
|
24543
|
+
Py_INCREF(value);
|
|
24525
24544
|
Py_DECREF(key);
|
|
24526
24545
|
#endif
|
|
24527
24546
|
key = NULL;
|
|
@@ -24540,7 +24559,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
24540
24559
|
&& _PyString_Eq(**name, key)) {
|
|
24541
24560
|
values[name-argnames] = value;
|
|
24542
24561
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
24543
|
-
value = NULL;
|
|
24562
|
+
value = NULL;
|
|
24544
24563
|
#endif
|
|
24545
24564
|
break;
|
|
24546
24565
|
}
|
|
@@ -24572,7 +24591,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
24572
24591
|
if (cmp == 0) {
|
|
24573
24592
|
values[name-argnames] = value;
|
|
24574
24593
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
24575
|
-
value = NULL;
|
|
24594
|
+
value = NULL;
|
|
24576
24595
|
#endif
|
|
24577
24596
|
break;
|
|
24578
24597
|
}
|
|
@@ -27094,10 +27113,10 @@ __PYX_GOOD:
|
|
|
27094
27113
|
#endif
|
|
27095
27114
|
|
|
27096
27115
|
/* TypeImport */
|
|
27097
|
-
#ifndef
|
|
27098
|
-
#define
|
|
27099
|
-
static PyTypeObject *
|
|
27100
|
-
size_t size, size_t alignment, enum
|
|
27116
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_0_10
|
|
27117
|
+
#define __PYX_HAVE_RT_ImportType_3_0_10
|
|
27118
|
+
static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
|
|
27119
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
|
|
27101
27120
|
{
|
|
27102
27121
|
PyObject *result = 0;
|
|
27103
27122
|
char warning[200];
|
|
@@ -27151,7 +27170,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
27151
27170
|
module_name, class_name, size, basicsize+itemsize);
|
|
27152
27171
|
goto bad;
|
|
27153
27172
|
}
|
|
27154
|
-
if (check_size ==
|
|
27173
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
|
|
27155
27174
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
27156
27175
|
PyErr_Format(PyExc_ValueError,
|
|
27157
27176
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -27159,7 +27178,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
27159
27178
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
27160
27179
|
goto bad;
|
|
27161
27180
|
}
|
|
27162
|
-
else if (check_size ==
|
|
27181
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
|
|
27163
27182
|
PyOS_snprintf(warning, sizeof(warning),
|
|
27164
27183
|
"%s.%s size changed, may indicate binary incompatibility. "
|
|
27165
27184
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -28159,7 +28178,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
|
|
|
28159
28178
|
default:
|
|
28160
28179
|
return NULL;
|
|
28161
28180
|
}
|
|
28162
|
-
return ((
|
|
28181
|
+
return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
|
|
28163
28182
|
}
|
|
28164
28183
|
static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
|
|
28165
28184
|
{
|
|
@@ -28973,7 +28992,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
|
|
|
28973
28992
|
#else
|
|
28974
28993
|
py_code = PyCode_NewEmpty(filename, funcname, py_line);
|
|
28975
28994
|
#endif
|
|
28976
|
-
Py_XDECREF(py_funcname);
|
|
28995
|
+
Py_XDECREF(py_funcname);
|
|
28977
28996
|
return py_code;
|
|
28978
28997
|
bad:
|
|
28979
28998
|
Py_XDECREF(py_funcname);
|