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
biotite/sequence/phylo/nj.c
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Generated by Cython 3.0.
|
|
1
|
+
/* Generated by Cython 3.0.10 */
|
|
2
2
|
|
|
3
3
|
/* BEGIN: Cython Metadata
|
|
4
4
|
{
|
|
@@ -37,10 +37,10 @@ END: Cython Metadata */
|
|
|
37
37
|
#else
|
|
38
38
|
#define __PYX_EXTRA_ABI_MODULE_NAME ""
|
|
39
39
|
#endif
|
|
40
|
-
#define CYTHON_ABI "
|
|
40
|
+
#define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
|
|
41
41
|
#define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
|
|
42
42
|
#define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
|
|
43
|
-
#define CYTHON_HEX_VERSION
|
|
43
|
+
#define CYTHON_HEX_VERSION 0x03000AF0
|
|
44
44
|
#define CYTHON_FUTURE_DIVISION 1
|
|
45
45
|
#include <stddef.h>
|
|
46
46
|
#ifndef offsetof
|
|
@@ -132,6 +132,8 @@ END: Cython Metadata */
|
|
|
132
132
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
133
133
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
134
134
|
#endif
|
|
135
|
+
#undef CYTHON_USE_FREELISTS
|
|
136
|
+
#define CYTHON_USE_FREELISTS 0
|
|
135
137
|
#elif defined(PYPY_VERSION)
|
|
136
138
|
#define CYTHON_COMPILING_IN_PYPY 1
|
|
137
139
|
#define CYTHON_COMPILING_IN_CPYTHON 0
|
|
@@ -193,6 +195,8 @@ END: Cython Metadata */
|
|
|
193
195
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
194
196
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
195
197
|
#endif
|
|
198
|
+
#undef CYTHON_USE_FREELISTS
|
|
199
|
+
#define CYTHON_USE_FREELISTS 0
|
|
196
200
|
#elif defined(CYTHON_LIMITED_API)
|
|
197
201
|
#ifdef Py_LIMITED_API
|
|
198
202
|
#undef __PYX_LIMITED_VERSION_HEX
|
|
@@ -254,6 +258,8 @@ END: Cython Metadata */
|
|
|
254
258
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
255
259
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
256
260
|
#endif
|
|
261
|
+
#undef CYTHON_USE_FREELISTS
|
|
262
|
+
#define CYTHON_USE_FREELISTS 0
|
|
257
263
|
#elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
|
|
258
264
|
#define CYTHON_COMPILING_IN_PYPY 0
|
|
259
265
|
#define CYTHON_COMPILING_IN_CPYTHON 0
|
|
@@ -263,11 +269,17 @@ END: Cython Metadata */
|
|
|
263
269
|
#ifndef CYTHON_USE_TYPE_SLOTS
|
|
264
270
|
#define CYTHON_USE_TYPE_SLOTS 1
|
|
265
271
|
#endif
|
|
272
|
+
#ifndef CYTHON_USE_TYPE_SPECS
|
|
273
|
+
#define CYTHON_USE_TYPE_SPECS 0
|
|
274
|
+
#endif
|
|
266
275
|
#undef CYTHON_USE_PYTYPE_LOOKUP
|
|
267
276
|
#define CYTHON_USE_PYTYPE_LOOKUP 0
|
|
268
277
|
#ifndef CYTHON_USE_ASYNC_SLOTS
|
|
269
278
|
#define CYTHON_USE_ASYNC_SLOTS 1
|
|
270
279
|
#endif
|
|
280
|
+
#ifndef CYTHON_USE_PYLONG_INTERNALS
|
|
281
|
+
#define CYTHON_USE_PYLONG_INTERNALS 0
|
|
282
|
+
#endif
|
|
271
283
|
#undef CYTHON_USE_PYLIST_INTERNALS
|
|
272
284
|
#define CYTHON_USE_PYLIST_INTERNALS 0
|
|
273
285
|
#ifndef CYTHON_USE_UNICODE_INTERNALS
|
|
@@ -275,8 +287,6 @@ END: Cython Metadata */
|
|
|
275
287
|
#endif
|
|
276
288
|
#undef CYTHON_USE_UNICODE_WRITER
|
|
277
289
|
#define CYTHON_USE_UNICODE_WRITER 0
|
|
278
|
-
#undef CYTHON_USE_PYLONG_INTERNALS
|
|
279
|
-
#define CYTHON_USE_PYLONG_INTERNALS 0
|
|
280
290
|
#ifndef CYTHON_AVOID_BORROWED_REFS
|
|
281
291
|
#define CYTHON_AVOID_BORROWED_REFS 0
|
|
282
292
|
#endif
|
|
@@ -288,11 +298,22 @@ END: Cython Metadata */
|
|
|
288
298
|
#endif
|
|
289
299
|
#undef CYTHON_FAST_THREAD_STATE
|
|
290
300
|
#define CYTHON_FAST_THREAD_STATE 0
|
|
301
|
+
#undef CYTHON_FAST_GIL
|
|
302
|
+
#define CYTHON_FAST_GIL 0
|
|
303
|
+
#ifndef CYTHON_METH_FASTCALL
|
|
304
|
+
#define CYTHON_METH_FASTCALL 1
|
|
305
|
+
#endif
|
|
291
306
|
#undef CYTHON_FAST_PYCALL
|
|
292
307
|
#define CYTHON_FAST_PYCALL 0
|
|
308
|
+
#ifndef CYTHON_PEP487_INIT_SUBCLASS
|
|
309
|
+
#define CYTHON_PEP487_INIT_SUBCLASS 1
|
|
310
|
+
#endif
|
|
293
311
|
#ifndef CYTHON_PEP489_MULTI_PHASE_INIT
|
|
294
312
|
#define CYTHON_PEP489_MULTI_PHASE_INIT 1
|
|
295
313
|
#endif
|
|
314
|
+
#ifndef CYTHON_USE_MODULE_STATE
|
|
315
|
+
#define CYTHON_USE_MODULE_STATE 0
|
|
316
|
+
#endif
|
|
296
317
|
#ifndef CYTHON_USE_TP_FINALIZE
|
|
297
318
|
#define CYTHON_USE_TP_FINALIZE 1
|
|
298
319
|
#endif
|
|
@@ -300,6 +321,12 @@ END: Cython Metadata */
|
|
|
300
321
|
#define CYTHON_USE_DICT_VERSIONS 0
|
|
301
322
|
#undef CYTHON_USE_EXC_INFO_STACK
|
|
302
323
|
#define CYTHON_USE_EXC_INFO_STACK 0
|
|
324
|
+
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
325
|
+
#define CYTHON_UPDATE_DESCRIPTOR_DOC 1
|
|
326
|
+
#endif
|
|
327
|
+
#ifndef CYTHON_USE_FREELISTS
|
|
328
|
+
#define CYTHON_USE_FREELISTS 0
|
|
329
|
+
#endif
|
|
303
330
|
#else
|
|
304
331
|
#define CYTHON_COMPILING_IN_PYPY 0
|
|
305
332
|
#define CYTHON_COMPILING_IN_CPYTHON 1
|
|
@@ -390,6 +417,9 @@ END: Cython Metadata */
|
|
|
390
417
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
391
418
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 1
|
|
392
419
|
#endif
|
|
420
|
+
#ifndef CYTHON_USE_FREELISTS
|
|
421
|
+
#define CYTHON_USE_FREELISTS 1
|
|
422
|
+
#endif
|
|
393
423
|
#endif
|
|
394
424
|
#if !defined(CYTHON_FAST_PYCCALL)
|
|
395
425
|
#define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
|
|
@@ -582,14 +612,14 @@ END: Cython Metadata */
|
|
|
582
612
|
PyObject *exception_table = NULL;
|
|
583
613
|
PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
|
|
584
614
|
#if __PYX_LIMITED_VERSION_HEX < 0x030B0000
|
|
585
|
-
PyObject *version_info;
|
|
615
|
+
PyObject *version_info;
|
|
586
616
|
PyObject *py_minor_version = NULL;
|
|
587
617
|
#endif
|
|
588
618
|
long minor_version = 0;
|
|
589
619
|
PyObject *type, *value, *traceback;
|
|
590
620
|
PyErr_Fetch(&type, &value, &traceback);
|
|
591
621
|
#if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
|
|
592
|
-
minor_version = 11;
|
|
622
|
+
minor_version = 11;
|
|
593
623
|
#else
|
|
594
624
|
if (!(version_info = PySys_GetObject("version_info"))) goto end;
|
|
595
625
|
if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
|
|
@@ -647,7 +677,7 @@ END: Cython Metadata */
|
|
|
647
677
|
PyObject *fv, PyObject *cell, PyObject* fn,
|
|
648
678
|
PyObject *name, int fline, PyObject *lnos) {
|
|
649
679
|
PyCodeObject *result;
|
|
650
|
-
PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
|
|
680
|
+
PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
|
|
651
681
|
if (!empty_bytes) return NULL;
|
|
652
682
|
result =
|
|
653
683
|
#if PY_VERSION_HEX >= 0x030C0000
|
|
@@ -733,8 +763,13 @@ END: Cython Metadata */
|
|
|
733
763
|
typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
|
|
734
764
|
Py_ssize_t nargs, PyObject *kwnames);
|
|
735
765
|
#else
|
|
736
|
-
#
|
|
737
|
-
#define
|
|
766
|
+
#if PY_VERSION_HEX >= 0x030d00A4
|
|
767
|
+
# define __Pyx_PyCFunctionFast PyCFunctionFast
|
|
768
|
+
# define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
|
|
769
|
+
#else
|
|
770
|
+
# define __Pyx_PyCFunctionFast _PyCFunctionFast
|
|
771
|
+
# define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
|
|
772
|
+
#endif
|
|
738
773
|
#endif
|
|
739
774
|
#if CYTHON_METH_FASTCALL
|
|
740
775
|
#define __Pyx_METH_FASTCALL METH_FASTCALL
|
|
@@ -1086,7 +1121,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
|
|
|
1086
1121
|
#define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
|
|
1087
1122
|
#define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
|
|
1088
1123
|
#endif
|
|
1089
|
-
#if
|
|
1124
|
+
#if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
|
|
1090
1125
|
#define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
|
|
1091
1126
|
#else
|
|
1092
1127
|
static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
|
|
@@ -1173,7 +1208,7 @@ static CYTHON_INLINE float __PYX_NAN() {
|
|
|
1173
1208
|
#endif
|
|
1174
1209
|
|
|
1175
1210
|
#define __PYX_MARK_ERR_POS(f_index, lineno) \
|
|
1176
|
-
{ __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__;
|
|
1211
|
+
{ __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
|
|
1177
1212
|
#define __PYX_ERR(f_index, lineno, Ln_error) \
|
|
1178
1213
|
{ __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
|
|
1179
1214
|
|
|
@@ -1288,24 +1323,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
|
|
|
1288
1323
|
#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
|
|
1289
1324
|
#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
|
|
1290
1325
|
#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
|
|
1291
|
-
#if CYTHON_COMPILING_IN_LIMITED_API
|
|
1292
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
|
|
1293
|
-
{
|
|
1294
|
-
const wchar_t *u_end = u;
|
|
1295
|
-
while (*u_end++) ;
|
|
1296
|
-
return (size_t)(u_end - u - 1);
|
|
1297
|
-
}
|
|
1298
|
-
#else
|
|
1299
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
|
|
1300
|
-
{
|
|
1301
|
-
const Py_UNICODE *u_end = u;
|
|
1302
|
-
while (*u_end++) ;
|
|
1303
|
-
return (size_t)(u_end - u - 1);
|
|
1304
|
-
}
|
|
1305
|
-
#endif
|
|
1306
1326
|
#define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
|
|
1307
|
-
#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
|
|
1308
|
-
#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
|
|
1309
1327
|
#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
|
|
1310
1328
|
#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
|
|
1311
1329
|
#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
|
|
@@ -1355,7 +1373,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
|
|
|
1355
1373
|
#endif
|
|
1356
1374
|
typedef Py_ssize_t __Pyx_compact_pylong;
|
|
1357
1375
|
typedef size_t __Pyx_compact_upylong;
|
|
1358
|
-
#else
|
|
1376
|
+
#else
|
|
1359
1377
|
#define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
|
|
1360
1378
|
#define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
|
|
1361
1379
|
#define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
|
|
@@ -1645,7 +1663,7 @@ typedef struct {
|
|
|
1645
1663
|
|
|
1646
1664
|
/* #### Code section: numeric_typedefs ### */
|
|
1647
1665
|
|
|
1648
|
-
/* "../../../../../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 # <<<<<<<<<<<<<<
|
|
@@ -1875,7 +1893,7 @@ struct __pyx_MemviewEnum_obj;
|
|
|
1875
1893
|
struct __pyx_memoryview_obj;
|
|
1876
1894
|
struct __pyx_memoryviewslice_obj;
|
|
1877
1895
|
|
|
1878
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1896
|
+
/* "../../../../../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
|
|
1879
1897
|
* ctypedef npy_longdouble longdouble_t
|
|
1880
1898
|
*
|
|
1881
1899
|
* ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
|
|
@@ -1884,7 +1902,7 @@ struct __pyx_memoryviewslice_obj;
|
|
|
1884
1902
|
*/
|
|
1885
1903
|
typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
1886
1904
|
|
|
1887
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1905
|
+
/* "../../../../../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
|
|
1888
1906
|
*
|
|
1889
1907
|
* ctypedef npy_cfloat cfloat_t
|
|
1890
1908
|
* ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1893,7 +1911,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
|
1893
1911
|
*/
|
|
1894
1912
|
typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
1895
1913
|
|
|
1896
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1914
|
+
/* "../../../../../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
|
|
1897
1915
|
* ctypedef npy_cfloat cfloat_t
|
|
1898
1916
|
* ctypedef npy_cdouble cdouble_t
|
|
1899
1917
|
* ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1902,7 +1920,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
|
1902
1920
|
*/
|
|
1903
1921
|
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
|
|
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":771
|
|
1906
1924
|
* ctypedef npy_clongdouble clongdouble_t
|
|
1907
1925
|
*
|
|
1908
1926
|
* ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
|
|
@@ -2208,8 +2226,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2208
2226
|
#define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
|
|
2209
2227
|
#define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
|
|
2210
2228
|
#else
|
|
2211
|
-
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2212
|
-
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2229
|
+
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2230
|
+
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2213
2231
|
#endif
|
|
2214
2232
|
#define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
|
|
2215
2233
|
#define __Pyx_KwValues_VARARGS(args, nargs) NULL
|
|
@@ -2225,8 +2243,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2225
2243
|
#else
|
|
2226
2244
|
#define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
|
|
2227
2245
|
#endif
|
|
2228
|
-
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg
|
|
2229
|
-
|
|
2246
|
+
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
|
|
2247
|
+
to have the same reference counting */
|
|
2248
|
+
#define __Pyx_Arg_XDECREF_FASTCALL(arg)
|
|
2230
2249
|
#else
|
|
2231
2250
|
#define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
|
|
2232
2251
|
#define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
|
|
@@ -2680,22 +2699,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
|
|
|
2680
2699
|
#endif
|
|
2681
2700
|
|
|
2682
2701
|
/* TypeImport.proto */
|
|
2683
|
-
#ifndef
|
|
2684
|
-
#define
|
|
2702
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2703
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2685
2704
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
2686
2705
|
#include <stdalign.h>
|
|
2687
2706
|
#endif
|
|
2688
2707
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
2689
|
-
#define
|
|
2708
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
|
|
2690
2709
|
#else
|
|
2691
|
-
#define
|
|
2710
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
|
|
2692
2711
|
#endif
|
|
2693
|
-
enum
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2712
|
+
enum __Pyx_ImportType_CheckSize_3_0_10 {
|
|
2713
|
+
__Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
|
|
2714
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
|
|
2715
|
+
__Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
|
|
2697
2716
|
};
|
|
2698
|
-
static PyTypeObject *
|
|
2717
|
+
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);
|
|
2699
2718
|
#endif
|
|
2700
2719
|
|
|
2701
2720
|
/* FetchSharedCythonModule.proto */
|
|
@@ -2788,7 +2807,7 @@ typedef struct {
|
|
|
2788
2807
|
#endif
|
|
2789
2808
|
void *defaults;
|
|
2790
2809
|
int defaults_pyobjects;
|
|
2791
|
-
size_t defaults_size;
|
|
2810
|
+
size_t defaults_size;
|
|
2792
2811
|
int flags;
|
|
2793
2812
|
PyObject *defaults_tuple;
|
|
2794
2813
|
PyObject *defaults_kwdict;
|
|
@@ -18160,7 +18179,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18160
18179
|
return __pyx_r;
|
|
18161
18180
|
}
|
|
18162
18181
|
|
|
18163
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18182
|
+
/* "../../../../../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
|
|
18164
18183
|
*
|
|
18165
18184
|
* @property
|
|
18166
18185
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18171,7 +18190,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18171
18190
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
18172
18191
|
PyObject *__pyx_r;
|
|
18173
18192
|
|
|
18174
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18193
|
+
/* "../../../../../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
|
|
18175
18194
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
18176
18195
|
* """
|
|
18177
18196
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -18181,7 +18200,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18181
18200
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
18182
18201
|
goto __pyx_L0;
|
|
18183
18202
|
|
|
18184
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18203
|
+
/* "../../../../../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
|
|
18185
18204
|
*
|
|
18186
18205
|
* @property
|
|
18187
18206
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18194,7 +18213,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18194
18213
|
return __pyx_r;
|
|
18195
18214
|
}
|
|
18196
18215
|
|
|
18197
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18216
|
+
/* "../../../../../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
|
|
18198
18217
|
*
|
|
18199
18218
|
* @property
|
|
18200
18219
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18208,7 +18227,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18208
18227
|
PyArray_Descr *__pyx_t_1;
|
|
18209
18228
|
__Pyx_RefNannySetupContext("descr", 1);
|
|
18210
18229
|
|
|
18211
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18230
|
+
/* "../../../../../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
|
|
18212
18231
|
* """Returns an owned reference to the dtype of the array.
|
|
18213
18232
|
* """
|
|
18214
18233
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -18221,7 +18240,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18221
18240
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
18222
18241
|
goto __pyx_L0;
|
|
18223
18242
|
|
|
18224
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18243
|
+
/* "../../../../../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
|
|
18225
18244
|
*
|
|
18226
18245
|
* @property
|
|
18227
18246
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18236,7 +18255,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18236
18255
|
return __pyx_r;
|
|
18237
18256
|
}
|
|
18238
18257
|
|
|
18239
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18258
|
+
/* "../../../../../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
|
|
18240
18259
|
*
|
|
18241
18260
|
* @property
|
|
18242
18261
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18247,7 +18266,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18247
18266
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
18248
18267
|
int __pyx_r;
|
|
18249
18268
|
|
|
18250
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18269
|
+
/* "../../../../../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
|
|
18251
18270
|
* """Returns the number of dimensions in the array.
|
|
18252
18271
|
* """
|
|
18253
18272
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -18257,7 +18276,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18257
18276
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
18258
18277
|
goto __pyx_L0;
|
|
18259
18278
|
|
|
18260
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18279
|
+
/* "../../../../../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
|
|
18261
18280
|
*
|
|
18262
18281
|
* @property
|
|
18263
18282
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18270,7 +18289,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18270
18289
|
return __pyx_r;
|
|
18271
18290
|
}
|
|
18272
18291
|
|
|
18273
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18292
|
+
/* "../../../../../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
|
|
18274
18293
|
*
|
|
18275
18294
|
* @property
|
|
18276
18295
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18281,7 +18300,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18281
18300
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
18282
18301
|
npy_intp *__pyx_r;
|
|
18283
18302
|
|
|
18284
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18303
|
+
/* "../../../../../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
|
|
18285
18304
|
* Can return NULL for 0-dimensional arrays.
|
|
18286
18305
|
* """
|
|
18287
18306
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -18291,7 +18310,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18291
18310
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
18292
18311
|
goto __pyx_L0;
|
|
18293
18312
|
|
|
18294
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18313
|
+
/* "../../../../../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
|
|
18295
18314
|
*
|
|
18296
18315
|
* @property
|
|
18297
18316
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18304,7 +18323,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18304
18323
|
return __pyx_r;
|
|
18305
18324
|
}
|
|
18306
18325
|
|
|
18307
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18326
|
+
/* "../../../../../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
|
|
18308
18327
|
*
|
|
18309
18328
|
* @property
|
|
18310
18329
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18315,7 +18334,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18315
18334
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
18316
18335
|
npy_intp *__pyx_r;
|
|
18317
18336
|
|
|
18318
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18337
|
+
/* "../../../../../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
|
|
18319
18338
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
18320
18339
|
* """
|
|
18321
18340
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -18325,7 +18344,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18325
18344
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
18326
18345
|
goto __pyx_L0;
|
|
18327
18346
|
|
|
18328
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18347
|
+
/* "../../../../../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
|
|
18329
18348
|
*
|
|
18330
18349
|
* @property
|
|
18331
18350
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18338,7 +18357,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18338
18357
|
return __pyx_r;
|
|
18339
18358
|
}
|
|
18340
18359
|
|
|
18341
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18360
|
+
/* "../../../../../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
|
|
18342
18361
|
*
|
|
18343
18362
|
* @property
|
|
18344
18363
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18349,7 +18368,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18349
18368
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
18350
18369
|
npy_intp __pyx_r;
|
|
18351
18370
|
|
|
18352
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18371
|
+
/* "../../../../../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
|
|
18353
18372
|
* """Returns the total size (in number of elements) of the array.
|
|
18354
18373
|
* """
|
|
18355
18374
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -18359,7 +18378,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18359
18378
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
18360
18379
|
goto __pyx_L0;
|
|
18361
18380
|
|
|
18362
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18381
|
+
/* "../../../../../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
|
|
18363
18382
|
*
|
|
18364
18383
|
* @property
|
|
18365
18384
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18372,7 +18391,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18372
18391
|
return __pyx_r;
|
|
18373
18392
|
}
|
|
18374
18393
|
|
|
18375
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18394
|
+
/* "../../../../../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
|
|
18376
18395
|
*
|
|
18377
18396
|
* @property
|
|
18378
18397
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18383,7 +18402,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18383
18402
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
18384
18403
|
char *__pyx_r;
|
|
18385
18404
|
|
|
18386
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18405
|
+
/* "../../../../../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
|
|
18387
18406
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
18388
18407
|
* """
|
|
18389
18408
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -18393,7 +18412,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18393
18412
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
18394
18413
|
goto __pyx_L0;
|
|
18395
18414
|
|
|
18396
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18415
|
+
/* "../../../../../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
|
|
18397
18416
|
*
|
|
18398
18417
|
* @property
|
|
18399
18418
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18406,7 +18425,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18406
18425
|
return __pyx_r;
|
|
18407
18426
|
}
|
|
18408
18427
|
|
|
18409
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18428
|
+
/* "../../../../../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
|
|
18410
18429
|
* ctypedef npy_cdouble complex_t
|
|
18411
18430
|
*
|
|
18412
18431
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18423,7 +18442,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18423
18442
|
int __pyx_clineno = 0;
|
|
18424
18443
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
|
|
18425
18444
|
|
|
18426
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18445
|
+
/* "../../../../../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
|
|
18427
18446
|
*
|
|
18428
18447
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
18429
18448
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -18437,7 +18456,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18437
18456
|
__pyx_t_1 = 0;
|
|
18438
18457
|
goto __pyx_L0;
|
|
18439
18458
|
|
|
18440
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18459
|
+
/* "../../../../../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
|
|
18441
18460
|
* ctypedef npy_cdouble complex_t
|
|
18442
18461
|
*
|
|
18443
18462
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18456,7 +18475,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18456
18475
|
return __pyx_r;
|
|
18457
18476
|
}
|
|
18458
18477
|
|
|
18459
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18478
|
+
/* "../../../../../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
|
|
18460
18479
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18461
18480
|
*
|
|
18462
18481
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18473,7 +18492,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18473
18492
|
int __pyx_clineno = 0;
|
|
18474
18493
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
|
|
18475
18494
|
|
|
18476
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18495
|
+
/* "../../../../../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
|
|
18477
18496
|
*
|
|
18478
18497
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
18479
18498
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -18487,7 +18506,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18487
18506
|
__pyx_t_1 = 0;
|
|
18488
18507
|
goto __pyx_L0;
|
|
18489
18508
|
|
|
18490
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18509
|
+
/* "../../../../../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
|
|
18491
18510
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18492
18511
|
*
|
|
18493
18512
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18506,7 +18525,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18506
18525
|
return __pyx_r;
|
|
18507
18526
|
}
|
|
18508
18527
|
|
|
18509
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18528
|
+
/* "../../../../../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
|
|
18510
18529
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18511
18530
|
*
|
|
18512
18531
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18523,7 +18542,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18523
18542
|
int __pyx_clineno = 0;
|
|
18524
18543
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
|
|
18525
18544
|
|
|
18526
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18545
|
+
/* "../../../../../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
|
|
18527
18546
|
*
|
|
18528
18547
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
18529
18548
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -18537,7 +18556,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18537
18556
|
__pyx_t_1 = 0;
|
|
18538
18557
|
goto __pyx_L0;
|
|
18539
18558
|
|
|
18540
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18559
|
+
/* "../../../../../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
|
|
18541
18560
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18542
18561
|
*
|
|
18543
18562
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18556,7 +18575,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18556
18575
|
return __pyx_r;
|
|
18557
18576
|
}
|
|
18558
18577
|
|
|
18559
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18578
|
+
/* "../../../../../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
|
|
18560
18579
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
18561
18580
|
*
|
|
18562
18581
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -18573,7 +18592,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18573
18592
|
int __pyx_clineno = 0;
|
|
18574
18593
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
|
|
18575
18594
|
|
|
18576
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18595
|
+
/* "../../../../../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
|
|
18577
18596
|
*
|
|
18578
18597
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
18579
18598
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -18587,7 +18606,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18587
18606
|
__pyx_t_1 = 0;
|
|
18588
18607
|
goto __pyx_L0;
|
|
18589
18608
|
|
|
18590
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18609
|
+
/* "../../../../../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
|
|
18591
18610
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
18592
18611
|
*
|
|
18593
18612
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -18606,7 +18625,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18606
18625
|
return __pyx_r;
|
|
18607
18626
|
}
|
|
18608
18627
|
|
|
18609
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18628
|
+
/* "../../../../../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
|
|
18610
18629
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
18611
18630
|
*
|
|
18612
18631
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -18623,7 +18642,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18623
18642
|
int __pyx_clineno = 0;
|
|
18624
18643
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
|
|
18625
18644
|
|
|
18626
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18645
|
+
/* "../../../../../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
|
|
18627
18646
|
*
|
|
18628
18647
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
18629
18648
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -18637,7 +18656,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18637
18656
|
__pyx_t_1 = 0;
|
|
18638
18657
|
goto __pyx_L0;
|
|
18639
18658
|
|
|
18640
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18659
|
+
/* "../../../../../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
|
|
18641
18660
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
18642
18661
|
*
|
|
18643
18662
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -18656,7 +18675,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18656
18675
|
return __pyx_r;
|
|
18657
18676
|
}
|
|
18658
18677
|
|
|
18659
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18678
|
+
/* "../../../../../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
|
|
18660
18679
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
18661
18680
|
*
|
|
18662
18681
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -18670,7 +18689,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18670
18689
|
int __pyx_t_1;
|
|
18671
18690
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
|
|
18672
18691
|
|
|
18673
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18692
|
+
/* "../../../../../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
|
|
18674
18693
|
*
|
|
18675
18694
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18676
18695
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -18680,7 +18699,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18680
18699
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
18681
18700
|
if (__pyx_t_1) {
|
|
18682
18701
|
|
|
18683
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18702
|
+
/* "../../../../../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
|
|
18684
18703
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18685
18704
|
* if PyDataType_HASSUBARRAY(d):
|
|
18686
18705
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -18692,7 +18711,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18692
18711
|
__pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
|
|
18693
18712
|
goto __pyx_L0;
|
|
18694
18713
|
|
|
18695
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18714
|
+
/* "../../../../../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
|
|
18696
18715
|
*
|
|
18697
18716
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18698
18717
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -18701,7 +18720,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18701
18720
|
*/
|
|
18702
18721
|
}
|
|
18703
18722
|
|
|
18704
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18723
|
+
/* "../../../../../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
|
|
18705
18724
|
* return <tuple>d.subarray.shape
|
|
18706
18725
|
* else:
|
|
18707
18726
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -18715,7 +18734,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18715
18734
|
goto __pyx_L0;
|
|
18716
18735
|
}
|
|
18717
18736
|
|
|
18718
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18737
|
+
/* "../../../../../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
|
|
18719
18738
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
18720
18739
|
*
|
|
18721
18740
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -18730,7 +18749,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18730
18749
|
return __pyx_r;
|
|
18731
18750
|
}
|
|
18732
18751
|
|
|
18733
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18752
|
+
/* "../../../../../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
|
|
18734
18753
|
* int _import_umath() except -1
|
|
18735
18754
|
*
|
|
18736
18755
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -18744,7 +18763,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18744
18763
|
const char *__pyx_filename = NULL;
|
|
18745
18764
|
int __pyx_clineno = 0;
|
|
18746
18765
|
|
|
18747
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18766
|
+
/* "../../../../../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
|
|
18748
18767
|
*
|
|
18749
18768
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
18750
18769
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -18753,7 +18772,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18753
18772
|
*/
|
|
18754
18773
|
Py_INCREF(__pyx_v_base);
|
|
18755
18774
|
|
|
18756
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18775
|
+
/* "../../../../../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
|
|
18757
18776
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
18758
18777
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
18759
18778
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -18762,7 +18781,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18762
18781
|
*/
|
|
18763
18782
|
__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)
|
|
18764
18783
|
|
|
18765
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18784
|
+
/* "../../../../../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
|
|
18766
18785
|
* int _import_umath() except -1
|
|
18767
18786
|
*
|
|
18768
18787
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -18777,7 +18796,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18777
18796
|
__pyx_L0:;
|
|
18778
18797
|
}
|
|
18779
18798
|
|
|
18780
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18799
|
+
/* "../../../../../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
|
|
18781
18800
|
* PyArray_SetBaseObject(arr, base)
|
|
18782
18801
|
*
|
|
18783
18802
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -18792,7 +18811,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18792
18811
|
int __pyx_t_1;
|
|
18793
18812
|
__Pyx_RefNannySetupContext("get_array_base", 1);
|
|
18794
18813
|
|
|
18795
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18814
|
+
/* "../../../../../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
|
|
18796
18815
|
*
|
|
18797
18816
|
* cdef inline object get_array_base(ndarray arr):
|
|
18798
18817
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -18801,7 +18820,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18801
18820
|
*/
|
|
18802
18821
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
18803
18822
|
|
|
18804
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18823
|
+
/* "../../../../../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
|
|
18805
18824
|
* cdef inline object get_array_base(ndarray arr):
|
|
18806
18825
|
* base = PyArray_BASE(arr)
|
|
18807
18826
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -18811,7 +18830,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18811
18830
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
18812
18831
|
if (__pyx_t_1) {
|
|
18813
18832
|
|
|
18814
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18833
|
+
/* "../../../../../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
|
|
18815
18834
|
* base = PyArray_BASE(arr)
|
|
18816
18835
|
* if base is NULL:
|
|
18817
18836
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -18822,7 +18841,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18822
18841
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
18823
18842
|
goto __pyx_L0;
|
|
18824
18843
|
|
|
18825
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18844
|
+
/* "../../../../../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
|
|
18826
18845
|
* cdef inline object get_array_base(ndarray arr):
|
|
18827
18846
|
* base = PyArray_BASE(arr)
|
|
18828
18847
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -18831,7 +18850,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18831
18850
|
*/
|
|
18832
18851
|
}
|
|
18833
18852
|
|
|
18834
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18853
|
+
/* "../../../../../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
|
|
18835
18854
|
* if base is NULL:
|
|
18836
18855
|
* return None
|
|
18837
18856
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -18843,7 +18862,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18843
18862
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
18844
18863
|
goto __pyx_L0;
|
|
18845
18864
|
|
|
18846
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18865
|
+
/* "../../../../../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
|
|
18847
18866
|
* PyArray_SetBaseObject(arr, base)
|
|
18848
18867
|
*
|
|
18849
18868
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -18858,7 +18877,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18858
18877
|
return __pyx_r;
|
|
18859
18878
|
}
|
|
18860
18879
|
|
|
18861
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18880
|
+
/* "../../../../../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
|
|
18862
18881
|
* # Versions of the import_* functions which are more suitable for
|
|
18863
18882
|
* # Cython code.
|
|
18864
18883
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18882,7 +18901,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18882
18901
|
int __pyx_clineno = 0;
|
|
18883
18902
|
__Pyx_RefNannySetupContext("import_array", 1);
|
|
18884
18903
|
|
|
18885
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18904
|
+
/* "../../../../../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
|
|
18886
18905
|
* # Cython code.
|
|
18887
18906
|
* cdef inline int import_array() except -1:
|
|
18888
18907
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18898,7 +18917,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18898
18917
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
18899
18918
|
/*try:*/ {
|
|
18900
18919
|
|
|
18901
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18920
|
+
/* "../../../../../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
|
|
18902
18921
|
* cdef inline int import_array() except -1:
|
|
18903
18922
|
* try:
|
|
18904
18923
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -18907,7 +18926,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18907
18926
|
*/
|
|
18908
18927
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
|
|
18909
18928
|
|
|
18910
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18929
|
+
/* "../../../../../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
|
|
18911
18930
|
* # Cython code.
|
|
18912
18931
|
* cdef inline int import_array() except -1:
|
|
18913
18932
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18921,7 +18940,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18921
18940
|
goto __pyx_L8_try_end;
|
|
18922
18941
|
__pyx_L3_error:;
|
|
18923
18942
|
|
|
18924
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18943
|
+
/* "../../../../../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
|
|
18925
18944
|
* try:
|
|
18926
18945
|
* __pyx_import_array()
|
|
18927
18946
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -18936,7 +18955,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18936
18955
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
18937
18956
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
18938
18957
|
|
|
18939
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18958
|
+
/* "../../../../../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
|
|
18940
18959
|
* __pyx_import_array()
|
|
18941
18960
|
* except Exception:
|
|
18942
18961
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -18951,7 +18970,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18951
18970
|
}
|
|
18952
18971
|
goto __pyx_L5_except_error;
|
|
18953
18972
|
|
|
18954
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18973
|
+
/* "../../../../../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
|
|
18955
18974
|
* # Cython code.
|
|
18956
18975
|
* cdef inline int import_array() except -1:
|
|
18957
18976
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18967,7 +18986,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18967
18986
|
__pyx_L8_try_end:;
|
|
18968
18987
|
}
|
|
18969
18988
|
|
|
18970
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18989
|
+
/* "../../../../../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
|
|
18971
18990
|
* # Versions of the import_* functions which are more suitable for
|
|
18972
18991
|
* # Cython code.
|
|
18973
18992
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18990,7 +19009,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18990
19009
|
return __pyx_r;
|
|
18991
19010
|
}
|
|
18992
19011
|
|
|
18993
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19012
|
+
/* "../../../../../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
|
|
18994
19013
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
18995
19014
|
*
|
|
18996
19015
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19014,7 +19033,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19014
19033
|
int __pyx_clineno = 0;
|
|
19015
19034
|
__Pyx_RefNannySetupContext("import_umath", 1);
|
|
19016
19035
|
|
|
19017
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19036
|
+
/* "../../../../../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
|
|
19018
19037
|
*
|
|
19019
19038
|
* cdef inline int import_umath() except -1:
|
|
19020
19039
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19030,7 +19049,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19030
19049
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19031
19050
|
/*try:*/ {
|
|
19032
19051
|
|
|
19033
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19052
|
+
/* "../../../../../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
|
|
19034
19053
|
* cdef inline int import_umath() except -1:
|
|
19035
19054
|
* try:
|
|
19036
19055
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19039,7 +19058,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19039
19058
|
*/
|
|
19040
19059
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
|
|
19041
19060
|
|
|
19042
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19061
|
+
/* "../../../../../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
|
|
19043
19062
|
*
|
|
19044
19063
|
* cdef inline int import_umath() except -1:
|
|
19045
19064
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19053,7 +19072,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19053
19072
|
goto __pyx_L8_try_end;
|
|
19054
19073
|
__pyx_L3_error:;
|
|
19055
19074
|
|
|
19056
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19075
|
+
/* "../../../../../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
|
|
19057
19076
|
* try:
|
|
19058
19077
|
* _import_umath()
|
|
19059
19078
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19068,7 +19087,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19068
19087
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19069
19088
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19070
19089
|
|
|
19071
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19090
|
+
/* "../../../../../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
|
|
19072
19091
|
* _import_umath()
|
|
19073
19092
|
* except Exception:
|
|
19074
19093
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19083,7 +19102,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19083
19102
|
}
|
|
19084
19103
|
goto __pyx_L5_except_error;
|
|
19085
19104
|
|
|
19086
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19105
|
+
/* "../../../../../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
|
|
19087
19106
|
*
|
|
19088
19107
|
* cdef inline int import_umath() except -1:
|
|
19089
19108
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19099,7 +19118,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19099
19118
|
__pyx_L8_try_end:;
|
|
19100
19119
|
}
|
|
19101
19120
|
|
|
19102
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19121
|
+
/* "../../../../../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
|
|
19103
19122
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19104
19123
|
*
|
|
19105
19124
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19122,7 +19141,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19122
19141
|
return __pyx_r;
|
|
19123
19142
|
}
|
|
19124
19143
|
|
|
19125
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19144
|
+
/* "../../../../../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
|
|
19126
19145
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19127
19146
|
*
|
|
19128
19147
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19146,7 +19165,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19146
19165
|
int __pyx_clineno = 0;
|
|
19147
19166
|
__Pyx_RefNannySetupContext("import_ufunc", 1);
|
|
19148
19167
|
|
|
19149
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19168
|
+
/* "../../../../../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
|
|
19150
19169
|
*
|
|
19151
19170
|
* cdef inline int import_ufunc() except -1:
|
|
19152
19171
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19162,7 +19181,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19162
19181
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19163
19182
|
/*try:*/ {
|
|
19164
19183
|
|
|
19165
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19184
|
+
/* "../../../../../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
|
|
19166
19185
|
* cdef inline int import_ufunc() except -1:
|
|
19167
19186
|
* try:
|
|
19168
19187
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19171,7 +19190,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19171
19190
|
*/
|
|
19172
19191
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
|
|
19173
19192
|
|
|
19174
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19193
|
+
/* "../../../../../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
|
|
19175
19194
|
*
|
|
19176
19195
|
* cdef inline int import_ufunc() except -1:
|
|
19177
19196
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19185,7 +19204,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19185
19204
|
goto __pyx_L8_try_end;
|
|
19186
19205
|
__pyx_L3_error:;
|
|
19187
19206
|
|
|
19188
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19207
|
+
/* "../../../../../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
|
|
19189
19208
|
* try:
|
|
19190
19209
|
* _import_umath()
|
|
19191
19210
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19200,7 +19219,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19200
19219
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19201
19220
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19202
19221
|
|
|
19203
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19222
|
+
/* "../../../../../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
|
|
19204
19223
|
* _import_umath()
|
|
19205
19224
|
* except Exception:
|
|
19206
19225
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19215,7 +19234,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19215
19234
|
}
|
|
19216
19235
|
goto __pyx_L5_except_error;
|
|
19217
19236
|
|
|
19218
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19237
|
+
/* "../../../../../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
|
|
19219
19238
|
*
|
|
19220
19239
|
* cdef inline int import_ufunc() except -1:
|
|
19221
19240
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19231,7 +19250,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19231
19250
|
__pyx_L8_try_end:;
|
|
19232
19251
|
}
|
|
19233
19252
|
|
|
19234
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19253
|
+
/* "../../../../../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
|
|
19235
19254
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19236
19255
|
*
|
|
19237
19256
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19254,7 +19273,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19254
19273
|
return __pyx_r;
|
|
19255
19274
|
}
|
|
19256
19275
|
|
|
19257
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19276
|
+
/* "../../../../../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
|
|
19258
19277
|
*
|
|
19259
19278
|
*
|
|
19260
19279
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19265,7 +19284,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19265
19284
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
19266
19285
|
int __pyx_r;
|
|
19267
19286
|
|
|
19268
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19287
|
+
/* "../../../../../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
|
|
19269
19288
|
* bool
|
|
19270
19289
|
* """
|
|
19271
19290
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19275,7 +19294,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19275
19294
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
19276
19295
|
goto __pyx_L0;
|
|
19277
19296
|
|
|
19278
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19297
|
+
/* "../../../../../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
|
|
19279
19298
|
*
|
|
19280
19299
|
*
|
|
19281
19300
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19288,7 +19307,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19288
19307
|
return __pyx_r;
|
|
19289
19308
|
}
|
|
19290
19309
|
|
|
19291
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19310
|
+
/* "../../../../../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
|
|
19292
19311
|
*
|
|
19293
19312
|
*
|
|
19294
19313
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19299,7 +19318,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19299
19318
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
19300
19319
|
int __pyx_r;
|
|
19301
19320
|
|
|
19302
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19321
|
+
/* "../../../../../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
|
|
19303
19322
|
* bool
|
|
19304
19323
|
* """
|
|
19305
19324
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19309,7 +19328,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19309
19328
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
19310
19329
|
goto __pyx_L0;
|
|
19311
19330
|
|
|
19312
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19331
|
+
/* "../../../../../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
|
|
19313
19332
|
*
|
|
19314
19333
|
*
|
|
19315
19334
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19322,7 +19341,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19322
19341
|
return __pyx_r;
|
|
19323
19342
|
}
|
|
19324
19343
|
|
|
19325
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19344
|
+
/* "../../../../../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
|
|
19326
19345
|
*
|
|
19327
19346
|
*
|
|
19328
19347
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19333,7 +19352,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19333
19352
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
19334
19353
|
npy_datetime __pyx_r;
|
|
19335
19354
|
|
|
19336
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19355
|
+
/* "../../../../../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
|
|
19337
19356
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
19338
19357
|
* """
|
|
19339
19358
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19343,7 +19362,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19343
19362
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
19344
19363
|
goto __pyx_L0;
|
|
19345
19364
|
|
|
19346
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19365
|
+
/* "../../../../../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
|
|
19347
19366
|
*
|
|
19348
19367
|
*
|
|
19349
19368
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19356,7 +19375,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19356
19375
|
return __pyx_r;
|
|
19357
19376
|
}
|
|
19358
19377
|
|
|
19359
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19378
|
+
/* "../../../../../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
|
|
19360
19379
|
*
|
|
19361
19380
|
*
|
|
19362
19381
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19367,7 +19386,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19367
19386
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
19368
19387
|
npy_timedelta __pyx_r;
|
|
19369
19388
|
|
|
19370
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19389
|
+
/* "../../../../../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
|
|
19371
19390
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
19372
19391
|
* """
|
|
19373
19392
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19377,7 +19396,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19377
19396
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
19378
19397
|
goto __pyx_L0;
|
|
19379
19398
|
|
|
19380
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19399
|
+
/* "../../../../../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
|
|
19381
19400
|
*
|
|
19382
19401
|
*
|
|
19383
19402
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19390,7 +19409,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19390
19409
|
return __pyx_r;
|
|
19391
19410
|
}
|
|
19392
19411
|
|
|
19393
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19412
|
+
/* "../../../../../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
|
|
19394
19413
|
*
|
|
19395
19414
|
*
|
|
19396
19415
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19401,7 +19420,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19401
19420
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
19402
19421
|
NPY_DATETIMEUNIT __pyx_r;
|
|
19403
19422
|
|
|
19404
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19423
|
+
/* "../../../../../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
|
|
19405
19424
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
19406
19425
|
* """
|
|
19407
19426
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -19409,7 +19428,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
19409
19428
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
19410
19429
|
goto __pyx_L0;
|
|
19411
19430
|
|
|
19412
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19431
|
+
/* "../../../../../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
|
|
19413
19432
|
*
|
|
19414
19433
|
*
|
|
19415
19434
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -22672,7 +22691,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
22672
22691
|
__Pyx_GOTREF(__pyx_tuple__8);
|
|
22673
22692
|
__Pyx_GIVEREF(__pyx_tuple__8);
|
|
22674
22693
|
|
|
22675
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
22694
|
+
/* "../../../../../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
|
|
22676
22695
|
* __pyx_import_array()
|
|
22677
22696
|
* except Exception:
|
|
22678
22697
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -22683,7 +22702,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
22683
22702
|
__Pyx_GOTREF(__pyx_tuple__9);
|
|
22684
22703
|
__Pyx_GIVEREF(__pyx_tuple__9);
|
|
22685
22704
|
|
|
22686
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
22705
|
+
/* "../../../../../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
|
|
22687
22706
|
* _import_umath()
|
|
22688
22707
|
* except Exception:
|
|
22689
22708
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -23119,33 +23138,33 @@ static int __Pyx_modinit_type_import_code(void) {
|
|
|
23119
23138
|
/*--- Type import code ---*/
|
|
23120
23139
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
23121
23140
|
__Pyx_GOTREF(__pyx_t_1);
|
|
23122
|
-
__pyx_ptype_7cpython_4type_type =
|
|
23141
|
+
__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
|
23123
23142
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
23124
|
-
sizeof(PyTypeObject),
|
|
23143
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
23125
23144
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
23126
|
-
sizeof(PyTypeObject),
|
|
23145
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
23127
23146
|
#else
|
|
23128
|
-
sizeof(PyHeapTypeObject),
|
|
23147
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
|
|
23129
23148
|
#endif
|
|
23130
|
-
|
|
23149
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
23131
23150
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
23132
23151
|
__pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
|
|
23133
23152
|
__Pyx_GOTREF(__pyx_t_1);
|
|
23134
|
-
__pyx_ptype_5numpy_dtype =
|
|
23135
|
-
__pyx_ptype_5numpy_flatiter =
|
|
23136
|
-
__pyx_ptype_5numpy_broadcast =
|
|
23137
|
-
__pyx_ptype_5numpy_ndarray =
|
|
23138
|
-
__pyx_ptype_5numpy_generic =
|
|
23139
|
-
__pyx_ptype_5numpy_number =
|
|
23140
|
-
__pyx_ptype_5numpy_integer =
|
|
23141
|
-
__pyx_ptype_5numpy_signedinteger =
|
|
23142
|
-
__pyx_ptype_5numpy_unsignedinteger =
|
|
23143
|
-
__pyx_ptype_5numpy_inexact =
|
|
23144
|
-
__pyx_ptype_5numpy_floating =
|
|
23145
|
-
__pyx_ptype_5numpy_complexfloating =
|
|
23146
|
-
__pyx_ptype_5numpy_flexible =
|
|
23147
|
-
__pyx_ptype_5numpy_character =
|
|
23148
|
-
__pyx_ptype_5numpy_ufunc =
|
|
23153
|
+
__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)
|
|
23154
|
+
__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)
|
|
23155
|
+
__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)
|
|
23156
|
+
__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)
|
|
23157
|
+
__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)
|
|
23158
|
+
__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)
|
|
23159
|
+
__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)
|
|
23160
|
+
__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)
|
|
23161
|
+
__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)
|
|
23162
|
+
__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)
|
|
23163
|
+
__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)
|
|
23164
|
+
__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)
|
|
23165
|
+
__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)
|
|
23166
|
+
__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)
|
|
23167
|
+
__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)
|
|
23149
23168
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
23150
23169
|
__Pyx_RefNannyFinishContext();
|
|
23151
23170
|
return 0;
|
|
@@ -24521,11 +24540,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
|
|
|
24521
24540
|
{
|
|
24522
24541
|
int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
|
|
24523
24542
|
if (unlikely(eq != 0)) {
|
|
24524
|
-
if (unlikely(eq < 0)) return NULL;
|
|
24543
|
+
if (unlikely(eq < 0)) return NULL;
|
|
24525
24544
|
return kwvalues[i];
|
|
24526
24545
|
}
|
|
24527
24546
|
}
|
|
24528
|
-
return NULL;
|
|
24547
|
+
return NULL;
|
|
24529
24548
|
}
|
|
24530
24549
|
#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
|
|
24531
24550
|
CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
|
|
@@ -24638,7 +24657,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
24638
24657
|
if (*name) {
|
|
24639
24658
|
values[name-argnames] = value;
|
|
24640
24659
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
24641
|
-
Py_INCREF(value);
|
|
24660
|
+
Py_INCREF(value);
|
|
24642
24661
|
Py_DECREF(key);
|
|
24643
24662
|
#endif
|
|
24644
24663
|
key = NULL;
|
|
@@ -24657,7 +24676,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
24657
24676
|
&& _PyString_Eq(**name, key)) {
|
|
24658
24677
|
values[name-argnames] = value;
|
|
24659
24678
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
24660
|
-
value = NULL;
|
|
24679
|
+
value = NULL;
|
|
24661
24680
|
#endif
|
|
24662
24681
|
break;
|
|
24663
24682
|
}
|
|
@@ -24689,7 +24708,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
24689
24708
|
if (cmp == 0) {
|
|
24690
24709
|
values[name-argnames] = value;
|
|
24691
24710
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
24692
|
-
value = NULL;
|
|
24711
|
+
value = NULL;
|
|
24693
24712
|
#endif
|
|
24694
24713
|
break;
|
|
24695
24714
|
}
|
|
@@ -27197,10 +27216,10 @@ __PYX_GOOD:
|
|
|
27197
27216
|
#endif
|
|
27198
27217
|
|
|
27199
27218
|
/* TypeImport */
|
|
27200
|
-
#ifndef
|
|
27201
|
-
#define
|
|
27202
|
-
static PyTypeObject *
|
|
27203
|
-
size_t size, size_t alignment, enum
|
|
27219
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_0_10
|
|
27220
|
+
#define __PYX_HAVE_RT_ImportType_3_0_10
|
|
27221
|
+
static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
|
|
27222
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
|
|
27204
27223
|
{
|
|
27205
27224
|
PyObject *result = 0;
|
|
27206
27225
|
char warning[200];
|
|
@@ -27254,7 +27273,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
27254
27273
|
module_name, class_name, size, basicsize+itemsize);
|
|
27255
27274
|
goto bad;
|
|
27256
27275
|
}
|
|
27257
|
-
if (check_size ==
|
|
27276
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
|
|
27258
27277
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
27259
27278
|
PyErr_Format(PyExc_ValueError,
|
|
27260
27279
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -27262,7 +27281,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
27262
27281
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
27263
27282
|
goto bad;
|
|
27264
27283
|
}
|
|
27265
|
-
else if (check_size ==
|
|
27284
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
|
|
27266
27285
|
PyOS_snprintf(warning, sizeof(warning),
|
|
27267
27286
|
"%s.%s size changed, may indicate binary incompatibility. "
|
|
27268
27287
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -28262,7 +28281,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
|
|
|
28262
28281
|
default:
|
|
28263
28282
|
return NULL;
|
|
28264
28283
|
}
|
|
28265
|
-
return ((
|
|
28284
|
+
return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
|
|
28266
28285
|
}
|
|
28267
28286
|
static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
|
|
28268
28287
|
{
|
|
@@ -28721,7 +28740,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
|
|
|
28721
28740
|
#else
|
|
28722
28741
|
py_code = PyCode_NewEmpty(filename, funcname, py_line);
|
|
28723
28742
|
#endif
|
|
28724
|
-
Py_XDECREF(py_funcname);
|
|
28743
|
+
Py_XDECREF(py_funcname);
|
|
28725
28744
|
return py_code;
|
|
28726
28745
|
bad:
|
|
28727
28746
|
Py_XDECREF(py_funcname);
|