biotite 0.39.0__cp312-cp312-macosx_11_0_arm64.whl → 0.41.0__cp312-cp312-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of biotite might be problematic. Click here for more details.
- biotite/__init__.py +3 -3
- biotite/application/dssp/app.py +18 -18
- biotite/database/pubchem/download.py +23 -23
- biotite/database/pubchem/query.py +7 -7
- biotite/database/rcsb/download.py +19 -14
- biotite/file.py +17 -9
- biotite/sequence/align/banded.c +256 -235
- biotite/sequence/align/banded.cpython-312-darwin.so +0 -0
- biotite/sequence/align/cigar.py +60 -15
- biotite/sequence/align/kmeralphabet.c +241 -220
- biotite/sequence/align/kmeralphabet.cpython-312-darwin.so +0 -0
- biotite/sequence/align/kmersimilarity.c +213 -194
- biotite/sequence/align/kmersimilarity.cpython-312-darwin.so +0 -0
- biotite/sequence/align/kmertable.cpp +231 -203
- biotite/sequence/align/kmertable.cpython-312-darwin.so +0 -0
- biotite/sequence/align/localgapped.c +256 -235
- biotite/sequence/align/localgapped.cpython-312-darwin.so +0 -0
- biotite/sequence/align/localungapped.c +233 -212
- biotite/sequence/align/localungapped.cpython-312-darwin.so +0 -0
- biotite/sequence/align/multiple.c +253 -232
- biotite/sequence/align/multiple.cpython-312-darwin.so +0 -0
- biotite/sequence/align/pairwise.c +272 -251
- biotite/sequence/align/pairwise.cpython-312-darwin.so +0 -0
- biotite/sequence/align/permutation.c +213 -194
- biotite/sequence/align/permutation.cpython-312-darwin.so +0 -0
- biotite/sequence/align/selector.c +215 -195
- biotite/sequence/align/selector.cpython-312-darwin.so +0 -0
- biotite/sequence/align/tracetable.c +213 -193
- biotite/sequence/align/tracetable.cpython-312-darwin.so +0 -0
- biotite/sequence/annotation.py +2 -2
- biotite/sequence/codec.c +233 -212
- biotite/sequence/codec.cpython-312-darwin.so +0 -0
- biotite/sequence/io/fasta/convert.py +27 -24
- biotite/sequence/phylo/nj.c +213 -194
- biotite/sequence/phylo/nj.cpython-312-darwin.so +0 -0
- biotite/sequence/phylo/tree.c +225 -200
- biotite/sequence/phylo/tree.cpython-312-darwin.so +0 -0
- biotite/sequence/phylo/upgma.c +213 -194
- biotite/sequence/phylo/upgma.cpython-312-darwin.so +0 -0
- biotite/structure/__init__.py +2 -0
- biotite/structure/basepairs.py +7 -12
- biotite/structure/bonds.c +1435 -1277
- biotite/structure/bonds.cpython-312-darwin.so +0 -0
- biotite/structure/celllist.c +215 -195
- biotite/structure/celllist.cpython-312-darwin.so +0 -0
- biotite/structure/charges.c +1050 -1099
- biotite/structure/charges.cpython-312-darwin.so +0 -0
- biotite/structure/dotbracket.py +2 -0
- biotite/structure/filter.py +30 -37
- biotite/structure/info/__init__.py +5 -8
- biotite/structure/info/atoms.py +31 -68
- biotite/structure/info/bonds.py +47 -101
- biotite/structure/info/ccd/README.rst +8 -0
- biotite/structure/info/ccd/amino_acids.txt +1663 -0
- biotite/structure/info/ccd/carbohydrates.txt +1135 -0
- biotite/structure/info/ccd/components.bcif +0 -0
- biotite/structure/info/ccd/nucleotides.txt +798 -0
- biotite/structure/info/ccd.py +95 -0
- biotite/structure/info/groups.py +90 -0
- biotite/structure/info/masses.py +21 -20
- biotite/structure/info/misc.py +78 -25
- biotite/structure/info/standardize.py +17 -12
- biotite/structure/integrity.py +19 -70
- biotite/structure/io/__init__.py +2 -4
- biotite/structure/io/ctab.py +12 -106
- biotite/structure/io/general.py +167 -181
- biotite/structure/io/gro/file.py +16 -16
- biotite/structure/io/mmtf/__init__.py +3 -0
- biotite/structure/io/mmtf/convertarray.c +217 -196
- biotite/structure/io/mmtf/convertarray.cpython-312-darwin.so +0 -0
- biotite/structure/io/mmtf/convertfile.c +215 -195
- biotite/structure/io/mmtf/convertfile.cpython-312-darwin.so +0 -0
- biotite/structure/io/mmtf/decode.c +223 -202
- biotite/structure/io/mmtf/decode.cpython-312-darwin.so +0 -0
- biotite/structure/io/mmtf/encode.c +213 -194
- biotite/structure/io/mmtf/encode.cpython-312-darwin.so +0 -0
- biotite/structure/io/mmtf/file.py +34 -26
- biotite/structure/io/mol/__init__.py +4 -2
- biotite/structure/io/mol/convert.py +71 -7
- biotite/structure/io/mol/ctab.py +414 -0
- biotite/structure/io/mol/header.py +116 -0
- biotite/structure/io/mol/{file.py → mol.py} +69 -82
- biotite/structure/io/mol/sdf.py +909 -0
- biotite/structure/io/npz/__init__.py +3 -0
- biotite/structure/io/npz/file.py +21 -18
- biotite/structure/io/pdb/__init__.py +3 -3
- biotite/structure/io/pdb/file.py +89 -34
- biotite/structure/io/pdb/hybrid36.c +63 -43
- biotite/structure/io/pdb/hybrid36.cpython-312-darwin.so +0 -0
- biotite/structure/io/pdbqt/file.py +32 -32
- biotite/structure/io/pdbx/__init__.py +12 -6
- biotite/structure/io/pdbx/bcif.py +648 -0
- biotite/structure/io/pdbx/cif.py +1032 -0
- biotite/structure/io/pdbx/component.py +246 -0
- biotite/structure/io/pdbx/convert.py +858 -386
- biotite/structure/io/pdbx/encoding.c +112803 -0
- biotite/structure/io/pdbx/encoding.cpython-312-darwin.so +0 -0
- biotite/structure/io/pdbx/legacy.py +267 -0
- biotite/structure/molecules.py +151 -151
- biotite/structure/repair.py +253 -0
- biotite/structure/sasa.c +213 -194
- biotite/structure/sasa.cpython-312-darwin.so +0 -0
- biotite/structure/sequence.py +112 -0
- biotite/structure/superimpose.py +618 -116
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/METADATA +3 -3
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/RECORD +109 -103
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/WHEEL +1 -1
- biotite/structure/info/amino_acids.json +0 -1556
- biotite/structure/info/amino_acids.py +0 -42
- biotite/structure/info/carbohydrates.json +0 -1122
- biotite/structure/info/carbohydrates.py +0 -39
- biotite/structure/info/intra_bonds.msgpack +0 -0
- biotite/structure/info/link_types.msgpack +0 -1
- biotite/structure/info/nucleotides.json +0 -772
- biotite/structure/info/nucleotides.py +0 -39
- biotite/structure/info/residue_masses.msgpack +0 -0
- biotite/structure/info/residue_names.msgpack +0 -3
- biotite/structure/info/residues.msgpack +0 -0
- biotite/structure/io/pdbx/file.py +0 -652
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/LICENSE.rst +0 -0
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/top_level.txt +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Generated by Cython 3.0.
|
|
1
|
+
/* Generated by Cython 3.0.10 */
|
|
2
2
|
|
|
3
3
|
/* BEGIN: Cython Metadata
|
|
4
4
|
{
|
|
@@ -37,10 +37,10 @@ END: Cython Metadata */
|
|
|
37
37
|
#else
|
|
38
38
|
#define __PYX_EXTRA_ABI_MODULE_NAME ""
|
|
39
39
|
#endif
|
|
40
|
-
#define CYTHON_ABI "
|
|
40
|
+
#define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
|
|
41
41
|
#define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
|
|
42
42
|
#define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
|
|
43
|
-
#define CYTHON_HEX_VERSION
|
|
43
|
+
#define CYTHON_HEX_VERSION 0x03000AF0
|
|
44
44
|
#define CYTHON_FUTURE_DIVISION 1
|
|
45
45
|
#include <stddef.h>
|
|
46
46
|
#ifndef offsetof
|
|
@@ -132,6 +132,8 @@ END: Cython Metadata */
|
|
|
132
132
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
133
133
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
134
134
|
#endif
|
|
135
|
+
#undef CYTHON_USE_FREELISTS
|
|
136
|
+
#define CYTHON_USE_FREELISTS 0
|
|
135
137
|
#elif defined(PYPY_VERSION)
|
|
136
138
|
#define CYTHON_COMPILING_IN_PYPY 1
|
|
137
139
|
#define CYTHON_COMPILING_IN_CPYTHON 0
|
|
@@ -193,6 +195,8 @@ END: Cython Metadata */
|
|
|
193
195
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
194
196
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
195
197
|
#endif
|
|
198
|
+
#undef CYTHON_USE_FREELISTS
|
|
199
|
+
#define CYTHON_USE_FREELISTS 0
|
|
196
200
|
#elif defined(CYTHON_LIMITED_API)
|
|
197
201
|
#ifdef Py_LIMITED_API
|
|
198
202
|
#undef __PYX_LIMITED_VERSION_HEX
|
|
@@ -254,6 +258,8 @@ END: Cython Metadata */
|
|
|
254
258
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
255
259
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
256
260
|
#endif
|
|
261
|
+
#undef CYTHON_USE_FREELISTS
|
|
262
|
+
#define CYTHON_USE_FREELISTS 0
|
|
257
263
|
#elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
|
|
258
264
|
#define CYTHON_COMPILING_IN_PYPY 0
|
|
259
265
|
#define CYTHON_COMPILING_IN_CPYTHON 0
|
|
@@ -263,11 +269,17 @@ END: Cython Metadata */
|
|
|
263
269
|
#ifndef CYTHON_USE_TYPE_SLOTS
|
|
264
270
|
#define CYTHON_USE_TYPE_SLOTS 1
|
|
265
271
|
#endif
|
|
272
|
+
#ifndef CYTHON_USE_TYPE_SPECS
|
|
273
|
+
#define CYTHON_USE_TYPE_SPECS 0
|
|
274
|
+
#endif
|
|
266
275
|
#undef CYTHON_USE_PYTYPE_LOOKUP
|
|
267
276
|
#define CYTHON_USE_PYTYPE_LOOKUP 0
|
|
268
277
|
#ifndef CYTHON_USE_ASYNC_SLOTS
|
|
269
278
|
#define CYTHON_USE_ASYNC_SLOTS 1
|
|
270
279
|
#endif
|
|
280
|
+
#ifndef CYTHON_USE_PYLONG_INTERNALS
|
|
281
|
+
#define CYTHON_USE_PYLONG_INTERNALS 0
|
|
282
|
+
#endif
|
|
271
283
|
#undef CYTHON_USE_PYLIST_INTERNALS
|
|
272
284
|
#define CYTHON_USE_PYLIST_INTERNALS 0
|
|
273
285
|
#ifndef CYTHON_USE_UNICODE_INTERNALS
|
|
@@ -275,8 +287,6 @@ END: Cython Metadata */
|
|
|
275
287
|
#endif
|
|
276
288
|
#undef CYTHON_USE_UNICODE_WRITER
|
|
277
289
|
#define CYTHON_USE_UNICODE_WRITER 0
|
|
278
|
-
#undef CYTHON_USE_PYLONG_INTERNALS
|
|
279
|
-
#define CYTHON_USE_PYLONG_INTERNALS 0
|
|
280
290
|
#ifndef CYTHON_AVOID_BORROWED_REFS
|
|
281
291
|
#define CYTHON_AVOID_BORROWED_REFS 0
|
|
282
292
|
#endif
|
|
@@ -288,11 +298,22 @@ END: Cython Metadata */
|
|
|
288
298
|
#endif
|
|
289
299
|
#undef CYTHON_FAST_THREAD_STATE
|
|
290
300
|
#define CYTHON_FAST_THREAD_STATE 0
|
|
301
|
+
#undef CYTHON_FAST_GIL
|
|
302
|
+
#define CYTHON_FAST_GIL 0
|
|
303
|
+
#ifndef CYTHON_METH_FASTCALL
|
|
304
|
+
#define CYTHON_METH_FASTCALL 1
|
|
305
|
+
#endif
|
|
291
306
|
#undef CYTHON_FAST_PYCALL
|
|
292
307
|
#define CYTHON_FAST_PYCALL 0
|
|
308
|
+
#ifndef CYTHON_PEP487_INIT_SUBCLASS
|
|
309
|
+
#define CYTHON_PEP487_INIT_SUBCLASS 1
|
|
310
|
+
#endif
|
|
293
311
|
#ifndef CYTHON_PEP489_MULTI_PHASE_INIT
|
|
294
312
|
#define CYTHON_PEP489_MULTI_PHASE_INIT 1
|
|
295
313
|
#endif
|
|
314
|
+
#ifndef CYTHON_USE_MODULE_STATE
|
|
315
|
+
#define CYTHON_USE_MODULE_STATE 0
|
|
316
|
+
#endif
|
|
296
317
|
#ifndef CYTHON_USE_TP_FINALIZE
|
|
297
318
|
#define CYTHON_USE_TP_FINALIZE 1
|
|
298
319
|
#endif
|
|
@@ -300,6 +321,12 @@ END: Cython Metadata */
|
|
|
300
321
|
#define CYTHON_USE_DICT_VERSIONS 0
|
|
301
322
|
#undef CYTHON_USE_EXC_INFO_STACK
|
|
302
323
|
#define CYTHON_USE_EXC_INFO_STACK 0
|
|
324
|
+
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
325
|
+
#define CYTHON_UPDATE_DESCRIPTOR_DOC 1
|
|
326
|
+
#endif
|
|
327
|
+
#ifndef CYTHON_USE_FREELISTS
|
|
328
|
+
#define CYTHON_USE_FREELISTS 0
|
|
329
|
+
#endif
|
|
303
330
|
#else
|
|
304
331
|
#define CYTHON_COMPILING_IN_PYPY 0
|
|
305
332
|
#define CYTHON_COMPILING_IN_CPYTHON 1
|
|
@@ -390,6 +417,9 @@ END: Cython Metadata */
|
|
|
390
417
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
391
418
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 1
|
|
392
419
|
#endif
|
|
420
|
+
#ifndef CYTHON_USE_FREELISTS
|
|
421
|
+
#define CYTHON_USE_FREELISTS 1
|
|
422
|
+
#endif
|
|
393
423
|
#endif
|
|
394
424
|
#if !defined(CYTHON_FAST_PYCCALL)
|
|
395
425
|
#define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
|
|
@@ -582,14 +612,14 @@ END: Cython Metadata */
|
|
|
582
612
|
PyObject *exception_table = NULL;
|
|
583
613
|
PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
|
|
584
614
|
#if __PYX_LIMITED_VERSION_HEX < 0x030B0000
|
|
585
|
-
PyObject *version_info;
|
|
615
|
+
PyObject *version_info;
|
|
586
616
|
PyObject *py_minor_version = NULL;
|
|
587
617
|
#endif
|
|
588
618
|
long minor_version = 0;
|
|
589
619
|
PyObject *type, *value, *traceback;
|
|
590
620
|
PyErr_Fetch(&type, &value, &traceback);
|
|
591
621
|
#if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
|
|
592
|
-
minor_version = 11;
|
|
622
|
+
minor_version = 11;
|
|
593
623
|
#else
|
|
594
624
|
if (!(version_info = PySys_GetObject("version_info"))) goto end;
|
|
595
625
|
if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
|
|
@@ -647,7 +677,7 @@ END: Cython Metadata */
|
|
|
647
677
|
PyObject *fv, PyObject *cell, PyObject* fn,
|
|
648
678
|
PyObject *name, int fline, PyObject *lnos) {
|
|
649
679
|
PyCodeObject *result;
|
|
650
|
-
PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
|
|
680
|
+
PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
|
|
651
681
|
if (!empty_bytes) return NULL;
|
|
652
682
|
result =
|
|
653
683
|
#if PY_VERSION_HEX >= 0x030C0000
|
|
@@ -733,8 +763,13 @@ END: Cython Metadata */
|
|
|
733
763
|
typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
|
|
734
764
|
Py_ssize_t nargs, PyObject *kwnames);
|
|
735
765
|
#else
|
|
736
|
-
#
|
|
737
|
-
#define
|
|
766
|
+
#if PY_VERSION_HEX >= 0x030d00A4
|
|
767
|
+
# define __Pyx_PyCFunctionFast PyCFunctionFast
|
|
768
|
+
# define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
|
|
769
|
+
#else
|
|
770
|
+
# define __Pyx_PyCFunctionFast _PyCFunctionFast
|
|
771
|
+
# define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
|
|
772
|
+
#endif
|
|
738
773
|
#endif
|
|
739
774
|
#if CYTHON_METH_FASTCALL
|
|
740
775
|
#define __Pyx_METH_FASTCALL METH_FASTCALL
|
|
@@ -1086,7 +1121,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
|
|
|
1086
1121
|
#define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
|
|
1087
1122
|
#define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
|
|
1088
1123
|
#endif
|
|
1089
|
-
#if
|
|
1124
|
+
#if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
|
|
1090
1125
|
#define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
|
|
1091
1126
|
#else
|
|
1092
1127
|
static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
|
|
@@ -1173,7 +1208,7 @@ static CYTHON_INLINE float __PYX_NAN() {
|
|
|
1173
1208
|
#endif
|
|
1174
1209
|
|
|
1175
1210
|
#define __PYX_MARK_ERR_POS(f_index, lineno) \
|
|
1176
|
-
{ __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__;
|
|
1211
|
+
{ __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
|
|
1177
1212
|
#define __PYX_ERR(f_index, lineno, Ln_error) \
|
|
1178
1213
|
{ __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
|
|
1179
1214
|
|
|
@@ -1288,24 +1323,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
|
|
|
1288
1323
|
#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
|
|
1289
1324
|
#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
|
|
1290
1325
|
#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
|
|
1291
|
-
#if CYTHON_COMPILING_IN_LIMITED_API
|
|
1292
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
|
|
1293
|
-
{
|
|
1294
|
-
const wchar_t *u_end = u;
|
|
1295
|
-
while (*u_end++) ;
|
|
1296
|
-
return (size_t)(u_end - u - 1);
|
|
1297
|
-
}
|
|
1298
|
-
#else
|
|
1299
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
|
|
1300
|
-
{
|
|
1301
|
-
const Py_UNICODE *u_end = u;
|
|
1302
|
-
while (*u_end++) ;
|
|
1303
|
-
return (size_t)(u_end - u - 1);
|
|
1304
|
-
}
|
|
1305
|
-
#endif
|
|
1306
1326
|
#define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
|
|
1307
|
-
#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
|
|
1308
|
-
#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
|
|
1309
1327
|
#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
|
|
1310
1328
|
#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
|
|
1311
1329
|
#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
|
|
@@ -1355,7 +1373,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
|
|
|
1355
1373
|
#endif
|
|
1356
1374
|
typedef Py_ssize_t __Pyx_compact_pylong;
|
|
1357
1375
|
typedef size_t __Pyx_compact_upylong;
|
|
1358
|
-
#else
|
|
1376
|
+
#else
|
|
1359
1377
|
#define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
|
|
1360
1378
|
#define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
|
|
1361
1379
|
#define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
|
|
@@ -1645,7 +1663,7 @@ typedef struct {
|
|
|
1645
1663
|
|
|
1646
1664
|
/* #### Code section: numeric_typedefs ### */
|
|
1647
1665
|
|
|
1648
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1666
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":730
|
|
1649
1667
|
* # in Cython to enable them only on the right systems.
|
|
1650
1668
|
*
|
|
1651
1669
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
|
@@ -1654,7 +1672,7 @@ typedef struct {
|
|
|
1654
1672
|
*/
|
|
1655
1673
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1656
1674
|
|
|
1657
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1675
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":731
|
|
1658
1676
|
*
|
|
1659
1677
|
* ctypedef npy_int8 int8_t
|
|
1660
1678
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
|
@@ -1663,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
|
1663
1681
|
*/
|
|
1664
1682
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1665
1683
|
|
|
1666
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1684
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":732
|
|
1667
1685
|
* ctypedef npy_int8 int8_t
|
|
1668
1686
|
* ctypedef npy_int16 int16_t
|
|
1669
1687
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
|
@@ -1672,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
|
1672
1690
|
*/
|
|
1673
1691
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1674
1692
|
|
|
1675
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1693
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":733
|
|
1676
1694
|
* ctypedef npy_int16 int16_t
|
|
1677
1695
|
* ctypedef npy_int32 int32_t
|
|
1678
1696
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
|
@@ -1681,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
|
1681
1699
|
*/
|
|
1682
1700
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1683
1701
|
|
|
1684
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1702
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":737
|
|
1685
1703
|
* #ctypedef npy_int128 int128_t
|
|
1686
1704
|
*
|
|
1687
1705
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
|
@@ -1690,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
|
1690
1708
|
*/
|
|
1691
1709
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1692
1710
|
|
|
1693
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1711
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":738
|
|
1694
1712
|
*
|
|
1695
1713
|
* ctypedef npy_uint8 uint8_t
|
|
1696
1714
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
|
@@ -1699,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
|
1699
1717
|
*/
|
|
1700
1718
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1701
1719
|
|
|
1702
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1720
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":739
|
|
1703
1721
|
* ctypedef npy_uint8 uint8_t
|
|
1704
1722
|
* ctypedef npy_uint16 uint16_t
|
|
1705
1723
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
|
@@ -1708,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
|
1708
1726
|
*/
|
|
1709
1727
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1710
1728
|
|
|
1711
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1729
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":740
|
|
1712
1730
|
* ctypedef npy_uint16 uint16_t
|
|
1713
1731
|
* ctypedef npy_uint32 uint32_t
|
|
1714
1732
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
|
@@ -1717,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
|
1717
1735
|
*/
|
|
1718
1736
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1719
1737
|
|
|
1720
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1738
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":744
|
|
1721
1739
|
* #ctypedef npy_uint128 uint128_t
|
|
1722
1740
|
*
|
|
1723
1741
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
|
@@ -1726,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
|
1726
1744
|
*/
|
|
1727
1745
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1728
1746
|
|
|
1729
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1747
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":745
|
|
1730
1748
|
*
|
|
1731
1749
|
* ctypedef npy_float32 float32_t
|
|
1732
1750
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
|
@@ -1735,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
|
1735
1753
|
*/
|
|
1736
1754
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1737
1755
|
|
|
1738
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1756
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":754
|
|
1739
1757
|
* # The int types are mapped a bit surprising --
|
|
1740
1758
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1741
1759
|
* ctypedef npy_long int_t # <<<<<<<<<<<<<<
|
|
@@ -1744,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
|
1744
1762
|
*/
|
|
1745
1763
|
typedef npy_long __pyx_t_5numpy_int_t;
|
|
1746
1764
|
|
|
1747
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1765
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":755
|
|
1748
1766
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1749
1767
|
* ctypedef npy_long int_t
|
|
1750
1768
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
|
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
|
|
|
1753
1771
|
*/
|
|
1754
1772
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1755
1773
|
|
|
1756
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1774
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":757
|
|
1757
1775
|
* ctypedef npy_longlong longlong_t
|
|
1758
1776
|
*
|
|
1759
1777
|
* ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
|
|
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
|
1762
1780
|
*/
|
|
1763
1781
|
typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
1764
1782
|
|
|
1765
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1783
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":758
|
|
1766
1784
|
*
|
|
1767
1785
|
* ctypedef npy_ulong uint_t
|
|
1768
1786
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
|
@@ -1771,7 +1789,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
|
1771
1789
|
*/
|
|
1772
1790
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1773
1791
|
|
|
1774
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1792
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":760
|
|
1775
1793
|
* ctypedef npy_ulonglong ulonglong_t
|
|
1776
1794
|
*
|
|
1777
1795
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
|
@@ -1780,7 +1798,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
|
1780
1798
|
*/
|
|
1781
1799
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1782
1800
|
|
|
1783
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1801
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":761
|
|
1784
1802
|
*
|
|
1785
1803
|
* ctypedef npy_intp intp_t
|
|
1786
1804
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
|
@@ -1789,7 +1807,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
|
1789
1807
|
*/
|
|
1790
1808
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1791
1809
|
|
|
1792
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1810
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":763
|
|
1793
1811
|
* ctypedef npy_uintp uintp_t
|
|
1794
1812
|
*
|
|
1795
1813
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
|
@@ -1798,7 +1816,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
|
1798
1816
|
*/
|
|
1799
1817
|
typedef npy_double __pyx_t_5numpy_float_t;
|
|
1800
1818
|
|
|
1801
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1819
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":764
|
|
1802
1820
|
*
|
|
1803
1821
|
* ctypedef npy_double float_t
|
|
1804
1822
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
|
@@ -1807,7 +1825,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
|
1807
1825
|
*/
|
|
1808
1826
|
typedef npy_double __pyx_t_5numpy_double_t;
|
|
1809
1827
|
|
|
1810
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1828
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":765
|
|
1811
1829
|
* ctypedef npy_double float_t
|
|
1812
1830
|
* ctypedef npy_double double_t
|
|
1813
1831
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1902,7 +1920,7 @@ struct __pyx_MemviewEnum_obj;
|
|
|
1902
1920
|
struct __pyx_memoryview_obj;
|
|
1903
1921
|
struct __pyx_memoryviewslice_obj;
|
|
1904
1922
|
|
|
1905
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1923
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":767
|
|
1906
1924
|
* ctypedef npy_longdouble longdouble_t
|
|
1907
1925
|
*
|
|
1908
1926
|
* ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
|
|
@@ -1911,7 +1929,7 @@ struct __pyx_memoryviewslice_obj;
|
|
|
1911
1929
|
*/
|
|
1912
1930
|
typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
1913
1931
|
|
|
1914
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1932
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":768
|
|
1915
1933
|
*
|
|
1916
1934
|
* ctypedef npy_cfloat cfloat_t
|
|
1917
1935
|
* ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1920,7 +1938,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
|
1920
1938
|
*/
|
|
1921
1939
|
typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
1922
1940
|
|
|
1923
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1941
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":769
|
|
1924
1942
|
* ctypedef npy_cfloat cfloat_t
|
|
1925
1943
|
* ctypedef npy_cdouble cdouble_t
|
|
1926
1944
|
* ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1929,7 +1947,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
|
1929
1947
|
*/
|
|
1930
1948
|
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
|
|
1931
1949
|
|
|
1932
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1950
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1933
1951
|
* ctypedef npy_clongdouble clongdouble_t
|
|
1934
1952
|
*
|
|
1935
1953
|
* ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
|
|
@@ -2289,8 +2307,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2289
2307
|
#define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
|
|
2290
2308
|
#define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
|
|
2291
2309
|
#else
|
|
2292
|
-
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2293
|
-
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2310
|
+
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2311
|
+
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2294
2312
|
#endif
|
|
2295
2313
|
#define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
|
|
2296
2314
|
#define __Pyx_KwValues_VARARGS(args, nargs) NULL
|
|
@@ -2306,8 +2324,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2306
2324
|
#else
|
|
2307
2325
|
#define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
|
|
2308
2326
|
#endif
|
|
2309
|
-
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg
|
|
2310
|
-
|
|
2327
|
+
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
|
|
2328
|
+
to have the same reference counting */
|
|
2329
|
+
#define __Pyx_Arg_XDECREF_FASTCALL(arg)
|
|
2311
2330
|
#else
|
|
2312
2331
|
#define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
|
|
2313
2332
|
#define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
|
|
@@ -2960,22 +2979,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
|
|
|
2960
2979
|
#endif
|
|
2961
2980
|
|
|
2962
2981
|
/* TypeImport.proto */
|
|
2963
|
-
#ifndef
|
|
2964
|
-
#define
|
|
2982
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2983
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2965
2984
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
2966
2985
|
#include <stdalign.h>
|
|
2967
2986
|
#endif
|
|
2968
2987
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
2969
|
-
#define
|
|
2988
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
|
|
2970
2989
|
#else
|
|
2971
|
-
#define
|
|
2990
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
|
|
2972
2991
|
#endif
|
|
2973
|
-
enum
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2992
|
+
enum __Pyx_ImportType_CheckSize_3_0_10 {
|
|
2993
|
+
__Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
|
|
2994
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
|
|
2995
|
+
__Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
|
|
2977
2996
|
};
|
|
2978
|
-
static PyTypeObject *
|
|
2997
|
+
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);
|
|
2979
2998
|
#endif
|
|
2980
2999
|
|
|
2981
3000
|
/* FetchSharedCythonModule.proto */
|
|
@@ -3068,7 +3087,7 @@ typedef struct {
|
|
|
3068
3087
|
#endif
|
|
3069
3088
|
void *defaults;
|
|
3070
3089
|
int defaults_pyobjects;
|
|
3071
|
-
size_t defaults_size;
|
|
3090
|
+
size_t defaults_size;
|
|
3072
3091
|
int flags;
|
|
3073
3092
|
PyObject *defaults_tuple;
|
|
3074
3093
|
PyObject *defaults_kwdict;
|
|
@@ -3437,7 +3456,7 @@ static unsigned long __Pyx_get_runtime_version(void);
|
|
|
3437
3456
|
static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt_version, int allow_newer);
|
|
3438
3457
|
|
|
3439
3458
|
/* FunctionImport.proto */
|
|
3440
|
-
static int
|
|
3459
|
+
static int __Pyx_ImportFunction_3_0_10(PyObject *module, const char *funcname, void (**f)(void), const char *sig);
|
|
3441
3460
|
|
|
3442
3461
|
/* InitStrings.proto */
|
|
3443
3462
|
static int __Pyx_InitStrings(__Pyx_StringTabEntry *t);
|
|
@@ -19245,7 +19264,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
19245
19264
|
return __pyx_r;
|
|
19246
19265
|
}
|
|
19247
19266
|
|
|
19248
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19267
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
|
|
19249
19268
|
*
|
|
19250
19269
|
* @property
|
|
19251
19270
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19256,7 +19275,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
19256
19275
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
19257
19276
|
PyObject *__pyx_r;
|
|
19258
19277
|
|
|
19259
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19278
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":248
|
|
19260
19279
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
19261
19280
|
* """
|
|
19262
19281
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -19266,7 +19285,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
19266
19285
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
19267
19286
|
goto __pyx_L0;
|
|
19268
19287
|
|
|
19269
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19288
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
|
|
19270
19289
|
*
|
|
19271
19290
|
* @property
|
|
19272
19291
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19279,7 +19298,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
19279
19298
|
return __pyx_r;
|
|
19280
19299
|
}
|
|
19281
19300
|
|
|
19282
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19301
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
|
|
19283
19302
|
*
|
|
19284
19303
|
* @property
|
|
19285
19304
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -19293,7 +19312,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19293
19312
|
PyArray_Descr *__pyx_t_1;
|
|
19294
19313
|
__Pyx_RefNannySetupContext("descr", 1);
|
|
19295
19314
|
|
|
19296
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19315
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":254
|
|
19297
19316
|
* """Returns an owned reference to the dtype of the array.
|
|
19298
19317
|
* """
|
|
19299
19318
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -19306,7 +19325,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19306
19325
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
19307
19326
|
goto __pyx_L0;
|
|
19308
19327
|
|
|
19309
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19328
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
|
|
19310
19329
|
*
|
|
19311
19330
|
* @property
|
|
19312
19331
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -19321,7 +19340,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19321
19340
|
return __pyx_r;
|
|
19322
19341
|
}
|
|
19323
19342
|
|
|
19324
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19343
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
|
|
19325
19344
|
*
|
|
19326
19345
|
* @property
|
|
19327
19346
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19332,7 +19351,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19332
19351
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
19333
19352
|
int __pyx_r;
|
|
19334
19353
|
|
|
19335
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19354
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":260
|
|
19336
19355
|
* """Returns the number of dimensions in the array.
|
|
19337
19356
|
* """
|
|
19338
19357
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -19342,7 +19361,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
19342
19361
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
19343
19362
|
goto __pyx_L0;
|
|
19344
19363
|
|
|
19345
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19364
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
|
|
19346
19365
|
*
|
|
19347
19366
|
* @property
|
|
19348
19367
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19355,7 +19374,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
19355
19374
|
return __pyx_r;
|
|
19356
19375
|
}
|
|
19357
19376
|
|
|
19358
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19377
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
|
|
19359
19378
|
*
|
|
19360
19379
|
* @property
|
|
19361
19380
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19366,7 +19385,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
19366
19385
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
19367
19386
|
npy_intp *__pyx_r;
|
|
19368
19387
|
|
|
19369
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19388
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":268
|
|
19370
19389
|
* Can return NULL for 0-dimensional arrays.
|
|
19371
19390
|
* """
|
|
19372
19391
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -19376,7 +19395,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
19376
19395
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
19377
19396
|
goto __pyx_L0;
|
|
19378
19397
|
|
|
19379
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19398
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
|
|
19380
19399
|
*
|
|
19381
19400
|
* @property
|
|
19382
19401
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19389,7 +19408,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
19389
19408
|
return __pyx_r;
|
|
19390
19409
|
}
|
|
19391
19410
|
|
|
19392
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19411
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
|
|
19393
19412
|
*
|
|
19394
19413
|
* @property
|
|
19395
19414
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19400,7 +19419,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
19400
19419
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
19401
19420
|
npy_intp *__pyx_r;
|
|
19402
19421
|
|
|
19403
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19422
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":275
|
|
19404
19423
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
19405
19424
|
* """
|
|
19406
19425
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -19410,7 +19429,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
19410
19429
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
19411
19430
|
goto __pyx_L0;
|
|
19412
19431
|
|
|
19413
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19432
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
|
|
19414
19433
|
*
|
|
19415
19434
|
* @property
|
|
19416
19435
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19423,7 +19442,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
19423
19442
|
return __pyx_r;
|
|
19424
19443
|
}
|
|
19425
19444
|
|
|
19426
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19445
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
|
|
19427
19446
|
*
|
|
19428
19447
|
* @property
|
|
19429
19448
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19434,7 +19453,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
19434
19453
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
19435
19454
|
npy_intp __pyx_r;
|
|
19436
19455
|
|
|
19437
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19456
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":281
|
|
19438
19457
|
* """Returns the total size (in number of elements) of the array.
|
|
19439
19458
|
* """
|
|
19440
19459
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -19444,7 +19463,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
19444
19463
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
19445
19464
|
goto __pyx_L0;
|
|
19446
19465
|
|
|
19447
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19466
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
|
|
19448
19467
|
*
|
|
19449
19468
|
* @property
|
|
19450
19469
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19457,7 +19476,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
19457
19476
|
return __pyx_r;
|
|
19458
19477
|
}
|
|
19459
19478
|
|
|
19460
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19479
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
|
|
19461
19480
|
*
|
|
19462
19481
|
* @property
|
|
19463
19482
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19468,7 +19487,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
19468
19487
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
19469
19488
|
char *__pyx_r;
|
|
19470
19489
|
|
|
19471
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19490
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":290
|
|
19472
19491
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
19473
19492
|
* """
|
|
19474
19493
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -19478,7 +19497,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
19478
19497
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
19479
19498
|
goto __pyx_L0;
|
|
19480
19499
|
|
|
19481
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19500
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
|
|
19482
19501
|
*
|
|
19483
19502
|
* @property
|
|
19484
19503
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19491,7 +19510,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
19491
19510
|
return __pyx_r;
|
|
19492
19511
|
}
|
|
19493
19512
|
|
|
19494
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19513
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
|
|
19495
19514
|
* ctypedef npy_cdouble complex_t
|
|
19496
19515
|
*
|
|
19497
19516
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -19508,7 +19527,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
19508
19527
|
int __pyx_clineno = 0;
|
|
19509
19528
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
|
|
19510
19529
|
|
|
19511
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19530
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":774
|
|
19512
19531
|
*
|
|
19513
19532
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
19514
19533
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -19522,7 +19541,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
19522
19541
|
__pyx_t_1 = 0;
|
|
19523
19542
|
goto __pyx_L0;
|
|
19524
19543
|
|
|
19525
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19544
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
|
|
19526
19545
|
* ctypedef npy_cdouble complex_t
|
|
19527
19546
|
*
|
|
19528
19547
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -19541,7 +19560,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
19541
19560
|
return __pyx_r;
|
|
19542
19561
|
}
|
|
19543
19562
|
|
|
19544
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19563
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
|
|
19545
19564
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
19546
19565
|
*
|
|
19547
19566
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -19558,7 +19577,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19558
19577
|
int __pyx_clineno = 0;
|
|
19559
19578
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
|
|
19560
19579
|
|
|
19561
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19580
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":777
|
|
19562
19581
|
*
|
|
19563
19582
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
19564
19583
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -19572,7 +19591,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19572
19591
|
__pyx_t_1 = 0;
|
|
19573
19592
|
goto __pyx_L0;
|
|
19574
19593
|
|
|
19575
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19594
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
|
|
19576
19595
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
19577
19596
|
*
|
|
19578
19597
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -19591,7 +19610,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19591
19610
|
return __pyx_r;
|
|
19592
19611
|
}
|
|
19593
19612
|
|
|
19594
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19613
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
|
|
19595
19614
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
19596
19615
|
*
|
|
19597
19616
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -19608,7 +19627,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19608
19627
|
int __pyx_clineno = 0;
|
|
19609
19628
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
|
|
19610
19629
|
|
|
19611
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19630
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":780
|
|
19612
19631
|
*
|
|
19613
19632
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
19614
19633
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -19622,7 +19641,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19622
19641
|
__pyx_t_1 = 0;
|
|
19623
19642
|
goto __pyx_L0;
|
|
19624
19643
|
|
|
19625
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19644
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
|
|
19626
19645
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
19627
19646
|
*
|
|
19628
19647
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -19641,7 +19660,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19641
19660
|
return __pyx_r;
|
|
19642
19661
|
}
|
|
19643
19662
|
|
|
19644
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19663
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
|
|
19645
19664
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
19646
19665
|
*
|
|
19647
19666
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -19658,7 +19677,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19658
19677
|
int __pyx_clineno = 0;
|
|
19659
19678
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
|
|
19660
19679
|
|
|
19661
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19680
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":783
|
|
19662
19681
|
*
|
|
19663
19682
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
19664
19683
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -19672,7 +19691,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19672
19691
|
__pyx_t_1 = 0;
|
|
19673
19692
|
goto __pyx_L0;
|
|
19674
19693
|
|
|
19675
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19694
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
|
|
19676
19695
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
19677
19696
|
*
|
|
19678
19697
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -19691,7 +19710,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19691
19710
|
return __pyx_r;
|
|
19692
19711
|
}
|
|
19693
19712
|
|
|
19694
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19713
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
|
|
19695
19714
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
19696
19715
|
*
|
|
19697
19716
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -19708,7 +19727,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19708
19727
|
int __pyx_clineno = 0;
|
|
19709
19728
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
|
|
19710
19729
|
|
|
19711
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19730
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":786
|
|
19712
19731
|
*
|
|
19713
19732
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
19714
19733
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -19722,7 +19741,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19722
19741
|
__pyx_t_1 = 0;
|
|
19723
19742
|
goto __pyx_L0;
|
|
19724
19743
|
|
|
19725
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19744
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
|
|
19726
19745
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
19727
19746
|
*
|
|
19728
19747
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -19741,7 +19760,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19741
19760
|
return __pyx_r;
|
|
19742
19761
|
}
|
|
19743
19762
|
|
|
19744
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19763
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
|
|
19745
19764
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
19746
19765
|
*
|
|
19747
19766
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -19755,7 +19774,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19755
19774
|
int __pyx_t_1;
|
|
19756
19775
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
|
|
19757
19776
|
|
|
19758
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19777
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
|
|
19759
19778
|
*
|
|
19760
19779
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19761
19780
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -19765,7 +19784,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19765
19784
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
19766
19785
|
if (__pyx_t_1) {
|
|
19767
19786
|
|
|
19768
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19787
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":790
|
|
19769
19788
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19770
19789
|
* if PyDataType_HASSUBARRAY(d):
|
|
19771
19790
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -19777,7 +19796,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19777
19796
|
__pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
|
|
19778
19797
|
goto __pyx_L0;
|
|
19779
19798
|
|
|
19780
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19799
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
|
|
19781
19800
|
*
|
|
19782
19801
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19783
19802
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -19786,7 +19805,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19786
19805
|
*/
|
|
19787
19806
|
}
|
|
19788
19807
|
|
|
19789
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19808
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":792
|
|
19790
19809
|
* return <tuple>d.subarray.shape
|
|
19791
19810
|
* else:
|
|
19792
19811
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -19800,7 +19819,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19800
19819
|
goto __pyx_L0;
|
|
19801
19820
|
}
|
|
19802
19821
|
|
|
19803
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19822
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
|
|
19804
19823
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
19805
19824
|
*
|
|
19806
19825
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -19815,7 +19834,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19815
19834
|
return __pyx_r;
|
|
19816
19835
|
}
|
|
19817
19836
|
|
|
19818
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19837
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
|
|
19819
19838
|
* int _import_umath() except -1
|
|
19820
19839
|
*
|
|
19821
19840
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -19829,7 +19848,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19829
19848
|
const char *__pyx_filename = NULL;
|
|
19830
19849
|
int __pyx_clineno = 0;
|
|
19831
19850
|
|
|
19832
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19851
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":969
|
|
19833
19852
|
*
|
|
19834
19853
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
19835
19854
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -19838,7 +19857,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19838
19857
|
*/
|
|
19839
19858
|
Py_INCREF(__pyx_v_base);
|
|
19840
19859
|
|
|
19841
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19860
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":970
|
|
19842
19861
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
19843
19862
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
19844
19863
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -19847,7 +19866,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19847
19866
|
*/
|
|
19848
19867
|
__pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(2, 970, __pyx_L1_error)
|
|
19849
19868
|
|
|
19850
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19869
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
|
|
19851
19870
|
* int _import_umath() except -1
|
|
19852
19871
|
*
|
|
19853
19872
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -19862,7 +19881,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19862
19881
|
__pyx_L0:;
|
|
19863
19882
|
}
|
|
19864
19883
|
|
|
19865
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19884
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
|
|
19866
19885
|
* PyArray_SetBaseObject(arr, base)
|
|
19867
19886
|
*
|
|
19868
19887
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19877,7 +19896,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19877
19896
|
int __pyx_t_1;
|
|
19878
19897
|
__Pyx_RefNannySetupContext("get_array_base", 1);
|
|
19879
19898
|
|
|
19880
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19899
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":973
|
|
19881
19900
|
*
|
|
19882
19901
|
* cdef inline object get_array_base(ndarray arr):
|
|
19883
19902
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -19886,7 +19905,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19886
19905
|
*/
|
|
19887
19906
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
19888
19907
|
|
|
19889
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19908
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
|
|
19890
19909
|
* cdef inline object get_array_base(ndarray arr):
|
|
19891
19910
|
* base = PyArray_BASE(arr)
|
|
19892
19911
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19896,7 +19915,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19896
19915
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
19897
19916
|
if (__pyx_t_1) {
|
|
19898
19917
|
|
|
19899
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19918
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":975
|
|
19900
19919
|
* base = PyArray_BASE(arr)
|
|
19901
19920
|
* if base is NULL:
|
|
19902
19921
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -19907,7 +19926,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19907
19926
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
19908
19927
|
goto __pyx_L0;
|
|
19909
19928
|
|
|
19910
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19929
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
|
|
19911
19930
|
* cdef inline object get_array_base(ndarray arr):
|
|
19912
19931
|
* base = PyArray_BASE(arr)
|
|
19913
19932
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19916,7 +19935,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19916
19935
|
*/
|
|
19917
19936
|
}
|
|
19918
19937
|
|
|
19919
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19938
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":976
|
|
19920
19939
|
* if base is NULL:
|
|
19921
19940
|
* return None
|
|
19922
19941
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -19928,7 +19947,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19928
19947
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
19929
19948
|
goto __pyx_L0;
|
|
19930
19949
|
|
|
19931
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19950
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
|
|
19932
19951
|
* PyArray_SetBaseObject(arr, base)
|
|
19933
19952
|
*
|
|
19934
19953
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19943,7 +19962,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19943
19962
|
return __pyx_r;
|
|
19944
19963
|
}
|
|
19945
19964
|
|
|
19946
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19965
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
|
|
19947
19966
|
* # Versions of the import_* functions which are more suitable for
|
|
19948
19967
|
* # Cython code.
|
|
19949
19968
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19967,7 +19986,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19967
19986
|
int __pyx_clineno = 0;
|
|
19968
19987
|
__Pyx_RefNannySetupContext("import_array", 1);
|
|
19969
19988
|
|
|
19970
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19989
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
|
|
19971
19990
|
* # Cython code.
|
|
19972
19991
|
* cdef inline int import_array() except -1:
|
|
19973
19992
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19983,7 +20002,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19983
20002
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19984
20003
|
/*try:*/ {
|
|
19985
20004
|
|
|
19986
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20005
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":982
|
|
19987
20006
|
* cdef inline int import_array() except -1:
|
|
19988
20007
|
* try:
|
|
19989
20008
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -19992,7 +20011,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19992
20011
|
*/
|
|
19993
20012
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
|
|
19994
20013
|
|
|
19995
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20014
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
|
|
19996
20015
|
* # Cython code.
|
|
19997
20016
|
* cdef inline int import_array() except -1:
|
|
19998
20017
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20006,7 +20025,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
20006
20025
|
goto __pyx_L8_try_end;
|
|
20007
20026
|
__pyx_L3_error:;
|
|
20008
20027
|
|
|
20009
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20028
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":983
|
|
20010
20029
|
* try:
|
|
20011
20030
|
* __pyx_import_array()
|
|
20012
20031
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -20021,7 +20040,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
20021
20040
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
20022
20041
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
20023
20042
|
|
|
20024
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20043
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
|
|
20025
20044
|
* __pyx_import_array()
|
|
20026
20045
|
* except Exception:
|
|
20027
20046
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -20036,7 +20055,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
20036
20055
|
}
|
|
20037
20056
|
goto __pyx_L5_except_error;
|
|
20038
20057
|
|
|
20039
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20058
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
|
|
20040
20059
|
* # Cython code.
|
|
20041
20060
|
* cdef inline int import_array() except -1:
|
|
20042
20061
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20052,7 +20071,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
20052
20071
|
__pyx_L8_try_end:;
|
|
20053
20072
|
}
|
|
20054
20073
|
|
|
20055
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20074
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
|
|
20056
20075
|
* # Versions of the import_* functions which are more suitable for
|
|
20057
20076
|
* # Cython code.
|
|
20058
20077
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -20075,7 +20094,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
20075
20094
|
return __pyx_r;
|
|
20076
20095
|
}
|
|
20077
20096
|
|
|
20078
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20097
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
|
|
20079
20098
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
20080
20099
|
*
|
|
20081
20100
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -20099,7 +20118,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20099
20118
|
int __pyx_clineno = 0;
|
|
20100
20119
|
__Pyx_RefNannySetupContext("import_umath", 1);
|
|
20101
20120
|
|
|
20102
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20121
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
|
|
20103
20122
|
*
|
|
20104
20123
|
* cdef inline int import_umath() except -1:
|
|
20105
20124
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20115,7 +20134,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20115
20134
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
20116
20135
|
/*try:*/ {
|
|
20117
20136
|
|
|
20118
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20137
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":988
|
|
20119
20138
|
* cdef inline int import_umath() except -1:
|
|
20120
20139
|
* try:
|
|
20121
20140
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -20124,7 +20143,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20124
20143
|
*/
|
|
20125
20144
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
|
|
20126
20145
|
|
|
20127
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20146
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
|
|
20128
20147
|
*
|
|
20129
20148
|
* cdef inline int import_umath() except -1:
|
|
20130
20149
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20138,7 +20157,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20138
20157
|
goto __pyx_L8_try_end;
|
|
20139
20158
|
__pyx_L3_error:;
|
|
20140
20159
|
|
|
20141
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20160
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":989
|
|
20142
20161
|
* try:
|
|
20143
20162
|
* _import_umath()
|
|
20144
20163
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -20153,7 +20172,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20153
20172
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
20154
20173
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
20155
20174
|
|
|
20156
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20175
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
|
|
20157
20176
|
* _import_umath()
|
|
20158
20177
|
* except Exception:
|
|
20159
20178
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -20168,7 +20187,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20168
20187
|
}
|
|
20169
20188
|
goto __pyx_L5_except_error;
|
|
20170
20189
|
|
|
20171
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20190
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
|
|
20172
20191
|
*
|
|
20173
20192
|
* cdef inline int import_umath() except -1:
|
|
20174
20193
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20184,7 +20203,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20184
20203
|
__pyx_L8_try_end:;
|
|
20185
20204
|
}
|
|
20186
20205
|
|
|
20187
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20206
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
|
|
20188
20207
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
20189
20208
|
*
|
|
20190
20209
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -20207,7 +20226,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20207
20226
|
return __pyx_r;
|
|
20208
20227
|
}
|
|
20209
20228
|
|
|
20210
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20229
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
|
|
20211
20230
|
* raise ImportError("numpy.core.umath failed to import")
|
|
20212
20231
|
*
|
|
20213
20232
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -20231,7 +20250,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20231
20250
|
int __pyx_clineno = 0;
|
|
20232
20251
|
__Pyx_RefNannySetupContext("import_ufunc", 1);
|
|
20233
20252
|
|
|
20234
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20253
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
|
|
20235
20254
|
*
|
|
20236
20255
|
* cdef inline int import_ufunc() except -1:
|
|
20237
20256
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20247,7 +20266,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20247
20266
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
20248
20267
|
/*try:*/ {
|
|
20249
20268
|
|
|
20250
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20269
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":994
|
|
20251
20270
|
* cdef inline int import_ufunc() except -1:
|
|
20252
20271
|
* try:
|
|
20253
20272
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -20256,7 +20275,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20256
20275
|
*/
|
|
20257
20276
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
|
|
20258
20277
|
|
|
20259
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20278
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
|
|
20260
20279
|
*
|
|
20261
20280
|
* cdef inline int import_ufunc() except -1:
|
|
20262
20281
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20270,7 +20289,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20270
20289
|
goto __pyx_L8_try_end;
|
|
20271
20290
|
__pyx_L3_error:;
|
|
20272
20291
|
|
|
20273
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20292
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":995
|
|
20274
20293
|
* try:
|
|
20275
20294
|
* _import_umath()
|
|
20276
20295
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -20285,7 +20304,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20285
20304
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
20286
20305
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
20287
20306
|
|
|
20288
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20307
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":996
|
|
20289
20308
|
* _import_umath()
|
|
20290
20309
|
* except Exception:
|
|
20291
20310
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -20300,7 +20319,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20300
20319
|
}
|
|
20301
20320
|
goto __pyx_L5_except_error;
|
|
20302
20321
|
|
|
20303
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20322
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
|
|
20304
20323
|
*
|
|
20305
20324
|
* cdef inline int import_ufunc() except -1:
|
|
20306
20325
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20316,7 +20335,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20316
20335
|
__pyx_L8_try_end:;
|
|
20317
20336
|
}
|
|
20318
20337
|
|
|
20319
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20338
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
|
|
20320
20339
|
* raise ImportError("numpy.core.umath failed to import")
|
|
20321
20340
|
*
|
|
20322
20341
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -20339,7 +20358,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20339
20358
|
return __pyx_r;
|
|
20340
20359
|
}
|
|
20341
20360
|
|
|
20342
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20361
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
|
|
20343
20362
|
*
|
|
20344
20363
|
*
|
|
20345
20364
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20350,7 +20369,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20350
20369
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
20351
20370
|
int __pyx_r;
|
|
20352
20371
|
|
|
20353
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20372
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1011
|
|
20354
20373
|
* bool
|
|
20355
20374
|
* """
|
|
20356
20375
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -20360,7 +20379,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
20360
20379
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
20361
20380
|
goto __pyx_L0;
|
|
20362
20381
|
|
|
20363
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20382
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
|
|
20364
20383
|
*
|
|
20365
20384
|
*
|
|
20366
20385
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20373,7 +20392,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
20373
20392
|
return __pyx_r;
|
|
20374
20393
|
}
|
|
20375
20394
|
|
|
20376
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20395
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
20377
20396
|
*
|
|
20378
20397
|
*
|
|
20379
20398
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20384,7 +20403,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
20384
20403
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
20385
20404
|
int __pyx_r;
|
|
20386
20405
|
|
|
20387
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20406
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1026
|
|
20388
20407
|
* bool
|
|
20389
20408
|
* """
|
|
20390
20409
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -20394,7 +20413,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
20394
20413
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
20395
20414
|
goto __pyx_L0;
|
|
20396
20415
|
|
|
20397
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20416
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
20398
20417
|
*
|
|
20399
20418
|
*
|
|
20400
20419
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20407,7 +20426,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
20407
20426
|
return __pyx_r;
|
|
20408
20427
|
}
|
|
20409
20428
|
|
|
20410
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20429
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
20411
20430
|
*
|
|
20412
20431
|
*
|
|
20413
20432
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20418,7 +20437,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
20418
20437
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
20419
20438
|
npy_datetime __pyx_r;
|
|
20420
20439
|
|
|
20421
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20440
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1036
|
|
20422
20441
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
20423
20442
|
* """
|
|
20424
20443
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -20428,7 +20447,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
20428
20447
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
20429
20448
|
goto __pyx_L0;
|
|
20430
20449
|
|
|
20431
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20450
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
20432
20451
|
*
|
|
20433
20452
|
*
|
|
20434
20453
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20441,7 +20460,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
20441
20460
|
return __pyx_r;
|
|
20442
20461
|
}
|
|
20443
20462
|
|
|
20444
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20463
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
|
|
20445
20464
|
*
|
|
20446
20465
|
*
|
|
20447
20466
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20452,7 +20471,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
20452
20471
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
20453
20472
|
npy_timedelta __pyx_r;
|
|
20454
20473
|
|
|
20455
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20474
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1043
|
|
20456
20475
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
20457
20476
|
* """
|
|
20458
20477
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -20462,7 +20481,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
20462
20481
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
20463
20482
|
goto __pyx_L0;
|
|
20464
20483
|
|
|
20465
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20484
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
|
|
20466
20485
|
*
|
|
20467
20486
|
*
|
|
20468
20487
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20475,7 +20494,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
20475
20494
|
return __pyx_r;
|
|
20476
20495
|
}
|
|
20477
20496
|
|
|
20478
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20497
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
|
|
20479
20498
|
*
|
|
20480
20499
|
*
|
|
20481
20500
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20486,7 +20505,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
20486
20505
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
20487
20506
|
NPY_DATETIMEUNIT __pyx_r;
|
|
20488
20507
|
|
|
20489
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20508
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1050
|
|
20490
20509
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
20491
20510
|
* """
|
|
20492
20511
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -20494,7 +20513,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
20494
20513
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
20495
20514
|
goto __pyx_L0;
|
|
20496
20515
|
|
|
20497
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20516
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
|
|
20498
20517
|
*
|
|
20499
20518
|
*
|
|
20500
20519
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -25476,10 +25495,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
|
|
|
25476
25495
|
Py_ssize_t __pyx_v_itemsize;
|
|
25477
25496
|
int __pyx_v_dtype_signed;
|
|
25478
25497
|
Py_UCS4 __pyx_v_kind;
|
|
25479
|
-
int
|
|
25480
|
-
int
|
|
25481
|
-
int
|
|
25482
|
-
int
|
|
25498
|
+
int __pyx_v___pyx_fused_dtype_uint8_is_signed;
|
|
25499
|
+
int __pyx_v___pyx_fused_dtype_uint16_is_signed;
|
|
25500
|
+
int __pyx_v___pyx_fused_dtype_uint32_is_signed;
|
|
25501
|
+
int __pyx_v___pyx_fused_dtype_uint64_is_signed;
|
|
25483
25502
|
PyObject *__pyx_v_arg = NULL;
|
|
25484
25503
|
PyObject *__pyx_v_dtype = NULL;
|
|
25485
25504
|
PyObject *__pyx_v_arg_base = NULL;
|
|
@@ -25551,10 +25570,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
|
|
|
25551
25570
|
__pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
|
|
25552
25571
|
__pyx_t_1 = 0;
|
|
25553
25572
|
__pyx_v_itemsize = -1L;
|
|
25554
|
-
|
|
25555
|
-
|
|
25556
|
-
|
|
25557
|
-
|
|
25573
|
+
__pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint8)-1L) > 0));
|
|
25574
|
+
__pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint16)-1L) > 0));
|
|
25575
|
+
__pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint32)-1L) > 0));
|
|
25576
|
+
__pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint64)-1L) > 0));
|
|
25558
25577
|
if (unlikely(__pyx_v_args == Py_None)) {
|
|
25559
25578
|
PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
|
|
25560
25579
|
__PYX_ERR(0, 479, __pyx_L1_error)
|
|
@@ -25696,7 +25715,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
|
|
|
25696
25715
|
__pyx_t_2 = __pyx_t_4;
|
|
25697
25716
|
goto __pyx_L16_bool_binop_done;
|
|
25698
25717
|
}
|
|
25699
|
-
__pyx_t_4 = (!(
|
|
25718
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
|
|
25700
25719
|
__pyx_t_2 = __pyx_t_4;
|
|
25701
25720
|
__pyx_L16_bool_binop_done:;
|
|
25702
25721
|
if (__pyx_t_2) {
|
|
@@ -25719,7 +25738,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
|
|
|
25719
25738
|
__pyx_t_2 = __pyx_t_4;
|
|
25720
25739
|
goto __pyx_L20_bool_binop_done;
|
|
25721
25740
|
}
|
|
25722
|
-
__pyx_t_4 = (!(
|
|
25741
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
|
|
25723
25742
|
__pyx_t_2 = __pyx_t_4;
|
|
25724
25743
|
__pyx_L20_bool_binop_done:;
|
|
25725
25744
|
if (__pyx_t_2) {
|
|
@@ -25742,7 +25761,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
|
|
|
25742
25761
|
__pyx_t_2 = __pyx_t_4;
|
|
25743
25762
|
goto __pyx_L24_bool_binop_done;
|
|
25744
25763
|
}
|
|
25745
|
-
__pyx_t_4 = (!(
|
|
25764
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
|
|
25746
25765
|
__pyx_t_2 = __pyx_t_4;
|
|
25747
25766
|
__pyx_L24_bool_binop_done:;
|
|
25748
25767
|
if (__pyx_t_2) {
|
|
@@ -25765,7 +25784,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
|
|
|
25765
25784
|
__pyx_t_2 = __pyx_t_4;
|
|
25766
25785
|
goto __pyx_L28_bool_binop_done;
|
|
25767
25786
|
}
|
|
25768
|
-
__pyx_t_4 = (!(
|
|
25787
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
|
|
25769
25788
|
__pyx_t_2 = __pyx_t_4;
|
|
25770
25789
|
__pyx_L28_bool_binop_done:;
|
|
25771
25790
|
if (__pyx_t_2) {
|
|
@@ -26126,7 +26145,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
|
|
|
26126
26145
|
__pyx_t_2 = __pyx_t_4;
|
|
26127
26146
|
goto __pyx_L75_bool_binop_done;
|
|
26128
26147
|
}
|
|
26129
|
-
__pyx_t_4 = (!(
|
|
26148
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
|
|
26130
26149
|
__pyx_t_2 = __pyx_t_4;
|
|
26131
26150
|
__pyx_L75_bool_binop_done:;
|
|
26132
26151
|
if (__pyx_t_2) {
|
|
@@ -26149,7 +26168,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
|
|
|
26149
26168
|
__pyx_t_2 = __pyx_t_4;
|
|
26150
26169
|
goto __pyx_L79_bool_binop_done;
|
|
26151
26170
|
}
|
|
26152
|
-
__pyx_t_4 = (!(
|
|
26171
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
|
|
26153
26172
|
__pyx_t_2 = __pyx_t_4;
|
|
26154
26173
|
__pyx_L79_bool_binop_done:;
|
|
26155
26174
|
if (__pyx_t_2) {
|
|
@@ -26172,7 +26191,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
|
|
|
26172
26191
|
__pyx_t_2 = __pyx_t_4;
|
|
26173
26192
|
goto __pyx_L83_bool_binop_done;
|
|
26174
26193
|
}
|
|
26175
|
-
__pyx_t_4 = (!(
|
|
26194
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
|
|
26176
26195
|
__pyx_t_2 = __pyx_t_4;
|
|
26177
26196
|
__pyx_L83_bool_binop_done:;
|
|
26178
26197
|
if (__pyx_t_2) {
|
|
@@ -26195,7 +26214,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
|
|
|
26195
26214
|
__pyx_t_2 = __pyx_t_4;
|
|
26196
26215
|
goto __pyx_L87_bool_binop_done;
|
|
26197
26216
|
}
|
|
26198
|
-
__pyx_t_4 = (!(
|
|
26217
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
|
|
26199
26218
|
__pyx_t_2 = __pyx_t_4;
|
|
26200
26219
|
__pyx_L87_bool_binop_done:;
|
|
26201
26220
|
if (__pyx_t_2) {
|
|
@@ -51308,10 +51327,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
|
|
|
51308
51327
|
Py_ssize_t __pyx_v_itemsize;
|
|
51309
51328
|
int __pyx_v_dtype_signed;
|
|
51310
51329
|
Py_UCS4 __pyx_v_kind;
|
|
51311
|
-
int
|
|
51312
|
-
int
|
|
51313
|
-
int
|
|
51314
|
-
int
|
|
51330
|
+
int __pyx_v___pyx_fused_dtype_uint8_is_signed;
|
|
51331
|
+
int __pyx_v___pyx_fused_dtype_uint16_is_signed;
|
|
51332
|
+
int __pyx_v___pyx_fused_dtype_uint32_is_signed;
|
|
51333
|
+
int __pyx_v___pyx_fused_dtype_uint64_is_signed;
|
|
51315
51334
|
PyObject *__pyx_v_arg = NULL;
|
|
51316
51335
|
PyObject *__pyx_v_dtype = NULL;
|
|
51317
51336
|
PyObject *__pyx_v_arg_base = NULL;
|
|
@@ -51383,10 +51402,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
|
|
|
51383
51402
|
__pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
|
|
51384
51403
|
__pyx_t_1 = 0;
|
|
51385
51404
|
__pyx_v_itemsize = -1L;
|
|
51386
|
-
|
|
51387
|
-
|
|
51388
|
-
|
|
51389
|
-
|
|
51405
|
+
__pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint8)-1L) > 0));
|
|
51406
|
+
__pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint16)-1L) > 0));
|
|
51407
|
+
__pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint32)-1L) > 0));
|
|
51408
|
+
__pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint64)-1L) > 0));
|
|
51390
51409
|
if (unlikely(__pyx_v_args == Py_None)) {
|
|
51391
51410
|
PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
|
|
51392
51411
|
__PYX_ERR(0, 647, __pyx_L1_error)
|
|
@@ -51528,7 +51547,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
|
|
|
51528
51547
|
__pyx_t_2 = __pyx_t_4;
|
|
51529
51548
|
goto __pyx_L16_bool_binop_done;
|
|
51530
51549
|
}
|
|
51531
|
-
__pyx_t_4 = (!(
|
|
51550
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
|
|
51532
51551
|
__pyx_t_2 = __pyx_t_4;
|
|
51533
51552
|
__pyx_L16_bool_binop_done:;
|
|
51534
51553
|
if (__pyx_t_2) {
|
|
@@ -51551,7 +51570,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
|
|
|
51551
51570
|
__pyx_t_2 = __pyx_t_4;
|
|
51552
51571
|
goto __pyx_L20_bool_binop_done;
|
|
51553
51572
|
}
|
|
51554
|
-
__pyx_t_4 = (!(
|
|
51573
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
|
|
51555
51574
|
__pyx_t_2 = __pyx_t_4;
|
|
51556
51575
|
__pyx_L20_bool_binop_done:;
|
|
51557
51576
|
if (__pyx_t_2) {
|
|
@@ -51574,7 +51593,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
|
|
|
51574
51593
|
__pyx_t_2 = __pyx_t_4;
|
|
51575
51594
|
goto __pyx_L24_bool_binop_done;
|
|
51576
51595
|
}
|
|
51577
|
-
__pyx_t_4 = (!(
|
|
51596
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
|
|
51578
51597
|
__pyx_t_2 = __pyx_t_4;
|
|
51579
51598
|
__pyx_L24_bool_binop_done:;
|
|
51580
51599
|
if (__pyx_t_2) {
|
|
@@ -51597,7 +51616,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
|
|
|
51597
51616
|
__pyx_t_2 = __pyx_t_4;
|
|
51598
51617
|
goto __pyx_L28_bool_binop_done;
|
|
51599
51618
|
}
|
|
51600
|
-
__pyx_t_4 = (!(
|
|
51619
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
|
|
51601
51620
|
__pyx_t_2 = __pyx_t_4;
|
|
51602
51621
|
__pyx_L28_bool_binop_done:;
|
|
51603
51622
|
if (__pyx_t_2) {
|
|
@@ -51958,7 +51977,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
|
|
|
51958
51977
|
__pyx_t_2 = __pyx_t_4;
|
|
51959
51978
|
goto __pyx_L75_bool_binop_done;
|
|
51960
51979
|
}
|
|
51961
|
-
__pyx_t_4 = (!(
|
|
51980
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
|
|
51962
51981
|
__pyx_t_2 = __pyx_t_4;
|
|
51963
51982
|
__pyx_L75_bool_binop_done:;
|
|
51964
51983
|
if (__pyx_t_2) {
|
|
@@ -51981,7 +52000,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
|
|
|
51981
52000
|
__pyx_t_2 = __pyx_t_4;
|
|
51982
52001
|
goto __pyx_L79_bool_binop_done;
|
|
51983
52002
|
}
|
|
51984
|
-
__pyx_t_4 = (!(
|
|
52003
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
|
|
51985
52004
|
__pyx_t_2 = __pyx_t_4;
|
|
51986
52005
|
__pyx_L79_bool_binop_done:;
|
|
51987
52006
|
if (__pyx_t_2) {
|
|
@@ -52004,7 +52023,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
|
|
|
52004
52023
|
__pyx_t_2 = __pyx_t_4;
|
|
52005
52024
|
goto __pyx_L83_bool_binop_done;
|
|
52006
52025
|
}
|
|
52007
|
-
__pyx_t_4 = (!(
|
|
52026
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
|
|
52008
52027
|
__pyx_t_2 = __pyx_t_4;
|
|
52009
52028
|
__pyx_L83_bool_binop_done:;
|
|
52010
52029
|
if (__pyx_t_2) {
|
|
@@ -52027,7 +52046,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
|
|
|
52027
52046
|
__pyx_t_2 = __pyx_t_4;
|
|
52028
52047
|
goto __pyx_L87_bool_binop_done;
|
|
52029
52048
|
}
|
|
52030
|
-
__pyx_t_4 = (!(
|
|
52049
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
|
|
52031
52050
|
__pyx_t_2 = __pyx_t_4;
|
|
52032
52051
|
__pyx_L87_bool_binop_done:;
|
|
52033
52052
|
if (__pyx_t_2) {
|
|
@@ -92284,7 +92303,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
92284
92303
|
__Pyx_GOTREF(__pyx_tuple__8);
|
|
92285
92304
|
__Pyx_GIVEREF(__pyx_tuple__8);
|
|
92286
92305
|
|
|
92287
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
92306
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
|
|
92288
92307
|
* __pyx_import_array()
|
|
92289
92308
|
* except Exception:
|
|
92290
92309
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -92295,7 +92314,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
92295
92314
|
__Pyx_GOTREF(__pyx_tuple__9);
|
|
92296
92315
|
__Pyx_GIVEREF(__pyx_tuple__9);
|
|
92297
92316
|
|
|
92298
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
92317
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
|
|
92299
92318
|
* _import_umath()
|
|
92300
92319
|
* except Exception:
|
|
92301
92320
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -92892,33 +92911,33 @@ static int __Pyx_modinit_type_import_code(void) {
|
|
|
92892
92911
|
/*--- Type import code ---*/
|
|
92893
92912
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
92894
92913
|
__Pyx_GOTREF(__pyx_t_1);
|
|
92895
|
-
__pyx_ptype_7cpython_4type_type =
|
|
92914
|
+
__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
|
92896
92915
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
92897
|
-
sizeof(PyTypeObject),
|
|
92916
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
92898
92917
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
92899
|
-
sizeof(PyTypeObject),
|
|
92918
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
92900
92919
|
#else
|
|
92901
|
-
sizeof(PyHeapTypeObject),
|
|
92920
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
|
|
92902
92921
|
#endif
|
|
92903
|
-
|
|
92922
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
92904
92923
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
92905
92924
|
__pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
|
|
92906
92925
|
__Pyx_GOTREF(__pyx_t_1);
|
|
92907
|
-
__pyx_ptype_5numpy_dtype =
|
|
92908
|
-
__pyx_ptype_5numpy_flatiter =
|
|
92909
|
-
__pyx_ptype_5numpy_broadcast =
|
|
92910
|
-
__pyx_ptype_5numpy_ndarray =
|
|
92911
|
-
__pyx_ptype_5numpy_generic =
|
|
92912
|
-
__pyx_ptype_5numpy_number =
|
|
92913
|
-
__pyx_ptype_5numpy_integer =
|
|
92914
|
-
__pyx_ptype_5numpy_signedinteger =
|
|
92915
|
-
__pyx_ptype_5numpy_unsignedinteger =
|
|
92916
|
-
__pyx_ptype_5numpy_inexact =
|
|
92917
|
-
__pyx_ptype_5numpy_floating =
|
|
92918
|
-
__pyx_ptype_5numpy_complexfloating =
|
|
92919
|
-
__pyx_ptype_5numpy_flexible =
|
|
92920
|
-
__pyx_ptype_5numpy_character =
|
|
92921
|
-
__pyx_ptype_5numpy_ufunc =
|
|
92926
|
+
__pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
|
|
92927
|
+
__pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
|
|
92928
|
+
__pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
|
|
92929
|
+
__pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
|
|
92930
|
+
__pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 809, __pyx_L1_error)
|
|
92931
|
+
__pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 811, __pyx_L1_error)
|
|
92932
|
+
__pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 813, __pyx_L1_error)
|
|
92933
|
+
__pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 815, __pyx_L1_error)
|
|
92934
|
+
__pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 817, __pyx_L1_error)
|
|
92935
|
+
__pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 819, __pyx_L1_error)
|
|
92936
|
+
__pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 821, __pyx_L1_error)
|
|
92937
|
+
__pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 823, __pyx_L1_error)
|
|
92938
|
+
__pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 825, __pyx_L1_error)
|
|
92939
|
+
__pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 827, __pyx_L1_error)
|
|
92940
|
+
__pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 866, __pyx_L1_error)
|
|
92922
92941
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
92923
92942
|
__Pyx_RefNannyFinishContext();
|
|
92924
92943
|
return 0;
|
|
@@ -92946,9 +92965,9 @@ static int __Pyx_modinit_function_import_code(void) {
|
|
|
92946
92965
|
/*--- Function import code ---*/
|
|
92947
92966
|
__pyx_t_1 = PyImport_ImportModule("biotite.sequence.align.tracetable"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
92948
92967
|
__Pyx_GOTREF(__pyx_t_1);
|
|
92949
|
-
if (
|
|
92950
|
-
if (
|
|
92951
|
-
if (
|
|
92968
|
+
if (__Pyx_ImportFunction_3_0_10(__pyx_t_1, "get_trace_linear", (void (**)(void))&__pyx_f_7biotite_8sequence_5align_10tracetable_get_trace_linear, "__pyx_t_5numpy_uint8_t (__pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
92969
|
+
if (__Pyx_ImportFunction_3_0_10(__pyx_t_1, "get_trace_affine", (void (**)(void))&__pyx_f_7biotite_8sequence_5align_10tracetable_get_trace_affine, "__pyx_t_5numpy_uint8_t (__pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t *, __pyx_t_5numpy_int32_t *, __pyx_t_5numpy_int32_t *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
92970
|
+
if (__Pyx_ImportFunction_3_0_10(__pyx_t_1, "follow_trace", (void (**)(void))&__pyx_f_7biotite_8sequence_5align_10tracetable_follow_trace, "int (__Pyx_memviewslice, int, int, int, int, __Pyx_memviewslice, PyObject *, int, int *, int, int, int)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
92952
92971
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
92953
92972
|
__Pyx_RefNannyFinishContext();
|
|
92954
92973
|
return 0;
|
|
@@ -94526,11 +94545,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
|
|
|
94526
94545
|
{
|
|
94527
94546
|
int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
|
|
94528
94547
|
if (unlikely(eq != 0)) {
|
|
94529
|
-
if (unlikely(eq < 0)) return NULL;
|
|
94548
|
+
if (unlikely(eq < 0)) return NULL;
|
|
94530
94549
|
return kwvalues[i];
|
|
94531
94550
|
}
|
|
94532
94551
|
}
|
|
94533
|
-
return NULL;
|
|
94552
|
+
return NULL;
|
|
94534
94553
|
}
|
|
94535
94554
|
#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
|
|
94536
94555
|
CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
|
|
@@ -94643,7 +94662,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
94643
94662
|
if (*name) {
|
|
94644
94663
|
values[name-argnames] = value;
|
|
94645
94664
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
94646
|
-
Py_INCREF(value);
|
|
94665
|
+
Py_INCREF(value);
|
|
94647
94666
|
Py_DECREF(key);
|
|
94648
94667
|
#endif
|
|
94649
94668
|
key = NULL;
|
|
@@ -94662,7 +94681,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
94662
94681
|
&& _PyString_Eq(**name, key)) {
|
|
94663
94682
|
values[name-argnames] = value;
|
|
94664
94683
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
94665
|
-
value = NULL;
|
|
94684
|
+
value = NULL;
|
|
94666
94685
|
#endif
|
|
94667
94686
|
break;
|
|
94668
94687
|
}
|
|
@@ -94694,7 +94713,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
94694
94713
|
if (cmp == 0) {
|
|
94695
94714
|
values[name-argnames] = value;
|
|
94696
94715
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
94697
|
-
value = NULL;
|
|
94716
|
+
value = NULL;
|
|
94698
94717
|
#endif
|
|
94699
94718
|
break;
|
|
94700
94719
|
}
|
|
@@ -96586,9 +96605,10 @@ static CYTHON_INLINE int __Pyx_HasAttr(PyObject *o, PyObject *n) {
|
|
|
96586
96605
|
|
|
96587
96606
|
/* IterFinish */
|
|
96588
96607
|
static CYTHON_INLINE int __Pyx_IterFinish(void) {
|
|
96608
|
+
PyObject* exc_type;
|
|
96589
96609
|
__Pyx_PyThreadState_declare
|
|
96590
96610
|
__Pyx_PyThreadState_assign
|
|
96591
|
-
|
|
96611
|
+
exc_type = __Pyx_PyErr_CurrentExceptionType();
|
|
96592
96612
|
if (unlikely(exc_type)) {
|
|
96593
96613
|
if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
|
|
96594
96614
|
return -1;
|
|
@@ -97658,9 +97678,10 @@ static CYTHON_INLINE int __Pyx_dict_iter_next(
|
|
|
97658
97678
|
|
|
97659
97679
|
/* UnpackUnboundCMethod */
|
|
97660
97680
|
static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *args, PyObject *kwargs) {
|
|
97681
|
+
PyObject *result;
|
|
97661
97682
|
PyObject *selfless_args = PyTuple_GetSlice(args, 1, PyTuple_Size(args));
|
|
97662
97683
|
if (unlikely(!selfless_args)) return NULL;
|
|
97663
|
-
|
|
97684
|
+
result = PyObject_Call(method, selfless_args, kwargs);
|
|
97664
97685
|
Py_DECREF(selfless_args);
|
|
97665
97686
|
return result;
|
|
97666
97687
|
}
|
|
@@ -98377,10 +98398,10 @@ __PYX_GOOD:
|
|
|
98377
98398
|
#endif
|
|
98378
98399
|
|
|
98379
98400
|
/* TypeImport */
|
|
98380
|
-
#ifndef
|
|
98381
|
-
#define
|
|
98382
|
-
static PyTypeObject *
|
|
98383
|
-
size_t size, size_t alignment, enum
|
|
98401
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_0_10
|
|
98402
|
+
#define __PYX_HAVE_RT_ImportType_3_0_10
|
|
98403
|
+
static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
|
|
98404
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
|
|
98384
98405
|
{
|
|
98385
98406
|
PyObject *result = 0;
|
|
98386
98407
|
char warning[200];
|
|
@@ -98434,7 +98455,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
98434
98455
|
module_name, class_name, size, basicsize+itemsize);
|
|
98435
98456
|
goto bad;
|
|
98436
98457
|
}
|
|
98437
|
-
if (check_size ==
|
|
98458
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
|
|
98438
98459
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
98439
98460
|
PyErr_Format(PyExc_ValueError,
|
|
98440
98461
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -98442,7 +98463,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
98442
98463
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
98443
98464
|
goto bad;
|
|
98444
98465
|
}
|
|
98445
|
-
else if (check_size ==
|
|
98466
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
|
|
98446
98467
|
PyOS_snprintf(warning, sizeof(warning),
|
|
98447
98468
|
"%s.%s size changed, may indicate binary incompatibility. "
|
|
98448
98469
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -99442,7 +99463,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
|
|
|
99442
99463
|
default:
|
|
99443
99464
|
return NULL;
|
|
99444
99465
|
}
|
|
99445
|
-
return ((
|
|
99466
|
+
return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
|
|
99446
99467
|
}
|
|
99447
99468
|
static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
|
|
99448
99469
|
{
|
|
@@ -100259,7 +100280,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
|
|
|
100259
100280
|
#else
|
|
100260
100281
|
py_code = PyCode_NewEmpty(filename, funcname, py_line);
|
|
100261
100282
|
#endif
|
|
100262
|
-
Py_XDECREF(py_funcname);
|
|
100283
|
+
Py_XDECREF(py_funcname);
|
|
100263
100284
|
return py_code;
|
|
100264
100285
|
bad:
|
|
100265
100286
|
Py_XDECREF(py_funcname);
|
|
@@ -104017,9 +104038,9 @@ static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt
|
|
|
104017
104038
|
}
|
|
104018
104039
|
|
|
104019
104040
|
/* FunctionImport */
|
|
104020
|
-
#ifndef
|
|
104021
|
-
#define
|
|
104022
|
-
static int
|
|
104041
|
+
#ifndef __PYX_HAVE_RT_ImportFunction_3_0_10
|
|
104042
|
+
#define __PYX_HAVE_RT_ImportFunction_3_0_10
|
|
104043
|
+
static int __Pyx_ImportFunction_3_0_10(PyObject *module, const char *funcname, void (**f)(void), const char *sig) {
|
|
104023
104044
|
PyObject *d = 0;
|
|
104024
104045
|
PyObject *cobj = 0;
|
|
104025
104046
|
union {
|