biotite 0.39.0__cp310-cp310-win_amd64.whl → 0.40.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/rcsb/download.py +19 -14
- biotite/sequence/align/banded.c +258 -237
- biotite/sequence/align/banded.cp310-win_amd64.pyd +0 -0
- 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/codec.c +235 -214
- biotite/sequence/codec.cp310-win_amd64.pyd +0 -0
- 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/basepairs.py +7 -12
- biotite/structure/bonds.c +1175 -1226
- 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/filter.py +30 -37
- biotite/structure/info/__init__.py +5 -8
- biotite/structure/info/atoms.py +25 -67
- biotite/structure/info/bonds.py +46 -100
- biotite/structure/info/ccd/README.rst +8 -0
- biotite/structure/info/ccd/amino_acids.txt +1646 -0
- biotite/structure/info/ccd/carbohydrates.txt +1133 -0
- biotite/structure/info/ccd/components.bcif +0 -0
- biotite/structure/info/ccd/nucleotides.txt +797 -0
- biotite/structure/info/ccd.py +95 -0
- biotite/structure/info/groups.py +90 -0
- biotite/structure/info/masses.py +21 -20
- biotite/structure/info/misc.py +11 -22
- biotite/structure/info/standardize.py +17 -12
- biotite/structure/io/__init__.py +2 -4
- biotite/structure/io/ctab.py +1 -1
- biotite/structure/io/general.py +37 -43
- biotite/structure/io/mmtf/__init__.py +3 -0
- biotite/structure/io/mmtf/convertarray.c +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/npz/__init__.py +3 -0
- biotite/structure/io/npz/file.py +21 -18
- biotite/structure/io/pdb/__init__.py +3 -3
- biotite/structure/io/pdb/file.py +5 -3
- biotite/structure/io/pdb/hybrid36.c +63 -43
- biotite/structure/io/pdb/hybrid36.cp310-win_amd64.pyd +0 -0
- biotite/structure/io/pdbqt/file.py +32 -32
- biotite/structure/io/pdbx/__init__.py +13 -6
- biotite/structure/io/pdbx/bcif.py +649 -0
- biotite/structure/io/pdbx/cif.py +1028 -0
- biotite/structure/io/pdbx/component.py +243 -0
- biotite/structure/io/pdbx/convert.py +707 -359
- biotite/structure/io/pdbx/encoding.c +112813 -0
- biotite/structure/io/pdbx/encoding.cp310-win_amd64.pyd +0 -0
- biotite/structure/io/pdbx/error.py +14 -0
- biotite/structure/io/pdbx/legacy.py +267 -0
- biotite/structure/molecules.py +151 -151
- biotite/structure/sasa.c +215 -196
- biotite/structure/sasa.cp310-win_amd64.pyd +0 -0
- biotite/structure/superimpose.py +158 -115
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/METADATA +2 -2
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/RECORD +92 -90
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/WHEEL +1 -1
- biotite/structure/info/amino_acids.json +0 -1556
- biotite/structure/info/amino_acids.py +0 -42
- biotite/structure/info/carbohydrates.json +0 -1122
- biotite/structure/info/carbohydrates.py +0 -39
- biotite/structure/info/intra_bonds.msgpack +0 -0
- biotite/structure/info/link_types.msgpack +0 -1
- biotite/structure/info/nucleotides.json +0 -772
- biotite/structure/info/nucleotides.py +0 -39
- biotite/structure/info/residue_masses.msgpack +0 -0
- biotite/structure/info/residue_names.msgpack +0 -3
- biotite/structure/info/residues.msgpack +0 -0
- biotite/structure/io/pdbx/file.py +0 -652
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/LICENSE.rst +0 -0
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/top_level.txt +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Generated by Cython 3.0.
|
|
1
|
+
/* Generated by Cython 3.0.10 */
|
|
2
2
|
|
|
3
3
|
/* BEGIN: Cython Metadata
|
|
4
4
|
{
|
|
@@ -37,10 +37,10 @@ END: Cython Metadata */
|
|
|
37
37
|
#else
|
|
38
38
|
#define __PYX_EXTRA_ABI_MODULE_NAME ""
|
|
39
39
|
#endif
|
|
40
|
-
#define CYTHON_ABI "
|
|
40
|
+
#define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
|
|
41
41
|
#define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
|
|
42
42
|
#define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
|
|
43
|
-
#define CYTHON_HEX_VERSION
|
|
43
|
+
#define CYTHON_HEX_VERSION 0x03000AF0
|
|
44
44
|
#define CYTHON_FUTURE_DIVISION 1
|
|
45
45
|
#include <stddef.h>
|
|
46
46
|
#ifndef offsetof
|
|
@@ -132,6 +132,8 @@ END: Cython Metadata */
|
|
|
132
132
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
133
133
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
134
134
|
#endif
|
|
135
|
+
#undef CYTHON_USE_FREELISTS
|
|
136
|
+
#define CYTHON_USE_FREELISTS 0
|
|
135
137
|
#elif defined(PYPY_VERSION)
|
|
136
138
|
#define CYTHON_COMPILING_IN_PYPY 1
|
|
137
139
|
#define CYTHON_COMPILING_IN_CPYTHON 0
|
|
@@ -193,6 +195,8 @@ END: Cython Metadata */
|
|
|
193
195
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
194
196
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
195
197
|
#endif
|
|
198
|
+
#undef CYTHON_USE_FREELISTS
|
|
199
|
+
#define CYTHON_USE_FREELISTS 0
|
|
196
200
|
#elif defined(CYTHON_LIMITED_API)
|
|
197
201
|
#ifdef Py_LIMITED_API
|
|
198
202
|
#undef __PYX_LIMITED_VERSION_HEX
|
|
@@ -254,6 +258,8 @@ END: Cython Metadata */
|
|
|
254
258
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
255
259
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
256
260
|
#endif
|
|
261
|
+
#undef CYTHON_USE_FREELISTS
|
|
262
|
+
#define CYTHON_USE_FREELISTS 0
|
|
257
263
|
#elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
|
|
258
264
|
#define CYTHON_COMPILING_IN_PYPY 0
|
|
259
265
|
#define CYTHON_COMPILING_IN_CPYTHON 0
|
|
@@ -263,11 +269,17 @@ END: Cython Metadata */
|
|
|
263
269
|
#ifndef CYTHON_USE_TYPE_SLOTS
|
|
264
270
|
#define CYTHON_USE_TYPE_SLOTS 1
|
|
265
271
|
#endif
|
|
272
|
+
#ifndef CYTHON_USE_TYPE_SPECS
|
|
273
|
+
#define CYTHON_USE_TYPE_SPECS 0
|
|
274
|
+
#endif
|
|
266
275
|
#undef CYTHON_USE_PYTYPE_LOOKUP
|
|
267
276
|
#define CYTHON_USE_PYTYPE_LOOKUP 0
|
|
268
277
|
#ifndef CYTHON_USE_ASYNC_SLOTS
|
|
269
278
|
#define CYTHON_USE_ASYNC_SLOTS 1
|
|
270
279
|
#endif
|
|
280
|
+
#ifndef CYTHON_USE_PYLONG_INTERNALS
|
|
281
|
+
#define CYTHON_USE_PYLONG_INTERNALS 0
|
|
282
|
+
#endif
|
|
271
283
|
#undef CYTHON_USE_PYLIST_INTERNALS
|
|
272
284
|
#define CYTHON_USE_PYLIST_INTERNALS 0
|
|
273
285
|
#ifndef CYTHON_USE_UNICODE_INTERNALS
|
|
@@ -275,8 +287,6 @@ END: Cython Metadata */
|
|
|
275
287
|
#endif
|
|
276
288
|
#undef CYTHON_USE_UNICODE_WRITER
|
|
277
289
|
#define CYTHON_USE_UNICODE_WRITER 0
|
|
278
|
-
#undef CYTHON_USE_PYLONG_INTERNALS
|
|
279
|
-
#define CYTHON_USE_PYLONG_INTERNALS 0
|
|
280
290
|
#ifndef CYTHON_AVOID_BORROWED_REFS
|
|
281
291
|
#define CYTHON_AVOID_BORROWED_REFS 0
|
|
282
292
|
#endif
|
|
@@ -288,11 +298,22 @@ END: Cython Metadata */
|
|
|
288
298
|
#endif
|
|
289
299
|
#undef CYTHON_FAST_THREAD_STATE
|
|
290
300
|
#define CYTHON_FAST_THREAD_STATE 0
|
|
301
|
+
#undef CYTHON_FAST_GIL
|
|
302
|
+
#define CYTHON_FAST_GIL 0
|
|
303
|
+
#ifndef CYTHON_METH_FASTCALL
|
|
304
|
+
#define CYTHON_METH_FASTCALL 1
|
|
305
|
+
#endif
|
|
291
306
|
#undef CYTHON_FAST_PYCALL
|
|
292
307
|
#define CYTHON_FAST_PYCALL 0
|
|
308
|
+
#ifndef CYTHON_PEP487_INIT_SUBCLASS
|
|
309
|
+
#define CYTHON_PEP487_INIT_SUBCLASS 1
|
|
310
|
+
#endif
|
|
293
311
|
#ifndef CYTHON_PEP489_MULTI_PHASE_INIT
|
|
294
312
|
#define CYTHON_PEP489_MULTI_PHASE_INIT 1
|
|
295
313
|
#endif
|
|
314
|
+
#ifndef CYTHON_USE_MODULE_STATE
|
|
315
|
+
#define CYTHON_USE_MODULE_STATE 0
|
|
316
|
+
#endif
|
|
296
317
|
#ifndef CYTHON_USE_TP_FINALIZE
|
|
297
318
|
#define CYTHON_USE_TP_FINALIZE 1
|
|
298
319
|
#endif
|
|
@@ -300,6 +321,12 @@ END: Cython Metadata */
|
|
|
300
321
|
#define CYTHON_USE_DICT_VERSIONS 0
|
|
301
322
|
#undef CYTHON_USE_EXC_INFO_STACK
|
|
302
323
|
#define CYTHON_USE_EXC_INFO_STACK 0
|
|
324
|
+
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
325
|
+
#define CYTHON_UPDATE_DESCRIPTOR_DOC 1
|
|
326
|
+
#endif
|
|
327
|
+
#ifndef CYTHON_USE_FREELISTS
|
|
328
|
+
#define CYTHON_USE_FREELISTS 0
|
|
329
|
+
#endif
|
|
303
330
|
#else
|
|
304
331
|
#define CYTHON_COMPILING_IN_PYPY 0
|
|
305
332
|
#define CYTHON_COMPILING_IN_CPYTHON 1
|
|
@@ -390,6 +417,9 @@ END: Cython Metadata */
|
|
|
390
417
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
391
418
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 1
|
|
392
419
|
#endif
|
|
420
|
+
#ifndef CYTHON_USE_FREELISTS
|
|
421
|
+
#define CYTHON_USE_FREELISTS 1
|
|
422
|
+
#endif
|
|
393
423
|
#endif
|
|
394
424
|
#if !defined(CYTHON_FAST_PYCCALL)
|
|
395
425
|
#define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
|
|
@@ -582,14 +612,14 @@ END: Cython Metadata */
|
|
|
582
612
|
PyObject *exception_table = NULL;
|
|
583
613
|
PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
|
|
584
614
|
#if __PYX_LIMITED_VERSION_HEX < 0x030B0000
|
|
585
|
-
PyObject *version_info;
|
|
615
|
+
PyObject *version_info;
|
|
586
616
|
PyObject *py_minor_version = NULL;
|
|
587
617
|
#endif
|
|
588
618
|
long minor_version = 0;
|
|
589
619
|
PyObject *type, *value, *traceback;
|
|
590
620
|
PyErr_Fetch(&type, &value, &traceback);
|
|
591
621
|
#if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
|
|
592
|
-
minor_version = 11;
|
|
622
|
+
minor_version = 11;
|
|
593
623
|
#else
|
|
594
624
|
if (!(version_info = PySys_GetObject("version_info"))) goto end;
|
|
595
625
|
if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
|
|
@@ -647,7 +677,7 @@ END: Cython Metadata */
|
|
|
647
677
|
PyObject *fv, PyObject *cell, PyObject* fn,
|
|
648
678
|
PyObject *name, int fline, PyObject *lnos) {
|
|
649
679
|
PyCodeObject *result;
|
|
650
|
-
PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
|
|
680
|
+
PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
|
|
651
681
|
if (!empty_bytes) return NULL;
|
|
652
682
|
result =
|
|
653
683
|
#if PY_VERSION_HEX >= 0x030C0000
|
|
@@ -733,8 +763,13 @@ END: Cython Metadata */
|
|
|
733
763
|
typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
|
|
734
764
|
Py_ssize_t nargs, PyObject *kwnames);
|
|
735
765
|
#else
|
|
736
|
-
#
|
|
737
|
-
#define
|
|
766
|
+
#if PY_VERSION_HEX >= 0x030d00A4
|
|
767
|
+
# define __Pyx_PyCFunctionFast PyCFunctionFast
|
|
768
|
+
# define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
|
|
769
|
+
#else
|
|
770
|
+
# define __Pyx_PyCFunctionFast _PyCFunctionFast
|
|
771
|
+
# define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
|
|
772
|
+
#endif
|
|
738
773
|
#endif
|
|
739
774
|
#if CYTHON_METH_FASTCALL
|
|
740
775
|
#define __Pyx_METH_FASTCALL METH_FASTCALL
|
|
@@ -1086,7 +1121,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
|
|
|
1086
1121
|
#define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
|
|
1087
1122
|
#define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
|
|
1088
1123
|
#endif
|
|
1089
|
-
#if
|
|
1124
|
+
#if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
|
|
1090
1125
|
#define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
|
|
1091
1126
|
#else
|
|
1092
1127
|
static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
|
|
@@ -1173,7 +1208,7 @@ static CYTHON_INLINE float __PYX_NAN() {
|
|
|
1173
1208
|
#endif
|
|
1174
1209
|
|
|
1175
1210
|
#define __PYX_MARK_ERR_POS(f_index, lineno) \
|
|
1176
|
-
{ __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__;
|
|
1211
|
+
{ __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
|
|
1177
1212
|
#define __PYX_ERR(f_index, lineno, Ln_error) \
|
|
1178
1213
|
{ __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
|
|
1179
1214
|
|
|
@@ -1288,24 +1323,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
|
|
|
1288
1323
|
#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
|
|
1289
1324
|
#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
|
|
1290
1325
|
#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
|
|
1291
|
-
#if CYTHON_COMPILING_IN_LIMITED_API
|
|
1292
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
|
|
1293
|
-
{
|
|
1294
|
-
const wchar_t *u_end = u;
|
|
1295
|
-
while (*u_end++) ;
|
|
1296
|
-
return (size_t)(u_end - u - 1);
|
|
1297
|
-
}
|
|
1298
|
-
#else
|
|
1299
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
|
|
1300
|
-
{
|
|
1301
|
-
const Py_UNICODE *u_end = u;
|
|
1302
|
-
while (*u_end++) ;
|
|
1303
|
-
return (size_t)(u_end - u - 1);
|
|
1304
|
-
}
|
|
1305
|
-
#endif
|
|
1306
1326
|
#define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
|
|
1307
|
-
#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
|
|
1308
|
-
#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
|
|
1309
1327
|
#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
|
|
1310
1328
|
#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
|
|
1311
1329
|
#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
|
|
@@ -1355,7 +1373,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
|
|
|
1355
1373
|
#endif
|
|
1356
1374
|
typedef Py_ssize_t __Pyx_compact_pylong;
|
|
1357
1375
|
typedef size_t __Pyx_compact_upylong;
|
|
1358
|
-
#else
|
|
1376
|
+
#else
|
|
1359
1377
|
#define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
|
|
1360
1378
|
#define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
|
|
1361
1379
|
#define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
|
|
@@ -1645,7 +1663,7 @@ typedef struct {
|
|
|
1645
1663
|
|
|
1646
1664
|
/* #### Code section: numeric_typedefs ### */
|
|
1647
1665
|
|
|
1648
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1666
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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-teuzpiwx/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 # <<<<<<<<<<<<<<
|
|
@@ -1920,7 +1938,7 @@ struct __pyx_MemviewEnum_obj;
|
|
|
1920
1938
|
struct __pyx_memoryview_obj;
|
|
1921
1939
|
struct __pyx_memoryviewslice_obj;
|
|
1922
1940
|
|
|
1923
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1941
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1924
1942
|
* ctypedef npy_longdouble longdouble_t
|
|
1925
1943
|
*
|
|
1926
1944
|
* ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
|
|
@@ -1929,7 +1947,7 @@ struct __pyx_memoryviewslice_obj;
|
|
|
1929
1947
|
*/
|
|
1930
1948
|
typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
1931
1949
|
|
|
1932
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1950
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
|
|
1933
1951
|
*
|
|
1934
1952
|
* ctypedef npy_cfloat cfloat_t
|
|
1935
1953
|
* ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1938,7 +1956,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
|
1938
1956
|
*/
|
|
1939
1957
|
typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
1940
1958
|
|
|
1941
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1959
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
|
|
1942
1960
|
* ctypedef npy_cfloat cfloat_t
|
|
1943
1961
|
* ctypedef npy_cdouble cdouble_t
|
|
1944
1962
|
* ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1947,7 +1965,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
|
1947
1965
|
*/
|
|
1948
1966
|
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
|
|
1949
1967
|
|
|
1950
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
1968
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":775
|
|
1951
1969
|
* ctypedef npy_clongdouble clongdouble_t
|
|
1952
1970
|
*
|
|
1953
1971
|
* ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
|
|
@@ -2258,8 +2276,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2258
2276
|
#define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
|
|
2259
2277
|
#define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
|
|
2260
2278
|
#else
|
|
2261
|
-
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2262
|
-
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2279
|
+
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2280
|
+
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2263
2281
|
#endif
|
|
2264
2282
|
#define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
|
|
2265
2283
|
#define __Pyx_KwValues_VARARGS(args, nargs) NULL
|
|
@@ -2275,8 +2293,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2275
2293
|
#else
|
|
2276
2294
|
#define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
|
|
2277
2295
|
#endif
|
|
2278
|
-
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg
|
|
2279
|
-
|
|
2296
|
+
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
|
|
2297
|
+
to have the same reference counting */
|
|
2298
|
+
#define __Pyx_Arg_XDECREF_FASTCALL(arg)
|
|
2280
2299
|
#else
|
|
2281
2300
|
#define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
|
|
2282
2301
|
#define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
|
|
@@ -2899,22 +2918,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
|
|
|
2899
2918
|
#endif
|
|
2900
2919
|
|
|
2901
2920
|
/* TypeImport.proto */
|
|
2902
|
-
#ifndef
|
|
2903
|
-
#define
|
|
2921
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2922
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2904
2923
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
2905
2924
|
#include <stdalign.h>
|
|
2906
2925
|
#endif
|
|
2907
2926
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
2908
|
-
#define
|
|
2927
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
|
|
2909
2928
|
#else
|
|
2910
|
-
#define
|
|
2929
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
|
|
2911
2930
|
#endif
|
|
2912
|
-
enum
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2931
|
+
enum __Pyx_ImportType_CheckSize_3_0_10 {
|
|
2932
|
+
__Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
|
|
2933
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
|
|
2934
|
+
__Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
|
|
2916
2935
|
};
|
|
2917
|
-
static PyTypeObject *
|
|
2936
|
+
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);
|
|
2918
2937
|
#endif
|
|
2919
2938
|
|
|
2920
2939
|
/* FetchSharedCythonModule.proto */
|
|
@@ -3007,7 +3026,7 @@ typedef struct {
|
|
|
3007
3026
|
#endif
|
|
3008
3027
|
void *defaults;
|
|
3009
3028
|
int defaults_pyobjects;
|
|
3010
|
-
size_t defaults_size;
|
|
3029
|
+
size_t defaults_size;
|
|
3011
3030
|
int flags;
|
|
3012
3031
|
PyObject *defaults_tuple;
|
|
3013
3032
|
PyObject *defaults_kwdict;
|
|
@@ -18624,7 +18643,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18624
18643
|
return __pyx_r;
|
|
18625
18644
|
}
|
|
18626
18645
|
|
|
18627
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18646
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
|
|
18628
18647
|
*
|
|
18629
18648
|
* @property
|
|
18630
18649
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18635,7 +18654,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18635
18654
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
18636
18655
|
PyObject *__pyx_r;
|
|
18637
18656
|
|
|
18638
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18657
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":249
|
|
18639
18658
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
18640
18659
|
* """
|
|
18641
18660
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -18645,7 +18664,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18645
18664
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
18646
18665
|
goto __pyx_L0;
|
|
18647
18666
|
|
|
18648
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18667
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
|
|
18649
18668
|
*
|
|
18650
18669
|
* @property
|
|
18651
18670
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18658,7 +18677,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18658
18677
|
return __pyx_r;
|
|
18659
18678
|
}
|
|
18660
18679
|
|
|
18661
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18680
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
|
|
18662
18681
|
*
|
|
18663
18682
|
* @property
|
|
18664
18683
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18672,7 +18691,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18672
18691
|
PyArray_Descr *__pyx_t_1;
|
|
18673
18692
|
__Pyx_RefNannySetupContext("descr", 1);
|
|
18674
18693
|
|
|
18675
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18694
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":255
|
|
18676
18695
|
* """Returns an owned reference to the dtype of the array.
|
|
18677
18696
|
* """
|
|
18678
18697
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -18685,7 +18704,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18685
18704
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
18686
18705
|
goto __pyx_L0;
|
|
18687
18706
|
|
|
18688
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18707
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
|
|
18689
18708
|
*
|
|
18690
18709
|
* @property
|
|
18691
18710
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18700,7 +18719,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18700
18719
|
return __pyx_r;
|
|
18701
18720
|
}
|
|
18702
18721
|
|
|
18703
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18722
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
|
|
18704
18723
|
*
|
|
18705
18724
|
* @property
|
|
18706
18725
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18711,7 +18730,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18711
18730
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
18712
18731
|
int __pyx_r;
|
|
18713
18732
|
|
|
18714
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18733
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":261
|
|
18715
18734
|
* """Returns the number of dimensions in the array.
|
|
18716
18735
|
* """
|
|
18717
18736
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -18721,7 +18740,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18721
18740
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
18722
18741
|
goto __pyx_L0;
|
|
18723
18742
|
|
|
18724
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18743
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
|
|
18725
18744
|
*
|
|
18726
18745
|
* @property
|
|
18727
18746
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18734,7 +18753,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18734
18753
|
return __pyx_r;
|
|
18735
18754
|
}
|
|
18736
18755
|
|
|
18737
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18756
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
|
|
18738
18757
|
*
|
|
18739
18758
|
* @property
|
|
18740
18759
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18745,7 +18764,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18745
18764
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
18746
18765
|
npy_intp *__pyx_r;
|
|
18747
18766
|
|
|
18748
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18767
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":269
|
|
18749
18768
|
* Can return NULL for 0-dimensional arrays.
|
|
18750
18769
|
* """
|
|
18751
18770
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -18755,7 +18774,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18755
18774
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
18756
18775
|
goto __pyx_L0;
|
|
18757
18776
|
|
|
18758
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18777
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
|
|
18759
18778
|
*
|
|
18760
18779
|
* @property
|
|
18761
18780
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18768,7 +18787,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18768
18787
|
return __pyx_r;
|
|
18769
18788
|
}
|
|
18770
18789
|
|
|
18771
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18790
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
|
|
18772
18791
|
*
|
|
18773
18792
|
* @property
|
|
18774
18793
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18779,7 +18798,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18779
18798
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
18780
18799
|
npy_intp *__pyx_r;
|
|
18781
18800
|
|
|
18782
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18801
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":276
|
|
18783
18802
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
18784
18803
|
* """
|
|
18785
18804
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -18789,7 +18808,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18789
18808
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
18790
18809
|
goto __pyx_L0;
|
|
18791
18810
|
|
|
18792
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18811
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
|
|
18793
18812
|
*
|
|
18794
18813
|
* @property
|
|
18795
18814
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18802,7 +18821,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18802
18821
|
return __pyx_r;
|
|
18803
18822
|
}
|
|
18804
18823
|
|
|
18805
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18824
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
|
|
18806
18825
|
*
|
|
18807
18826
|
* @property
|
|
18808
18827
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18813,7 +18832,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18813
18832
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
18814
18833
|
npy_intp __pyx_r;
|
|
18815
18834
|
|
|
18816
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18835
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":282
|
|
18817
18836
|
* """Returns the total size (in number of elements) of the array.
|
|
18818
18837
|
* """
|
|
18819
18838
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -18823,7 +18842,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18823
18842
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
18824
18843
|
goto __pyx_L0;
|
|
18825
18844
|
|
|
18826
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18845
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
|
|
18827
18846
|
*
|
|
18828
18847
|
* @property
|
|
18829
18848
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18836,7 +18855,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18836
18855
|
return __pyx_r;
|
|
18837
18856
|
}
|
|
18838
18857
|
|
|
18839
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18858
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
18840
18859
|
*
|
|
18841
18860
|
* @property
|
|
18842
18861
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18847,7 +18866,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18847
18866
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
18848
18867
|
char *__pyx_r;
|
|
18849
18868
|
|
|
18850
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18869
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":291
|
|
18851
18870
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
18852
18871
|
* """
|
|
18853
18872
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -18857,7 +18876,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18857
18876
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
18858
18877
|
goto __pyx_L0;
|
|
18859
18878
|
|
|
18860
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18879
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
|
|
18861
18880
|
*
|
|
18862
18881
|
* @property
|
|
18863
18882
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18870,7 +18889,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18870
18889
|
return __pyx_r;
|
|
18871
18890
|
}
|
|
18872
18891
|
|
|
18873
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18892
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
18874
18893
|
* ctypedef npy_cdouble complex_t
|
|
18875
18894
|
*
|
|
18876
18895
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18887,7 +18906,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18887
18906
|
int __pyx_clineno = 0;
|
|
18888
18907
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
|
|
18889
18908
|
|
|
18890
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18909
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":778
|
|
18891
18910
|
*
|
|
18892
18911
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
18893
18912
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -18901,7 +18920,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18901
18920
|
__pyx_t_1 = 0;
|
|
18902
18921
|
goto __pyx_L0;
|
|
18903
18922
|
|
|
18904
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18923
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
|
|
18905
18924
|
* ctypedef npy_cdouble complex_t
|
|
18906
18925
|
*
|
|
18907
18926
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18920,7 +18939,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18920
18939
|
return __pyx_r;
|
|
18921
18940
|
}
|
|
18922
18941
|
|
|
18923
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18942
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
18924
18943
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18925
18944
|
*
|
|
18926
18945
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18937,7 +18956,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18937
18956
|
int __pyx_clineno = 0;
|
|
18938
18957
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
|
|
18939
18958
|
|
|
18940
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18959
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":781
|
|
18941
18960
|
*
|
|
18942
18961
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
18943
18962
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -18951,7 +18970,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18951
18970
|
__pyx_t_1 = 0;
|
|
18952
18971
|
goto __pyx_L0;
|
|
18953
18972
|
|
|
18954
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18973
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
|
|
18955
18974
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18956
18975
|
*
|
|
18957
18976
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18970,7 +18989,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18970
18989
|
return __pyx_r;
|
|
18971
18990
|
}
|
|
18972
18991
|
|
|
18973
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
18992
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
|
|
18974
18993
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18975
18994
|
*
|
|
18976
18995
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18987,7 +19006,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18987
19006
|
int __pyx_clineno = 0;
|
|
18988
19007
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
|
|
18989
19008
|
|
|
18990
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19009
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":784
|
|
18991
19010
|
*
|
|
18992
19011
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
18993
19012
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -19001,7 +19020,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19001
19020
|
__pyx_t_1 = 0;
|
|
19002
19021
|
goto __pyx_L0;
|
|
19003
19022
|
|
|
19004
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19023
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
|
|
19005
19024
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
19006
19025
|
*
|
|
19007
19026
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -19020,7 +19039,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19020
19039
|
return __pyx_r;
|
|
19021
19040
|
}
|
|
19022
19041
|
|
|
19023
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19042
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
|
|
19024
19043
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
19025
19044
|
*
|
|
19026
19045
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -19037,7 +19056,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19037
19056
|
int __pyx_clineno = 0;
|
|
19038
19057
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
|
|
19039
19058
|
|
|
19040
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19059
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":787
|
|
19041
19060
|
*
|
|
19042
19061
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
19043
19062
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -19051,7 +19070,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19051
19070
|
__pyx_t_1 = 0;
|
|
19052
19071
|
goto __pyx_L0;
|
|
19053
19072
|
|
|
19054
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19073
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
|
|
19055
19074
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
19056
19075
|
*
|
|
19057
19076
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -19070,7 +19089,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19070
19089
|
return __pyx_r;
|
|
19071
19090
|
}
|
|
19072
19091
|
|
|
19073
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19092
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
19074
19093
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
19075
19094
|
*
|
|
19076
19095
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -19087,7 +19106,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19087
19106
|
int __pyx_clineno = 0;
|
|
19088
19107
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
|
|
19089
19108
|
|
|
19090
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19109
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
|
|
19091
19110
|
*
|
|
19092
19111
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
19093
19112
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -19101,7 +19120,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19101
19120
|
__pyx_t_1 = 0;
|
|
19102
19121
|
goto __pyx_L0;
|
|
19103
19122
|
|
|
19104
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19123
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
|
|
19105
19124
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
19106
19125
|
*
|
|
19107
19126
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -19120,7 +19139,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19120
19139
|
return __pyx_r;
|
|
19121
19140
|
}
|
|
19122
19141
|
|
|
19123
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19142
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
19124
19143
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
19125
19144
|
*
|
|
19126
19145
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -19134,7 +19153,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19134
19153
|
int __pyx_t_1;
|
|
19135
19154
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
|
|
19136
19155
|
|
|
19137
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19156
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
|
|
19138
19157
|
*
|
|
19139
19158
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19140
19159
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -19144,7 +19163,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19144
19163
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
19145
19164
|
if (__pyx_t_1) {
|
|
19146
19165
|
|
|
19147
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19166
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":794
|
|
19148
19167
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19149
19168
|
* if PyDataType_HASSUBARRAY(d):
|
|
19150
19169
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -19156,7 +19175,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19156
19175
|
__pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
|
|
19157
19176
|
goto __pyx_L0;
|
|
19158
19177
|
|
|
19159
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19178
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
|
|
19160
19179
|
*
|
|
19161
19180
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19162
19181
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -19165,7 +19184,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19165
19184
|
*/
|
|
19166
19185
|
}
|
|
19167
19186
|
|
|
19168
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19187
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":796
|
|
19169
19188
|
* return <tuple>d.subarray.shape
|
|
19170
19189
|
* else:
|
|
19171
19190
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -19179,7 +19198,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19179
19198
|
goto __pyx_L0;
|
|
19180
19199
|
}
|
|
19181
19200
|
|
|
19182
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19201
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
|
|
19183
19202
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
19184
19203
|
*
|
|
19185
19204
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -19194,7 +19213,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19194
19213
|
return __pyx_r;
|
|
19195
19214
|
}
|
|
19196
19215
|
|
|
19197
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19216
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
|
|
19198
19217
|
* int _import_umath() except -1
|
|
19199
19218
|
*
|
|
19200
19219
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -19204,7 +19223,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19204
19223
|
|
|
19205
19224
|
static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
|
|
19206
19225
|
|
|
19207
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19226
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
|
|
19208
19227
|
*
|
|
19209
19228
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
19210
19229
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -19213,7 +19232,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19213
19232
|
*/
|
|
19214
19233
|
Py_INCREF(__pyx_v_base);
|
|
19215
19234
|
|
|
19216
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19235
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
|
|
19217
19236
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
19218
19237
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
19219
19238
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -19222,7 +19241,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19222
19241
|
*/
|
|
19223
19242
|
(void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
|
|
19224
19243
|
|
|
19225
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19244
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
|
|
19226
19245
|
* int _import_umath() except -1
|
|
19227
19246
|
*
|
|
19228
19247
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -19233,7 +19252,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19233
19252
|
/* function exit code */
|
|
19234
19253
|
}
|
|
19235
19254
|
|
|
19236
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19255
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
|
|
19237
19256
|
* PyArray_SetBaseObject(arr, base)
|
|
19238
19257
|
*
|
|
19239
19258
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19248,7 +19267,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19248
19267
|
int __pyx_t_1;
|
|
19249
19268
|
__Pyx_RefNannySetupContext("get_array_base", 1);
|
|
19250
19269
|
|
|
19251
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19270
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
|
|
19252
19271
|
*
|
|
19253
19272
|
* cdef inline object get_array_base(ndarray arr):
|
|
19254
19273
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -19257,7 +19276,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19257
19276
|
*/
|
|
19258
19277
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
19259
19278
|
|
|
19260
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19279
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
|
|
19261
19280
|
* cdef inline object get_array_base(ndarray arr):
|
|
19262
19281
|
* base = PyArray_BASE(arr)
|
|
19263
19282
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19267,7 +19286,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19267
19286
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
19268
19287
|
if (__pyx_t_1) {
|
|
19269
19288
|
|
|
19270
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19289
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
|
|
19271
19290
|
* base = PyArray_BASE(arr)
|
|
19272
19291
|
* if base is NULL:
|
|
19273
19292
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -19278,7 +19297,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19278
19297
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
19279
19298
|
goto __pyx_L0;
|
|
19280
19299
|
|
|
19281
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19300
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
|
|
19282
19301
|
* cdef inline object get_array_base(ndarray arr):
|
|
19283
19302
|
* base = PyArray_BASE(arr)
|
|
19284
19303
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19287,7 +19306,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19287
19306
|
*/
|
|
19288
19307
|
}
|
|
19289
19308
|
|
|
19290
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19309
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":979
|
|
19291
19310
|
* if base is NULL:
|
|
19292
19311
|
* return None
|
|
19293
19312
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -19299,7 +19318,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19299
19318
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
19300
19319
|
goto __pyx_L0;
|
|
19301
19320
|
|
|
19302
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19321
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
|
|
19303
19322
|
* PyArray_SetBaseObject(arr, base)
|
|
19304
19323
|
*
|
|
19305
19324
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19314,7 +19333,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19314
19333
|
return __pyx_r;
|
|
19315
19334
|
}
|
|
19316
19335
|
|
|
19317
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19336
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19318
19337
|
* # Versions of the import_* functions which are more suitable for
|
|
19319
19338
|
* # Cython code.
|
|
19320
19339
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19338,7 +19357,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19338
19357
|
int __pyx_clineno = 0;
|
|
19339
19358
|
__Pyx_RefNannySetupContext("import_array", 1);
|
|
19340
19359
|
|
|
19341
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19360
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19342
19361
|
* # Cython code.
|
|
19343
19362
|
* cdef inline int import_array() except -1:
|
|
19344
19363
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19354,7 +19373,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19354
19373
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19355
19374
|
/*try:*/ {
|
|
19356
19375
|
|
|
19357
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19376
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
|
|
19358
19377
|
* cdef inline int import_array() except -1:
|
|
19359
19378
|
* try:
|
|
19360
19379
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -19363,7 +19382,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19363
19382
|
*/
|
|
19364
19383
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 985, __pyx_L3_error)
|
|
19365
19384
|
|
|
19366
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19385
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19367
19386
|
* # Cython code.
|
|
19368
19387
|
* cdef inline int import_array() except -1:
|
|
19369
19388
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19377,7 +19396,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19377
19396
|
goto __pyx_L8_try_end;
|
|
19378
19397
|
__pyx_L3_error:;
|
|
19379
19398
|
|
|
19380
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19399
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
|
|
19381
19400
|
* try:
|
|
19382
19401
|
* __pyx_import_array()
|
|
19383
19402
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19392,7 +19411,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19392
19411
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19393
19412
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19394
19413
|
|
|
19395
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19414
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
19396
19415
|
* __pyx_import_array()
|
|
19397
19416
|
* except Exception:
|
|
19398
19417
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19407,7 +19426,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19407
19426
|
}
|
|
19408
19427
|
goto __pyx_L5_except_error;
|
|
19409
19428
|
|
|
19410
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19429
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19411
19430
|
* # Cython code.
|
|
19412
19431
|
* cdef inline int import_array() except -1:
|
|
19413
19432
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19423,7 +19442,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19423
19442
|
__pyx_L8_try_end:;
|
|
19424
19443
|
}
|
|
19425
19444
|
|
|
19426
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19445
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19427
19446
|
* # Versions of the import_* functions which are more suitable for
|
|
19428
19447
|
* # Cython code.
|
|
19429
19448
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19446,7 +19465,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19446
19465
|
return __pyx_r;
|
|
19447
19466
|
}
|
|
19448
19467
|
|
|
19449
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19468
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19450
19469
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19451
19470
|
*
|
|
19452
19471
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19470,7 +19489,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19470
19489
|
int __pyx_clineno = 0;
|
|
19471
19490
|
__Pyx_RefNannySetupContext("import_umath", 1);
|
|
19472
19491
|
|
|
19473
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19492
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19474
19493
|
*
|
|
19475
19494
|
* cdef inline int import_umath() except -1:
|
|
19476
19495
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19486,7 +19505,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19486
19505
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19487
19506
|
/*try:*/ {
|
|
19488
19507
|
|
|
19489
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19508
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
|
|
19490
19509
|
* cdef inline int import_umath() except -1:
|
|
19491
19510
|
* try:
|
|
19492
19511
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19495,7 +19514,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19495
19514
|
*/
|
|
19496
19515
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 991, __pyx_L3_error)
|
|
19497
19516
|
|
|
19498
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19517
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19499
19518
|
*
|
|
19500
19519
|
* cdef inline int import_umath() except -1:
|
|
19501
19520
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19509,7 +19528,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19509
19528
|
goto __pyx_L8_try_end;
|
|
19510
19529
|
__pyx_L3_error:;
|
|
19511
19530
|
|
|
19512
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19531
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
|
|
19513
19532
|
* try:
|
|
19514
19533
|
* _import_umath()
|
|
19515
19534
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19524,7 +19543,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19524
19543
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19525
19544
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19526
19545
|
|
|
19527
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19546
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
19528
19547
|
* _import_umath()
|
|
19529
19548
|
* except Exception:
|
|
19530
19549
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19539,7 +19558,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19539
19558
|
}
|
|
19540
19559
|
goto __pyx_L5_except_error;
|
|
19541
19560
|
|
|
19542
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19561
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
|
|
19543
19562
|
*
|
|
19544
19563
|
* cdef inline int import_umath() except -1:
|
|
19545
19564
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19555,7 +19574,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19555
19574
|
__pyx_L8_try_end:;
|
|
19556
19575
|
}
|
|
19557
19576
|
|
|
19558
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19577
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
|
|
19559
19578
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19560
19579
|
*
|
|
19561
19580
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19578,7 +19597,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19578
19597
|
return __pyx_r;
|
|
19579
19598
|
}
|
|
19580
19599
|
|
|
19581
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19600
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
19582
19601
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19583
19602
|
*
|
|
19584
19603
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19602,7 +19621,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19602
19621
|
int __pyx_clineno = 0;
|
|
19603
19622
|
__Pyx_RefNannySetupContext("import_ufunc", 1);
|
|
19604
19623
|
|
|
19605
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19624
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19606
19625
|
*
|
|
19607
19626
|
* cdef inline int import_ufunc() except -1:
|
|
19608
19627
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19618,7 +19637,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19618
19637
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19619
19638
|
/*try:*/ {
|
|
19620
19639
|
|
|
19621
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19640
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
|
|
19622
19641
|
* cdef inline int import_ufunc() except -1:
|
|
19623
19642
|
* try:
|
|
19624
19643
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19627,7 +19646,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19627
19646
|
*/
|
|
19628
19647
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 997, __pyx_L3_error)
|
|
19629
19648
|
|
|
19630
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19649
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19631
19650
|
*
|
|
19632
19651
|
* cdef inline int import_ufunc() except -1:
|
|
19633
19652
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19641,7 +19660,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19641
19660
|
goto __pyx_L8_try_end;
|
|
19642
19661
|
__pyx_L3_error:;
|
|
19643
19662
|
|
|
19644
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19663
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
|
|
19645
19664
|
* try:
|
|
19646
19665
|
* _import_umath()
|
|
19647
19666
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19656,7 +19675,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19656
19675
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19657
19676
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19658
19677
|
|
|
19659
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19678
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
|
|
19660
19679
|
* _import_umath()
|
|
19661
19680
|
* except Exception:
|
|
19662
19681
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19671,7 +19690,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19671
19690
|
}
|
|
19672
19691
|
goto __pyx_L5_except_error;
|
|
19673
19692
|
|
|
19674
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19693
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
|
|
19675
19694
|
*
|
|
19676
19695
|
* cdef inline int import_ufunc() except -1:
|
|
19677
19696
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19687,7 +19706,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19687
19706
|
__pyx_L8_try_end:;
|
|
19688
19707
|
}
|
|
19689
19708
|
|
|
19690
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19709
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
|
|
19691
19710
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19692
19711
|
*
|
|
19693
19712
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19710,7 +19729,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19710
19729
|
return __pyx_r;
|
|
19711
19730
|
}
|
|
19712
19731
|
|
|
19713
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19732
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
|
|
19714
19733
|
*
|
|
19715
19734
|
*
|
|
19716
19735
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19721,7 +19740,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19721
19740
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
19722
19741
|
int __pyx_r;
|
|
19723
19742
|
|
|
19724
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19743
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
19725
19744
|
* bool
|
|
19726
19745
|
* """
|
|
19727
19746
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19731,7 +19750,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19731
19750
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
19732
19751
|
goto __pyx_L0;
|
|
19733
19752
|
|
|
19734
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19753
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
|
|
19735
19754
|
*
|
|
19736
19755
|
*
|
|
19737
19756
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19744,7 +19763,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19744
19763
|
return __pyx_r;
|
|
19745
19764
|
}
|
|
19746
19765
|
|
|
19747
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19766
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
19748
19767
|
*
|
|
19749
19768
|
*
|
|
19750
19769
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19755,7 +19774,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19755
19774
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
19756
19775
|
int __pyx_r;
|
|
19757
19776
|
|
|
19758
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19777
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
19759
19778
|
* bool
|
|
19760
19779
|
* """
|
|
19761
19780
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19765,7 +19784,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19765
19784
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
19766
19785
|
goto __pyx_L0;
|
|
19767
19786
|
|
|
19768
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19787
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
19769
19788
|
*
|
|
19770
19789
|
*
|
|
19771
19790
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19778,7 +19797,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19778
19797
|
return __pyx_r;
|
|
19779
19798
|
}
|
|
19780
19799
|
|
|
19781
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19800
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
19782
19801
|
*
|
|
19783
19802
|
*
|
|
19784
19803
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19789,7 +19808,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19789
19808
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
19790
19809
|
npy_datetime __pyx_r;
|
|
19791
19810
|
|
|
19792
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19811
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
|
|
19793
19812
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
19794
19813
|
* """
|
|
19795
19814
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19799,7 +19818,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19799
19818
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
19800
19819
|
goto __pyx_L0;
|
|
19801
19820
|
|
|
19802
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19821
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
19803
19822
|
*
|
|
19804
19823
|
*
|
|
19805
19824
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19812,7 +19831,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19812
19831
|
return __pyx_r;
|
|
19813
19832
|
}
|
|
19814
19833
|
|
|
19815
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19834
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
|
|
19816
19835
|
*
|
|
19817
19836
|
*
|
|
19818
19837
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19823,7 +19842,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19823
19842
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
19824
19843
|
npy_timedelta __pyx_r;
|
|
19825
19844
|
|
|
19826
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19845
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
|
|
19827
19846
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
19828
19847
|
* """
|
|
19829
19848
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19833,7 +19852,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19833
19852
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
19834
19853
|
goto __pyx_L0;
|
|
19835
19854
|
|
|
19836
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19855
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
|
|
19837
19856
|
*
|
|
19838
19857
|
*
|
|
19839
19858
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19846,7 +19865,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19846
19865
|
return __pyx_r;
|
|
19847
19866
|
}
|
|
19848
19867
|
|
|
19849
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19868
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
|
|
19850
19869
|
*
|
|
19851
19870
|
*
|
|
19852
19871
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19857,7 +19876,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19857
19876
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
19858
19877
|
NPY_DATETIMEUNIT __pyx_r;
|
|
19859
19878
|
|
|
19860
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19879
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1053
|
|
19861
19880
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
19862
19881
|
* """
|
|
19863
19882
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -19865,7 +19884,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
19865
19884
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
19866
19885
|
goto __pyx_L0;
|
|
19867
19886
|
|
|
19868
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
19887
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
|
|
19869
19888
|
*
|
|
19870
19889
|
*
|
|
19871
19890
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -21721,10 +21740,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
|
|
|
21721
21740
|
Py_ssize_t __pyx_v_itemsize;
|
|
21722
21741
|
int __pyx_v_dtype_signed;
|
|
21723
21742
|
Py_UCS4 __pyx_v_kind;
|
|
21724
|
-
int
|
|
21725
|
-
int
|
|
21726
|
-
int
|
|
21727
|
-
int
|
|
21743
|
+
int __pyx_v___pyx_fused_dtype_uint8_is_signed;
|
|
21744
|
+
int __pyx_v___pyx_fused_dtype_uint16_is_signed;
|
|
21745
|
+
int __pyx_v___pyx_fused_dtype_uint32_is_signed;
|
|
21746
|
+
int __pyx_v___pyx_fused_dtype_uint64_is_signed;
|
|
21728
21747
|
PyObject *__pyx_v_arg = NULL;
|
|
21729
21748
|
PyObject *__pyx_v_dtype = NULL;
|
|
21730
21749
|
PyObject *__pyx_v_arg_base = NULL;
|
|
@@ -21796,10 +21815,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
|
|
|
21796
21815
|
__pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
|
|
21797
21816
|
__pyx_t_1 = 0;
|
|
21798
21817
|
__pyx_v_itemsize = -1L;
|
|
21799
|
-
|
|
21800
|
-
|
|
21801
|
-
|
|
21802
|
-
|
|
21818
|
+
__pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_13localungapped_uint8)-1L) > 0));
|
|
21819
|
+
__pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_13localungapped_uint16)-1L) > 0));
|
|
21820
|
+
__pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_13localungapped_uint32)-1L) > 0));
|
|
21821
|
+
__pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_13localungapped_uint64)-1L) > 0));
|
|
21803
21822
|
if (unlikely(__pyx_v_args == Py_None)) {
|
|
21804
21823
|
PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
|
|
21805
21824
|
__PYX_ERR(0, 214, __pyx_L1_error)
|
|
@@ -21941,7 +21960,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
|
|
|
21941
21960
|
__pyx_t_2 = __pyx_t_4;
|
|
21942
21961
|
goto __pyx_L16_bool_binop_done;
|
|
21943
21962
|
}
|
|
21944
|
-
__pyx_t_4 = (!(
|
|
21963
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
|
|
21945
21964
|
__pyx_t_2 = __pyx_t_4;
|
|
21946
21965
|
__pyx_L16_bool_binop_done:;
|
|
21947
21966
|
if (__pyx_t_2) {
|
|
@@ -21964,7 +21983,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
|
|
|
21964
21983
|
__pyx_t_2 = __pyx_t_4;
|
|
21965
21984
|
goto __pyx_L20_bool_binop_done;
|
|
21966
21985
|
}
|
|
21967
|
-
__pyx_t_4 = (!(
|
|
21986
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
|
|
21968
21987
|
__pyx_t_2 = __pyx_t_4;
|
|
21969
21988
|
__pyx_L20_bool_binop_done:;
|
|
21970
21989
|
if (__pyx_t_2) {
|
|
@@ -21987,7 +22006,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
|
|
|
21987
22006
|
__pyx_t_2 = __pyx_t_4;
|
|
21988
22007
|
goto __pyx_L24_bool_binop_done;
|
|
21989
22008
|
}
|
|
21990
|
-
__pyx_t_4 = (!(
|
|
22009
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
|
|
21991
22010
|
__pyx_t_2 = __pyx_t_4;
|
|
21992
22011
|
__pyx_L24_bool_binop_done:;
|
|
21993
22012
|
if (__pyx_t_2) {
|
|
@@ -22010,7 +22029,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
|
|
|
22010
22029
|
__pyx_t_2 = __pyx_t_4;
|
|
22011
22030
|
goto __pyx_L28_bool_binop_done;
|
|
22012
22031
|
}
|
|
22013
|
-
__pyx_t_4 = (!(
|
|
22032
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
|
|
22014
22033
|
__pyx_t_2 = __pyx_t_4;
|
|
22015
22034
|
__pyx_L28_bool_binop_done:;
|
|
22016
22035
|
if (__pyx_t_2) {
|
|
@@ -22371,7 +22390,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
|
|
|
22371
22390
|
__pyx_t_2 = __pyx_t_4;
|
|
22372
22391
|
goto __pyx_L75_bool_binop_done;
|
|
22373
22392
|
}
|
|
22374
|
-
__pyx_t_4 = (!(
|
|
22393
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
|
|
22375
22394
|
__pyx_t_2 = __pyx_t_4;
|
|
22376
22395
|
__pyx_L75_bool_binop_done:;
|
|
22377
22396
|
if (__pyx_t_2) {
|
|
@@ -22394,7 +22413,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
|
|
|
22394
22413
|
__pyx_t_2 = __pyx_t_4;
|
|
22395
22414
|
goto __pyx_L79_bool_binop_done;
|
|
22396
22415
|
}
|
|
22397
|
-
__pyx_t_4 = (!(
|
|
22416
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
|
|
22398
22417
|
__pyx_t_2 = __pyx_t_4;
|
|
22399
22418
|
__pyx_L79_bool_binop_done:;
|
|
22400
22419
|
if (__pyx_t_2) {
|
|
@@ -22417,7 +22436,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
|
|
|
22417
22436
|
__pyx_t_2 = __pyx_t_4;
|
|
22418
22437
|
goto __pyx_L83_bool_binop_done;
|
|
22419
22438
|
}
|
|
22420
|
-
__pyx_t_4 = (!(
|
|
22439
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
|
|
22421
22440
|
__pyx_t_2 = __pyx_t_4;
|
|
22422
22441
|
__pyx_L83_bool_binop_done:;
|
|
22423
22442
|
if (__pyx_t_2) {
|
|
@@ -22440,7 +22459,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
|
|
|
22440
22459
|
__pyx_t_2 = __pyx_t_4;
|
|
22441
22460
|
goto __pyx_L87_bool_binop_done;
|
|
22442
22461
|
}
|
|
22443
|
-
__pyx_t_4 = (!(
|
|
22462
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
|
|
22444
22463
|
__pyx_t_2 = __pyx_t_4;
|
|
22445
22464
|
__pyx_L87_bool_binop_done:;
|
|
22446
22465
|
if (__pyx_t_2) {
|
|
@@ -29724,7 +29743,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
29724
29743
|
__Pyx_GOTREF(__pyx_tuple__8);
|
|
29725
29744
|
__Pyx_GIVEREF(__pyx_tuple__8);
|
|
29726
29745
|
|
|
29727
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
29746
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
|
|
29728
29747
|
* __pyx_import_array()
|
|
29729
29748
|
* except Exception:
|
|
29730
29749
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -29735,7 +29754,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
29735
29754
|
__Pyx_GOTREF(__pyx_tuple__9);
|
|
29736
29755
|
__Pyx_GIVEREF(__pyx_tuple__9);
|
|
29737
29756
|
|
|
29738
|
-
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-
|
|
29757
|
+
/* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-teuzpiwx/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
|
|
29739
29758
|
* _import_umath()
|
|
29740
29759
|
* except Exception:
|
|
29741
29760
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -30180,33 +30199,33 @@ static int __Pyx_modinit_type_import_code(void) {
|
|
|
30180
30199
|
/*--- Type import code ---*/
|
|
30181
30200
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
30182
30201
|
__Pyx_GOTREF(__pyx_t_1);
|
|
30183
|
-
__pyx_ptype_7cpython_4type_type =
|
|
30202
|
+
__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
|
30184
30203
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
30185
|
-
sizeof(PyTypeObject),
|
|
30204
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
30186
30205
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
30187
|
-
sizeof(PyTypeObject),
|
|
30206
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
30188
30207
|
#else
|
|
30189
|
-
sizeof(PyHeapTypeObject),
|
|
30208
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
|
|
30190
30209
|
#endif
|
|
30191
|
-
|
|
30210
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
30192
30211
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
30193
30212
|
__pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 203, __pyx_L1_error)
|
|
30194
30213
|
__Pyx_GOTREF(__pyx_t_1);
|
|
30195
|
-
__pyx_ptype_5numpy_dtype =
|
|
30196
|
-
__pyx_ptype_5numpy_flatiter =
|
|
30197
|
-
__pyx_ptype_5numpy_broadcast =
|
|
30198
|
-
__pyx_ptype_5numpy_ndarray =
|
|
30199
|
-
__pyx_ptype_5numpy_generic =
|
|
30200
|
-
__pyx_ptype_5numpy_number =
|
|
30201
|
-
__pyx_ptype_5numpy_integer =
|
|
30202
|
-
__pyx_ptype_5numpy_signedinteger =
|
|
30203
|
-
__pyx_ptype_5numpy_unsignedinteger =
|
|
30204
|
-
__pyx_ptype_5numpy_inexact =
|
|
30205
|
-
__pyx_ptype_5numpy_floating =
|
|
30206
|
-
__pyx_ptype_5numpy_complexfloating =
|
|
30207
|
-
__pyx_ptype_5numpy_flexible =
|
|
30208
|
-
__pyx_ptype_5numpy_character =
|
|
30209
|
-
__pyx_ptype_5numpy_ufunc =
|
|
30214
|
+
__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)
|
|
30215
|
+
__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)
|
|
30216
|
+
__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)
|
|
30217
|
+
__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)
|
|
30218
|
+
__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)
|
|
30219
|
+
__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)
|
|
30220
|
+
__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)
|
|
30221
|
+
__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)
|
|
30222
|
+
__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)
|
|
30223
|
+
__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)
|
|
30224
|
+
__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)
|
|
30225
|
+
__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)
|
|
30226
|
+
__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)
|
|
30227
|
+
__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)
|
|
30228
|
+
__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)
|
|
30210
30229
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
30211
30230
|
__Pyx_RefNannyFinishContext();
|
|
30212
30231
|
return 0;
|
|
@@ -31683,11 +31702,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
|
|
|
31683
31702
|
{
|
|
31684
31703
|
int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
|
|
31685
31704
|
if (unlikely(eq != 0)) {
|
|
31686
|
-
if (unlikely(eq < 0)) return NULL;
|
|
31705
|
+
if (unlikely(eq < 0)) return NULL;
|
|
31687
31706
|
return kwvalues[i];
|
|
31688
31707
|
}
|
|
31689
31708
|
}
|
|
31690
|
-
return NULL;
|
|
31709
|
+
return NULL;
|
|
31691
31710
|
}
|
|
31692
31711
|
#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
|
|
31693
31712
|
CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
|
|
@@ -31800,7 +31819,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
31800
31819
|
if (*name) {
|
|
31801
31820
|
values[name-argnames] = value;
|
|
31802
31821
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
31803
|
-
Py_INCREF(value);
|
|
31822
|
+
Py_INCREF(value);
|
|
31804
31823
|
Py_DECREF(key);
|
|
31805
31824
|
#endif
|
|
31806
31825
|
key = NULL;
|
|
@@ -31819,7 +31838,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
31819
31838
|
&& _PyString_Eq(**name, key)) {
|
|
31820
31839
|
values[name-argnames] = value;
|
|
31821
31840
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
31822
|
-
value = NULL;
|
|
31841
|
+
value = NULL;
|
|
31823
31842
|
#endif
|
|
31824
31843
|
break;
|
|
31825
31844
|
}
|
|
@@ -31851,7 +31870,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
31851
31870
|
if (cmp == 0) {
|
|
31852
31871
|
values[name-argnames] = value;
|
|
31853
31872
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
31854
|
-
value = NULL;
|
|
31873
|
+
value = NULL;
|
|
31855
31874
|
#endif
|
|
31856
31875
|
break;
|
|
31857
31876
|
}
|
|
@@ -33750,9 +33769,10 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_Unicode(PyObject *obj) {
|
|
|
33750
33769
|
|
|
33751
33770
|
/* IterFinish */
|
|
33752
33771
|
static CYTHON_INLINE int __Pyx_IterFinish(void) {
|
|
33772
|
+
PyObject* exc_type;
|
|
33753
33773
|
__Pyx_PyThreadState_declare
|
|
33754
33774
|
__Pyx_PyThreadState_assign
|
|
33755
|
-
|
|
33775
|
+
exc_type = __Pyx_PyErr_CurrentExceptionType();
|
|
33756
33776
|
if (unlikely(exc_type)) {
|
|
33757
33777
|
if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
|
|
33758
33778
|
return -1;
|
|
@@ -34309,9 +34329,10 @@ static CYTHON_INLINE int __Pyx_dict_iter_next(
|
|
|
34309
34329
|
|
|
34310
34330
|
/* UnpackUnboundCMethod */
|
|
34311
34331
|
static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *args, PyObject *kwargs) {
|
|
34332
|
+
PyObject *result;
|
|
34312
34333
|
PyObject *selfless_args = PyTuple_GetSlice(args, 1, PyTuple_Size(args));
|
|
34313
34334
|
if (unlikely(!selfless_args)) return NULL;
|
|
34314
|
-
|
|
34335
|
+
result = PyObject_Call(method, selfless_args, kwargs);
|
|
34315
34336
|
Py_DECREF(selfless_args);
|
|
34316
34337
|
return result;
|
|
34317
34338
|
}
|
|
@@ -35028,10 +35049,10 @@ __PYX_GOOD:
|
|
|
35028
35049
|
#endif
|
|
35029
35050
|
|
|
35030
35051
|
/* TypeImport */
|
|
35031
|
-
#ifndef
|
|
35032
|
-
#define
|
|
35033
|
-
static PyTypeObject *
|
|
35034
|
-
size_t size, size_t alignment, enum
|
|
35052
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_0_10
|
|
35053
|
+
#define __PYX_HAVE_RT_ImportType_3_0_10
|
|
35054
|
+
static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
|
|
35055
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
|
|
35035
35056
|
{
|
|
35036
35057
|
PyObject *result = 0;
|
|
35037
35058
|
char warning[200];
|
|
@@ -35085,7 +35106,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
35085
35106
|
module_name, class_name, size, basicsize+itemsize);
|
|
35086
35107
|
goto bad;
|
|
35087
35108
|
}
|
|
35088
|
-
if (check_size ==
|
|
35109
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
|
|
35089
35110
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
35090
35111
|
PyErr_Format(PyExc_ValueError,
|
|
35091
35112
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -35093,7 +35114,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
35093
35114
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
35094
35115
|
goto bad;
|
|
35095
35116
|
}
|
|
35096
|
-
else if (check_size ==
|
|
35117
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
|
|
35097
35118
|
PyOS_snprintf(warning, sizeof(warning),
|
|
35098
35119
|
"%s.%s size changed, may indicate binary incompatibility. "
|
|
35099
35120
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -36093,7 +36114,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
|
|
|
36093
36114
|
default:
|
|
36094
36115
|
return NULL;
|
|
36095
36116
|
}
|
|
36096
|
-
return ((
|
|
36117
|
+
return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
|
|
36097
36118
|
}
|
|
36098
36119
|
static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
|
|
36099
36120
|
{
|
|
@@ -36910,7 +36931,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
|
|
|
36910
36931
|
#else
|
|
36911
36932
|
py_code = PyCode_NewEmpty(filename, funcname, py_line);
|
|
36912
36933
|
#endif
|
|
36913
|
-
Py_XDECREF(py_funcname);
|
|
36934
|
+
Py_XDECREF(py_funcname);
|
|
36914
36935
|
return py_code;
|
|
36915
36936
|
bad:
|
|
36916
36937
|
Py_XDECREF(py_funcname);
|