biotite 0.39.0__cp312-cp312-macosx_11_0_arm64.whl → 0.41.0__cp312-cp312-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of biotite might be problematic. Click here for more details.
- biotite/__init__.py +3 -3
- biotite/application/dssp/app.py +18 -18
- biotite/database/pubchem/download.py +23 -23
- biotite/database/pubchem/query.py +7 -7
- biotite/database/rcsb/download.py +19 -14
- biotite/file.py +17 -9
- biotite/sequence/align/banded.c +256 -235
- biotite/sequence/align/banded.cpython-312-darwin.so +0 -0
- biotite/sequence/align/cigar.py +60 -15
- biotite/sequence/align/kmeralphabet.c +241 -220
- biotite/sequence/align/kmeralphabet.cpython-312-darwin.so +0 -0
- biotite/sequence/align/kmersimilarity.c +213 -194
- biotite/sequence/align/kmersimilarity.cpython-312-darwin.so +0 -0
- biotite/sequence/align/kmertable.cpp +231 -203
- biotite/sequence/align/kmertable.cpython-312-darwin.so +0 -0
- biotite/sequence/align/localgapped.c +256 -235
- biotite/sequence/align/localgapped.cpython-312-darwin.so +0 -0
- biotite/sequence/align/localungapped.c +233 -212
- biotite/sequence/align/localungapped.cpython-312-darwin.so +0 -0
- biotite/sequence/align/multiple.c +253 -232
- biotite/sequence/align/multiple.cpython-312-darwin.so +0 -0
- biotite/sequence/align/pairwise.c +272 -251
- biotite/sequence/align/pairwise.cpython-312-darwin.so +0 -0
- biotite/sequence/align/permutation.c +213 -194
- biotite/sequence/align/permutation.cpython-312-darwin.so +0 -0
- biotite/sequence/align/selector.c +215 -195
- biotite/sequence/align/selector.cpython-312-darwin.so +0 -0
- biotite/sequence/align/tracetable.c +213 -193
- biotite/sequence/align/tracetable.cpython-312-darwin.so +0 -0
- biotite/sequence/annotation.py +2 -2
- biotite/sequence/codec.c +233 -212
- biotite/sequence/codec.cpython-312-darwin.so +0 -0
- biotite/sequence/io/fasta/convert.py +27 -24
- biotite/sequence/phylo/nj.c +213 -194
- biotite/sequence/phylo/nj.cpython-312-darwin.so +0 -0
- biotite/sequence/phylo/tree.c +225 -200
- biotite/sequence/phylo/tree.cpython-312-darwin.so +0 -0
- biotite/sequence/phylo/upgma.c +213 -194
- biotite/sequence/phylo/upgma.cpython-312-darwin.so +0 -0
- biotite/structure/__init__.py +2 -0
- biotite/structure/basepairs.py +7 -12
- biotite/structure/bonds.c +1435 -1277
- biotite/structure/bonds.cpython-312-darwin.so +0 -0
- biotite/structure/celllist.c +215 -195
- biotite/structure/celllist.cpython-312-darwin.so +0 -0
- biotite/structure/charges.c +1050 -1099
- biotite/structure/charges.cpython-312-darwin.so +0 -0
- biotite/structure/dotbracket.py +2 -0
- biotite/structure/filter.py +30 -37
- biotite/structure/info/__init__.py +5 -8
- biotite/structure/info/atoms.py +31 -68
- biotite/structure/info/bonds.py +47 -101
- biotite/structure/info/ccd/README.rst +8 -0
- biotite/structure/info/ccd/amino_acids.txt +1663 -0
- biotite/structure/info/ccd/carbohydrates.txt +1135 -0
- biotite/structure/info/ccd/components.bcif +0 -0
- biotite/structure/info/ccd/nucleotides.txt +798 -0
- biotite/structure/info/ccd.py +95 -0
- biotite/structure/info/groups.py +90 -0
- biotite/structure/info/masses.py +21 -20
- biotite/structure/info/misc.py +78 -25
- biotite/structure/info/standardize.py +17 -12
- biotite/structure/integrity.py +19 -70
- biotite/structure/io/__init__.py +2 -4
- biotite/structure/io/ctab.py +12 -106
- biotite/structure/io/general.py +167 -181
- biotite/structure/io/gro/file.py +16 -16
- biotite/structure/io/mmtf/__init__.py +3 -0
- biotite/structure/io/mmtf/convertarray.c +217 -196
- biotite/structure/io/mmtf/convertarray.cpython-312-darwin.so +0 -0
- biotite/structure/io/mmtf/convertfile.c +215 -195
- biotite/structure/io/mmtf/convertfile.cpython-312-darwin.so +0 -0
- biotite/structure/io/mmtf/decode.c +223 -202
- biotite/structure/io/mmtf/decode.cpython-312-darwin.so +0 -0
- biotite/structure/io/mmtf/encode.c +213 -194
- biotite/structure/io/mmtf/encode.cpython-312-darwin.so +0 -0
- biotite/structure/io/mmtf/file.py +34 -26
- biotite/structure/io/mol/__init__.py +4 -2
- biotite/structure/io/mol/convert.py +71 -7
- biotite/structure/io/mol/ctab.py +414 -0
- biotite/structure/io/mol/header.py +116 -0
- biotite/structure/io/mol/{file.py → mol.py} +69 -82
- biotite/structure/io/mol/sdf.py +909 -0
- biotite/structure/io/npz/__init__.py +3 -0
- biotite/structure/io/npz/file.py +21 -18
- biotite/structure/io/pdb/__init__.py +3 -3
- biotite/structure/io/pdb/file.py +89 -34
- biotite/structure/io/pdb/hybrid36.c +63 -43
- biotite/structure/io/pdb/hybrid36.cpython-312-darwin.so +0 -0
- biotite/structure/io/pdbqt/file.py +32 -32
- biotite/structure/io/pdbx/__init__.py +12 -6
- biotite/structure/io/pdbx/bcif.py +648 -0
- biotite/structure/io/pdbx/cif.py +1032 -0
- biotite/structure/io/pdbx/component.py +246 -0
- biotite/structure/io/pdbx/convert.py +858 -386
- biotite/structure/io/pdbx/encoding.c +112803 -0
- biotite/structure/io/pdbx/encoding.cpython-312-darwin.so +0 -0
- biotite/structure/io/pdbx/legacy.py +267 -0
- biotite/structure/molecules.py +151 -151
- biotite/structure/repair.py +253 -0
- biotite/structure/sasa.c +213 -194
- biotite/structure/sasa.cpython-312-darwin.so +0 -0
- biotite/structure/sequence.py +112 -0
- biotite/structure/superimpose.py +618 -116
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/METADATA +3 -3
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/RECORD +109 -103
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/WHEEL +1 -1
- biotite/structure/info/amino_acids.json +0 -1556
- biotite/structure/info/amino_acids.py +0 -42
- biotite/structure/info/carbohydrates.json +0 -1122
- biotite/structure/info/carbohydrates.py +0 -39
- biotite/structure/info/intra_bonds.msgpack +0 -0
- biotite/structure/info/link_types.msgpack +0 -1
- biotite/structure/info/nucleotides.json +0 -772
- biotite/structure/info/nucleotides.py +0 -39
- biotite/structure/info/residue_masses.msgpack +0 -0
- biotite/structure/info/residue_names.msgpack +0 -3
- biotite/structure/info/residues.msgpack +0 -0
- biotite/structure/io/pdbx/file.py +0 -652
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/LICENSE.rst +0 -0
- {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/top_level.txt +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Generated by Cython 3.0.
|
|
1
|
+
/* Generated by Cython 3.0.10 */
|
|
2
2
|
|
|
3
3
|
/* BEGIN: Cython Metadata
|
|
4
4
|
{
|
|
@@ -37,10 +37,10 @@ END: Cython Metadata */
|
|
|
37
37
|
#else
|
|
38
38
|
#define __PYX_EXTRA_ABI_MODULE_NAME ""
|
|
39
39
|
#endif
|
|
40
|
-
#define CYTHON_ABI "
|
|
40
|
+
#define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
|
|
41
41
|
#define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
|
|
42
42
|
#define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
|
|
43
|
-
#define CYTHON_HEX_VERSION
|
|
43
|
+
#define CYTHON_HEX_VERSION 0x03000AF0
|
|
44
44
|
#define CYTHON_FUTURE_DIVISION 1
|
|
45
45
|
#include <stddef.h>
|
|
46
46
|
#ifndef offsetof
|
|
@@ -132,6 +132,8 @@ END: Cython Metadata */
|
|
|
132
132
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
133
133
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
134
134
|
#endif
|
|
135
|
+
#undef CYTHON_USE_FREELISTS
|
|
136
|
+
#define CYTHON_USE_FREELISTS 0
|
|
135
137
|
#elif defined(PYPY_VERSION)
|
|
136
138
|
#define CYTHON_COMPILING_IN_PYPY 1
|
|
137
139
|
#define CYTHON_COMPILING_IN_CPYTHON 0
|
|
@@ -193,6 +195,8 @@ END: Cython Metadata */
|
|
|
193
195
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
194
196
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
195
197
|
#endif
|
|
198
|
+
#undef CYTHON_USE_FREELISTS
|
|
199
|
+
#define CYTHON_USE_FREELISTS 0
|
|
196
200
|
#elif defined(CYTHON_LIMITED_API)
|
|
197
201
|
#ifdef Py_LIMITED_API
|
|
198
202
|
#undef __PYX_LIMITED_VERSION_HEX
|
|
@@ -254,6 +258,8 @@ END: Cython Metadata */
|
|
|
254
258
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
255
259
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 0
|
|
256
260
|
#endif
|
|
261
|
+
#undef CYTHON_USE_FREELISTS
|
|
262
|
+
#define CYTHON_USE_FREELISTS 0
|
|
257
263
|
#elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
|
|
258
264
|
#define CYTHON_COMPILING_IN_PYPY 0
|
|
259
265
|
#define CYTHON_COMPILING_IN_CPYTHON 0
|
|
@@ -263,11 +269,17 @@ END: Cython Metadata */
|
|
|
263
269
|
#ifndef CYTHON_USE_TYPE_SLOTS
|
|
264
270
|
#define CYTHON_USE_TYPE_SLOTS 1
|
|
265
271
|
#endif
|
|
272
|
+
#ifndef CYTHON_USE_TYPE_SPECS
|
|
273
|
+
#define CYTHON_USE_TYPE_SPECS 0
|
|
274
|
+
#endif
|
|
266
275
|
#undef CYTHON_USE_PYTYPE_LOOKUP
|
|
267
276
|
#define CYTHON_USE_PYTYPE_LOOKUP 0
|
|
268
277
|
#ifndef CYTHON_USE_ASYNC_SLOTS
|
|
269
278
|
#define CYTHON_USE_ASYNC_SLOTS 1
|
|
270
279
|
#endif
|
|
280
|
+
#ifndef CYTHON_USE_PYLONG_INTERNALS
|
|
281
|
+
#define CYTHON_USE_PYLONG_INTERNALS 0
|
|
282
|
+
#endif
|
|
271
283
|
#undef CYTHON_USE_PYLIST_INTERNALS
|
|
272
284
|
#define CYTHON_USE_PYLIST_INTERNALS 0
|
|
273
285
|
#ifndef CYTHON_USE_UNICODE_INTERNALS
|
|
@@ -275,8 +287,6 @@ END: Cython Metadata */
|
|
|
275
287
|
#endif
|
|
276
288
|
#undef CYTHON_USE_UNICODE_WRITER
|
|
277
289
|
#define CYTHON_USE_UNICODE_WRITER 0
|
|
278
|
-
#undef CYTHON_USE_PYLONG_INTERNALS
|
|
279
|
-
#define CYTHON_USE_PYLONG_INTERNALS 0
|
|
280
290
|
#ifndef CYTHON_AVOID_BORROWED_REFS
|
|
281
291
|
#define CYTHON_AVOID_BORROWED_REFS 0
|
|
282
292
|
#endif
|
|
@@ -288,11 +298,22 @@ END: Cython Metadata */
|
|
|
288
298
|
#endif
|
|
289
299
|
#undef CYTHON_FAST_THREAD_STATE
|
|
290
300
|
#define CYTHON_FAST_THREAD_STATE 0
|
|
301
|
+
#undef CYTHON_FAST_GIL
|
|
302
|
+
#define CYTHON_FAST_GIL 0
|
|
303
|
+
#ifndef CYTHON_METH_FASTCALL
|
|
304
|
+
#define CYTHON_METH_FASTCALL 1
|
|
305
|
+
#endif
|
|
291
306
|
#undef CYTHON_FAST_PYCALL
|
|
292
307
|
#define CYTHON_FAST_PYCALL 0
|
|
308
|
+
#ifndef CYTHON_PEP487_INIT_SUBCLASS
|
|
309
|
+
#define CYTHON_PEP487_INIT_SUBCLASS 1
|
|
310
|
+
#endif
|
|
293
311
|
#ifndef CYTHON_PEP489_MULTI_PHASE_INIT
|
|
294
312
|
#define CYTHON_PEP489_MULTI_PHASE_INIT 1
|
|
295
313
|
#endif
|
|
314
|
+
#ifndef CYTHON_USE_MODULE_STATE
|
|
315
|
+
#define CYTHON_USE_MODULE_STATE 0
|
|
316
|
+
#endif
|
|
296
317
|
#ifndef CYTHON_USE_TP_FINALIZE
|
|
297
318
|
#define CYTHON_USE_TP_FINALIZE 1
|
|
298
319
|
#endif
|
|
@@ -300,6 +321,12 @@ END: Cython Metadata */
|
|
|
300
321
|
#define CYTHON_USE_DICT_VERSIONS 0
|
|
301
322
|
#undef CYTHON_USE_EXC_INFO_STACK
|
|
302
323
|
#define CYTHON_USE_EXC_INFO_STACK 0
|
|
324
|
+
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
325
|
+
#define CYTHON_UPDATE_DESCRIPTOR_DOC 1
|
|
326
|
+
#endif
|
|
327
|
+
#ifndef CYTHON_USE_FREELISTS
|
|
328
|
+
#define CYTHON_USE_FREELISTS 0
|
|
329
|
+
#endif
|
|
303
330
|
#else
|
|
304
331
|
#define CYTHON_COMPILING_IN_PYPY 0
|
|
305
332
|
#define CYTHON_COMPILING_IN_CPYTHON 1
|
|
@@ -390,6 +417,9 @@ END: Cython Metadata */
|
|
|
390
417
|
#ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
|
|
391
418
|
#define CYTHON_UPDATE_DESCRIPTOR_DOC 1
|
|
392
419
|
#endif
|
|
420
|
+
#ifndef CYTHON_USE_FREELISTS
|
|
421
|
+
#define CYTHON_USE_FREELISTS 1
|
|
422
|
+
#endif
|
|
393
423
|
#endif
|
|
394
424
|
#if !defined(CYTHON_FAST_PYCCALL)
|
|
395
425
|
#define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
|
|
@@ -582,14 +612,14 @@ END: Cython Metadata */
|
|
|
582
612
|
PyObject *exception_table = NULL;
|
|
583
613
|
PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
|
|
584
614
|
#if __PYX_LIMITED_VERSION_HEX < 0x030B0000
|
|
585
|
-
PyObject *version_info;
|
|
615
|
+
PyObject *version_info;
|
|
586
616
|
PyObject *py_minor_version = NULL;
|
|
587
617
|
#endif
|
|
588
618
|
long minor_version = 0;
|
|
589
619
|
PyObject *type, *value, *traceback;
|
|
590
620
|
PyErr_Fetch(&type, &value, &traceback);
|
|
591
621
|
#if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
|
|
592
|
-
minor_version = 11;
|
|
622
|
+
minor_version = 11;
|
|
593
623
|
#else
|
|
594
624
|
if (!(version_info = PySys_GetObject("version_info"))) goto end;
|
|
595
625
|
if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
|
|
@@ -647,7 +677,7 @@ END: Cython Metadata */
|
|
|
647
677
|
PyObject *fv, PyObject *cell, PyObject* fn,
|
|
648
678
|
PyObject *name, int fline, PyObject *lnos) {
|
|
649
679
|
PyCodeObject *result;
|
|
650
|
-
PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
|
|
680
|
+
PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
|
|
651
681
|
if (!empty_bytes) return NULL;
|
|
652
682
|
result =
|
|
653
683
|
#if PY_VERSION_HEX >= 0x030C0000
|
|
@@ -733,8 +763,13 @@ END: Cython Metadata */
|
|
|
733
763
|
typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
|
|
734
764
|
Py_ssize_t nargs, PyObject *kwnames);
|
|
735
765
|
#else
|
|
736
|
-
#
|
|
737
|
-
#define
|
|
766
|
+
#if PY_VERSION_HEX >= 0x030d00A4
|
|
767
|
+
# define __Pyx_PyCFunctionFast PyCFunctionFast
|
|
768
|
+
# define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
|
|
769
|
+
#else
|
|
770
|
+
# define __Pyx_PyCFunctionFast _PyCFunctionFast
|
|
771
|
+
# define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
|
|
772
|
+
#endif
|
|
738
773
|
#endif
|
|
739
774
|
#if CYTHON_METH_FASTCALL
|
|
740
775
|
#define __Pyx_METH_FASTCALL METH_FASTCALL
|
|
@@ -1086,7 +1121,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
|
|
|
1086
1121
|
#define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
|
|
1087
1122
|
#define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
|
|
1088
1123
|
#endif
|
|
1089
|
-
#if
|
|
1124
|
+
#if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
|
|
1090
1125
|
#define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
|
|
1091
1126
|
#else
|
|
1092
1127
|
static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
|
|
@@ -1173,7 +1208,7 @@ static CYTHON_INLINE float __PYX_NAN() {
|
|
|
1173
1208
|
#endif
|
|
1174
1209
|
|
|
1175
1210
|
#define __PYX_MARK_ERR_POS(f_index, lineno) \
|
|
1176
|
-
{ __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__;
|
|
1211
|
+
{ __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
|
|
1177
1212
|
#define __PYX_ERR(f_index, lineno, Ln_error) \
|
|
1178
1213
|
{ __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
|
|
1179
1214
|
|
|
@@ -1288,24 +1323,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
|
|
|
1288
1323
|
#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
|
|
1289
1324
|
#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
|
|
1290
1325
|
#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
|
|
1291
|
-
#if CYTHON_COMPILING_IN_LIMITED_API
|
|
1292
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
|
|
1293
|
-
{
|
|
1294
|
-
const wchar_t *u_end = u;
|
|
1295
|
-
while (*u_end++) ;
|
|
1296
|
-
return (size_t)(u_end - u - 1);
|
|
1297
|
-
}
|
|
1298
|
-
#else
|
|
1299
|
-
static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
|
|
1300
|
-
{
|
|
1301
|
-
const Py_UNICODE *u_end = u;
|
|
1302
|
-
while (*u_end++) ;
|
|
1303
|
-
return (size_t)(u_end - u - 1);
|
|
1304
|
-
}
|
|
1305
|
-
#endif
|
|
1306
1326
|
#define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
|
|
1307
|
-
#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
|
|
1308
|
-
#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
|
|
1309
1327
|
#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
|
|
1310
1328
|
#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
|
|
1311
1329
|
#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
|
|
@@ -1355,7 +1373,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
|
|
|
1355
1373
|
#endif
|
|
1356
1374
|
typedef Py_ssize_t __Pyx_compact_pylong;
|
|
1357
1375
|
typedef size_t __Pyx_compact_upylong;
|
|
1358
|
-
#else
|
|
1376
|
+
#else
|
|
1359
1377
|
#define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
|
|
1360
1378
|
#define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
|
|
1361
1379
|
#define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
|
|
@@ -1645,7 +1663,7 @@ typedef struct {
|
|
|
1645
1663
|
|
|
1646
1664
|
/* #### Code section: numeric_typedefs ### */
|
|
1647
1665
|
|
|
1648
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1666
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":730
|
|
1649
1667
|
* # in Cython to enable them only on the right systems.
|
|
1650
1668
|
*
|
|
1651
1669
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
|
@@ -1654,7 +1672,7 @@ typedef struct {
|
|
|
1654
1672
|
*/
|
|
1655
1673
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1656
1674
|
|
|
1657
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1675
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":731
|
|
1658
1676
|
*
|
|
1659
1677
|
* ctypedef npy_int8 int8_t
|
|
1660
1678
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
|
@@ -1663,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
|
1663
1681
|
*/
|
|
1664
1682
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1665
1683
|
|
|
1666
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1684
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":732
|
|
1667
1685
|
* ctypedef npy_int8 int8_t
|
|
1668
1686
|
* ctypedef npy_int16 int16_t
|
|
1669
1687
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
|
@@ -1672,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
|
1672
1690
|
*/
|
|
1673
1691
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1674
1692
|
|
|
1675
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1693
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":733
|
|
1676
1694
|
* ctypedef npy_int16 int16_t
|
|
1677
1695
|
* ctypedef npy_int32 int32_t
|
|
1678
1696
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
|
@@ -1681,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
|
1681
1699
|
*/
|
|
1682
1700
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1683
1701
|
|
|
1684
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1702
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":737
|
|
1685
1703
|
* #ctypedef npy_int128 int128_t
|
|
1686
1704
|
*
|
|
1687
1705
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
|
@@ -1690,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
|
1690
1708
|
*/
|
|
1691
1709
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1692
1710
|
|
|
1693
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1711
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":738
|
|
1694
1712
|
*
|
|
1695
1713
|
* ctypedef npy_uint8 uint8_t
|
|
1696
1714
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
|
@@ -1699,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
|
1699
1717
|
*/
|
|
1700
1718
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1701
1719
|
|
|
1702
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1720
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":739
|
|
1703
1721
|
* ctypedef npy_uint8 uint8_t
|
|
1704
1722
|
* ctypedef npy_uint16 uint16_t
|
|
1705
1723
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
|
@@ -1708,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
|
1708
1726
|
*/
|
|
1709
1727
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1710
1728
|
|
|
1711
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1729
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":740
|
|
1712
1730
|
* ctypedef npy_uint16 uint16_t
|
|
1713
1731
|
* ctypedef npy_uint32 uint32_t
|
|
1714
1732
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
|
@@ -1717,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
|
1717
1735
|
*/
|
|
1718
1736
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1719
1737
|
|
|
1720
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1738
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":744
|
|
1721
1739
|
* #ctypedef npy_uint128 uint128_t
|
|
1722
1740
|
*
|
|
1723
1741
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
|
@@ -1726,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
|
1726
1744
|
*/
|
|
1727
1745
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1728
1746
|
|
|
1729
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1747
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":745
|
|
1730
1748
|
*
|
|
1731
1749
|
* ctypedef npy_float32 float32_t
|
|
1732
1750
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
|
@@ -1735,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
|
1735
1753
|
*/
|
|
1736
1754
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1737
1755
|
|
|
1738
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1756
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":754
|
|
1739
1757
|
* # The int types are mapped a bit surprising --
|
|
1740
1758
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1741
1759
|
* ctypedef npy_long int_t # <<<<<<<<<<<<<<
|
|
@@ -1744,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
|
1744
1762
|
*/
|
|
1745
1763
|
typedef npy_long __pyx_t_5numpy_int_t;
|
|
1746
1764
|
|
|
1747
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1765
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":755
|
|
1748
1766
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1749
1767
|
* ctypedef npy_long int_t
|
|
1750
1768
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
|
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
|
|
|
1753
1771
|
*/
|
|
1754
1772
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1755
1773
|
|
|
1756
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1774
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":757
|
|
1757
1775
|
* ctypedef npy_longlong longlong_t
|
|
1758
1776
|
*
|
|
1759
1777
|
* ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
|
|
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
|
1762
1780
|
*/
|
|
1763
1781
|
typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
1764
1782
|
|
|
1765
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1783
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":758
|
|
1766
1784
|
*
|
|
1767
1785
|
* ctypedef npy_ulong uint_t
|
|
1768
1786
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
|
@@ -1771,7 +1789,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
|
1771
1789
|
*/
|
|
1772
1790
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1773
1791
|
|
|
1774
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1792
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":760
|
|
1775
1793
|
* ctypedef npy_ulonglong ulonglong_t
|
|
1776
1794
|
*
|
|
1777
1795
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
|
@@ -1780,7 +1798,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
|
1780
1798
|
*/
|
|
1781
1799
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1782
1800
|
|
|
1783
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1801
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":761
|
|
1784
1802
|
*
|
|
1785
1803
|
* ctypedef npy_intp intp_t
|
|
1786
1804
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
|
@@ -1789,7 +1807,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
|
1789
1807
|
*/
|
|
1790
1808
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1791
1809
|
|
|
1792
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1810
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":763
|
|
1793
1811
|
* ctypedef npy_uintp uintp_t
|
|
1794
1812
|
*
|
|
1795
1813
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
|
@@ -1798,7 +1816,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
|
1798
1816
|
*/
|
|
1799
1817
|
typedef npy_double __pyx_t_5numpy_float_t;
|
|
1800
1818
|
|
|
1801
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1819
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":764
|
|
1802
1820
|
*
|
|
1803
1821
|
* ctypedef npy_double float_t
|
|
1804
1822
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
|
@@ -1807,7 +1825,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
|
1807
1825
|
*/
|
|
1808
1826
|
typedef npy_double __pyx_t_5numpy_double_t;
|
|
1809
1827
|
|
|
1810
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1828
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":765
|
|
1811
1829
|
* ctypedef npy_double float_t
|
|
1812
1830
|
* ctypedef npy_double double_t
|
|
1813
1831
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1857,7 +1875,7 @@ struct __pyx_MemviewEnum_obj;
|
|
|
1857
1875
|
struct __pyx_memoryview_obj;
|
|
1858
1876
|
struct __pyx_memoryviewslice_obj;
|
|
1859
1877
|
|
|
1860
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1878
|
+
/* "../../../../../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
|
|
1861
1879
|
* ctypedef npy_longdouble longdouble_t
|
|
1862
1880
|
*
|
|
1863
1881
|
* ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
|
|
@@ -1866,7 +1884,7 @@ struct __pyx_memoryviewslice_obj;
|
|
|
1866
1884
|
*/
|
|
1867
1885
|
typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
1868
1886
|
|
|
1869
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1887
|
+
/* "../../../../../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
|
|
1870
1888
|
*
|
|
1871
1889
|
* ctypedef npy_cfloat cfloat_t
|
|
1872
1890
|
* ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1875,7 +1893,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
|
1875
1893
|
*/
|
|
1876
1894
|
typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
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":769
|
|
1879
1897
|
* ctypedef npy_cfloat cfloat_t
|
|
1880
1898
|
* ctypedef npy_cdouble cdouble_t
|
|
1881
1899
|
* ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1884,7 +1902,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
|
1884
1902
|
*/
|
|
1885
1903
|
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_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":771
|
|
1888
1906
|
* ctypedef npy_clongdouble clongdouble_t
|
|
1889
1907
|
*
|
|
1890
1908
|
* ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
|
|
@@ -2190,8 +2208,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2190
2208
|
#define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
|
|
2191
2209
|
#define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
|
|
2192
2210
|
#else
|
|
2193
|
-
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2194
|
-
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2211
|
+
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2212
|
+
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2195
2213
|
#endif
|
|
2196
2214
|
#define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
|
|
2197
2215
|
#define __Pyx_KwValues_VARARGS(args, nargs) NULL
|
|
@@ -2207,8 +2225,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2207
2225
|
#else
|
|
2208
2226
|
#define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
|
|
2209
2227
|
#endif
|
|
2210
|
-
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg
|
|
2211
|
-
|
|
2228
|
+
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
|
|
2229
|
+
to have the same reference counting */
|
|
2230
|
+
#define __Pyx_Arg_XDECREF_FASTCALL(arg)
|
|
2212
2231
|
#else
|
|
2213
2232
|
#define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
|
|
2214
2233
|
#define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
|
|
@@ -2671,22 +2690,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
|
|
|
2671
2690
|
#endif
|
|
2672
2691
|
|
|
2673
2692
|
/* TypeImport.proto */
|
|
2674
|
-
#ifndef
|
|
2675
|
-
#define
|
|
2693
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2694
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2676
2695
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
2677
2696
|
#include <stdalign.h>
|
|
2678
2697
|
#endif
|
|
2679
2698
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
2680
|
-
#define
|
|
2699
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
|
|
2681
2700
|
#else
|
|
2682
|
-
#define
|
|
2701
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
|
|
2683
2702
|
#endif
|
|
2684
|
-
enum
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2703
|
+
enum __Pyx_ImportType_CheckSize_3_0_10 {
|
|
2704
|
+
__Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
|
|
2705
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
|
|
2706
|
+
__Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
|
|
2688
2707
|
};
|
|
2689
|
-
static PyTypeObject *
|
|
2708
|
+
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);
|
|
2690
2709
|
#endif
|
|
2691
2710
|
|
|
2692
2711
|
/* FetchSharedCythonModule.proto */
|
|
@@ -2779,7 +2798,7 @@ typedef struct {
|
|
|
2779
2798
|
#endif
|
|
2780
2799
|
void *defaults;
|
|
2781
2800
|
int defaults_pyobjects;
|
|
2782
|
-
size_t defaults_size;
|
|
2801
|
+
size_t defaults_size;
|
|
2783
2802
|
int flags;
|
|
2784
2803
|
PyObject *defaults_tuple;
|
|
2785
2804
|
PyObject *defaults_kwdict;
|
|
@@ -18329,7 +18348,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18329
18348
|
return __pyx_r;
|
|
18330
18349
|
}
|
|
18331
18350
|
|
|
18332
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18351
|
+
/* "../../../../../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
|
|
18333
18352
|
*
|
|
18334
18353
|
* @property
|
|
18335
18354
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18340,7 +18359,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
18340
18359
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
18341
18360
|
PyObject *__pyx_r;
|
|
18342
18361
|
|
|
18343
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18362
|
+
/* "../../../../../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
|
|
18344
18363
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
18345
18364
|
* """
|
|
18346
18365
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -18350,7 +18369,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18350
18369
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
18351
18370
|
goto __pyx_L0;
|
|
18352
18371
|
|
|
18353
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18372
|
+
/* "../../../../../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
|
|
18354
18373
|
*
|
|
18355
18374
|
* @property
|
|
18356
18375
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18363,7 +18382,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
18363
18382
|
return __pyx_r;
|
|
18364
18383
|
}
|
|
18365
18384
|
|
|
18366
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18385
|
+
/* "../../../../../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
|
|
18367
18386
|
*
|
|
18368
18387
|
* @property
|
|
18369
18388
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18377,7 +18396,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18377
18396
|
PyArray_Descr *__pyx_t_1;
|
|
18378
18397
|
__Pyx_RefNannySetupContext("descr", 1);
|
|
18379
18398
|
|
|
18380
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18399
|
+
/* "../../../../../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
|
|
18381
18400
|
* """Returns an owned reference to the dtype of the array.
|
|
18382
18401
|
* """
|
|
18383
18402
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -18390,7 +18409,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18390
18409
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
18391
18410
|
goto __pyx_L0;
|
|
18392
18411
|
|
|
18393
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18412
|
+
/* "../../../../../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
|
|
18394
18413
|
*
|
|
18395
18414
|
* @property
|
|
18396
18415
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -18405,7 +18424,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18405
18424
|
return __pyx_r;
|
|
18406
18425
|
}
|
|
18407
18426
|
|
|
18408
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18427
|
+
/* "../../../../../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
|
|
18409
18428
|
*
|
|
18410
18429
|
* @property
|
|
18411
18430
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18416,7 +18435,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
18416
18435
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
18417
18436
|
int __pyx_r;
|
|
18418
18437
|
|
|
18419
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18438
|
+
/* "../../../../../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
|
|
18420
18439
|
* """Returns the number of dimensions in the array.
|
|
18421
18440
|
* """
|
|
18422
18441
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -18426,7 +18445,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18426
18445
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
18427
18446
|
goto __pyx_L0;
|
|
18428
18447
|
|
|
18429
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18448
|
+
/* "../../../../../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
|
|
18430
18449
|
*
|
|
18431
18450
|
* @property
|
|
18432
18451
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18439,7 +18458,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18439
18458
|
return __pyx_r;
|
|
18440
18459
|
}
|
|
18441
18460
|
|
|
18442
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18461
|
+
/* "../../../../../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
|
|
18443
18462
|
*
|
|
18444
18463
|
* @property
|
|
18445
18464
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18450,7 +18469,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
18450
18469
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
18451
18470
|
npy_intp *__pyx_r;
|
|
18452
18471
|
|
|
18453
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18472
|
+
/* "../../../../../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
|
|
18454
18473
|
* Can return NULL for 0-dimensional arrays.
|
|
18455
18474
|
* """
|
|
18456
18475
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -18460,7 +18479,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18460
18479
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
18461
18480
|
goto __pyx_L0;
|
|
18462
18481
|
|
|
18463
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18482
|
+
/* "../../../../../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
|
|
18464
18483
|
*
|
|
18465
18484
|
* @property
|
|
18466
18485
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18473,7 +18492,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18473
18492
|
return __pyx_r;
|
|
18474
18493
|
}
|
|
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":271
|
|
18477
18496
|
*
|
|
18478
18497
|
* @property
|
|
18479
18498
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18484,7 +18503,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
18484
18503
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
18485
18504
|
npy_intp *__pyx_r;
|
|
18486
18505
|
|
|
18487
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18506
|
+
/* "../../../../../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
|
|
18488
18507
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
18489
18508
|
* """
|
|
18490
18509
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -18494,7 +18513,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18494
18513
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
18495
18514
|
goto __pyx_L0;
|
|
18496
18515
|
|
|
18497
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18516
|
+
/* "../../../../../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
|
|
18498
18517
|
*
|
|
18499
18518
|
* @property
|
|
18500
18519
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18507,7 +18526,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18507
18526
|
return __pyx_r;
|
|
18508
18527
|
}
|
|
18509
18528
|
|
|
18510
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18529
|
+
/* "../../../../../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
|
|
18511
18530
|
*
|
|
18512
18531
|
* @property
|
|
18513
18532
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18518,7 +18537,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
18518
18537
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
18519
18538
|
npy_intp __pyx_r;
|
|
18520
18539
|
|
|
18521
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18540
|
+
/* "../../../../../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
|
|
18522
18541
|
* """Returns the total size (in number of elements) of the array.
|
|
18523
18542
|
* """
|
|
18524
18543
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -18528,7 +18547,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18528
18547
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
18529
18548
|
goto __pyx_L0;
|
|
18530
18549
|
|
|
18531
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18550
|
+
/* "../../../../../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
|
|
18532
18551
|
*
|
|
18533
18552
|
* @property
|
|
18534
18553
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18541,7 +18560,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18541
18560
|
return __pyx_r;
|
|
18542
18561
|
}
|
|
18543
18562
|
|
|
18544
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18563
|
+
/* "../../../../../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
|
|
18545
18564
|
*
|
|
18546
18565
|
* @property
|
|
18547
18566
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18552,7 +18571,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18552
18571
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
18553
18572
|
char *__pyx_r;
|
|
18554
18573
|
|
|
18555
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18574
|
+
/* "../../../../../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
|
|
18556
18575
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
18557
18576
|
* """
|
|
18558
18577
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -18562,7 +18581,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18562
18581
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
18563
18582
|
goto __pyx_L0;
|
|
18564
18583
|
|
|
18565
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18584
|
+
/* "../../../../../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
|
|
18566
18585
|
*
|
|
18567
18586
|
* @property
|
|
18568
18587
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -18575,7 +18594,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18575
18594
|
return __pyx_r;
|
|
18576
18595
|
}
|
|
18577
18596
|
|
|
18578
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18597
|
+
/* "../../../../../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
|
|
18579
18598
|
* ctypedef npy_cdouble complex_t
|
|
18580
18599
|
*
|
|
18581
18600
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18592,7 +18611,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18592
18611
|
int __pyx_clineno = 0;
|
|
18593
18612
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
|
|
18594
18613
|
|
|
18595
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18614
|
+
/* "../../../../../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
|
|
18596
18615
|
*
|
|
18597
18616
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
18598
18617
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -18606,7 +18625,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18606
18625
|
__pyx_t_1 = 0;
|
|
18607
18626
|
goto __pyx_L0;
|
|
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":773
|
|
18610
18629
|
* ctypedef npy_cdouble complex_t
|
|
18611
18630
|
*
|
|
18612
18631
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18625,7 +18644,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18625
18644
|
return __pyx_r;
|
|
18626
18645
|
}
|
|
18627
18646
|
|
|
18628
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18647
|
+
/* "../../../../../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
|
|
18629
18648
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18630
18649
|
*
|
|
18631
18650
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18642,7 +18661,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18642
18661
|
int __pyx_clineno = 0;
|
|
18643
18662
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
|
|
18644
18663
|
|
|
18645
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18664
|
+
/* "../../../../../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
|
|
18646
18665
|
*
|
|
18647
18666
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
18648
18667
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -18656,7 +18675,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18656
18675
|
__pyx_t_1 = 0;
|
|
18657
18676
|
goto __pyx_L0;
|
|
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":776
|
|
18660
18679
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18661
18680
|
*
|
|
18662
18681
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18675,7 +18694,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18675
18694
|
return __pyx_r;
|
|
18676
18695
|
}
|
|
18677
18696
|
|
|
18678
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18697
|
+
/* "../../../../../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
|
|
18679
18698
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18680
18699
|
*
|
|
18681
18700
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18692,7 +18711,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18692
18711
|
int __pyx_clineno = 0;
|
|
18693
18712
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
|
|
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":780
|
|
18696
18715
|
*
|
|
18697
18716
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
18698
18717
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -18706,7 +18725,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18706
18725
|
__pyx_t_1 = 0;
|
|
18707
18726
|
goto __pyx_L0;
|
|
18708
18727
|
|
|
18709
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18728
|
+
/* "../../../../../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
|
|
18710
18729
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18711
18730
|
*
|
|
18712
18731
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18725,7 +18744,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18725
18744
|
return __pyx_r;
|
|
18726
18745
|
}
|
|
18727
18746
|
|
|
18728
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18747
|
+
/* "../../../../../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
|
|
18729
18748
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
18730
18749
|
*
|
|
18731
18750
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -18742,7 +18761,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18742
18761
|
int __pyx_clineno = 0;
|
|
18743
18762
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
|
|
18744
18763
|
|
|
18745
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18764
|
+
/* "../../../../../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
|
|
18746
18765
|
*
|
|
18747
18766
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
18748
18767
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -18756,7 +18775,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18756
18775
|
__pyx_t_1 = 0;
|
|
18757
18776
|
goto __pyx_L0;
|
|
18758
18777
|
|
|
18759
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18778
|
+
/* "../../../../../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
|
|
18760
18779
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
18761
18780
|
*
|
|
18762
18781
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -18775,7 +18794,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18775
18794
|
return __pyx_r;
|
|
18776
18795
|
}
|
|
18777
18796
|
|
|
18778
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18797
|
+
/* "../../../../../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
|
|
18779
18798
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
18780
18799
|
*
|
|
18781
18800
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -18792,7 +18811,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18792
18811
|
int __pyx_clineno = 0;
|
|
18793
18812
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 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":786
|
|
18796
18815
|
*
|
|
18797
18816
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
18798
18817
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -18806,7 +18825,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18806
18825
|
__pyx_t_1 = 0;
|
|
18807
18826
|
goto __pyx_L0;
|
|
18808
18827
|
|
|
18809
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18828
|
+
/* "../../../../../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
|
|
18810
18829
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
18811
18830
|
*
|
|
18812
18831
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -18825,7 +18844,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18825
18844
|
return __pyx_r;
|
|
18826
18845
|
}
|
|
18827
18846
|
|
|
18828
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18847
|
+
/* "../../../../../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
|
|
18829
18848
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
18830
18849
|
*
|
|
18831
18850
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -18839,7 +18858,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18839
18858
|
int __pyx_t_1;
|
|
18840
18859
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
|
|
18841
18860
|
|
|
18842
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18861
|
+
/* "../../../../../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
|
|
18843
18862
|
*
|
|
18844
18863
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18845
18864
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -18849,7 +18868,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18849
18868
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
18850
18869
|
if (__pyx_t_1) {
|
|
18851
18870
|
|
|
18852
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18871
|
+
/* "../../../../../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
|
|
18853
18872
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18854
18873
|
* if PyDataType_HASSUBARRAY(d):
|
|
18855
18874
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -18861,7 +18880,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18861
18880
|
__pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
|
|
18862
18881
|
goto __pyx_L0;
|
|
18863
18882
|
|
|
18864
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18883
|
+
/* "../../../../../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
|
|
18865
18884
|
*
|
|
18866
18885
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18867
18886
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -18870,7 +18889,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18870
18889
|
*/
|
|
18871
18890
|
}
|
|
18872
18891
|
|
|
18873
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18892
|
+
/* "../../../../../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
|
|
18874
18893
|
* return <tuple>d.subarray.shape
|
|
18875
18894
|
* else:
|
|
18876
18895
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -18884,7 +18903,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18884
18903
|
goto __pyx_L0;
|
|
18885
18904
|
}
|
|
18886
18905
|
|
|
18887
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18906
|
+
/* "../../../../../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
|
|
18888
18907
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
18889
18908
|
*
|
|
18890
18909
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -18899,7 +18918,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18899
18918
|
return __pyx_r;
|
|
18900
18919
|
}
|
|
18901
18920
|
|
|
18902
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18921
|
+
/* "../../../../../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
|
|
18903
18922
|
* int _import_umath() except -1
|
|
18904
18923
|
*
|
|
18905
18924
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -18913,7 +18932,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18913
18932
|
const char *__pyx_filename = NULL;
|
|
18914
18933
|
int __pyx_clineno = 0;
|
|
18915
18934
|
|
|
18916
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18935
|
+
/* "../../../../../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
|
|
18917
18936
|
*
|
|
18918
18937
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
18919
18938
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -18922,7 +18941,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18922
18941
|
*/
|
|
18923
18942
|
Py_INCREF(__pyx_v_base);
|
|
18924
18943
|
|
|
18925
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18944
|
+
/* "../../../../../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
|
|
18926
18945
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
18927
18946
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
18928
18947
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -18931,7 +18950,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18931
18950
|
*/
|
|
18932
18951
|
__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)
|
|
18933
18952
|
|
|
18934
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18953
|
+
/* "../../../../../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
|
|
18935
18954
|
* int _import_umath() except -1
|
|
18936
18955
|
*
|
|
18937
18956
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -18946,7 +18965,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18946
18965
|
__pyx_L0:;
|
|
18947
18966
|
}
|
|
18948
18967
|
|
|
18949
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18968
|
+
/* "../../../../../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
|
|
18950
18969
|
* PyArray_SetBaseObject(arr, base)
|
|
18951
18970
|
*
|
|
18952
18971
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -18961,7 +18980,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18961
18980
|
int __pyx_t_1;
|
|
18962
18981
|
__Pyx_RefNannySetupContext("get_array_base", 1);
|
|
18963
18982
|
|
|
18964
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18983
|
+
/* "../../../../../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
|
|
18965
18984
|
*
|
|
18966
18985
|
* cdef inline object get_array_base(ndarray arr):
|
|
18967
18986
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -18970,7 +18989,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18970
18989
|
*/
|
|
18971
18990
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
18972
18991
|
|
|
18973
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
18992
|
+
/* "../../../../../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
|
|
18974
18993
|
* cdef inline object get_array_base(ndarray arr):
|
|
18975
18994
|
* base = PyArray_BASE(arr)
|
|
18976
18995
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -18980,7 +18999,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18980
18999
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
18981
19000
|
if (__pyx_t_1) {
|
|
18982
19001
|
|
|
18983
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19002
|
+
/* "../../../../../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
|
|
18984
19003
|
* base = PyArray_BASE(arr)
|
|
18985
19004
|
* if base is NULL:
|
|
18986
19005
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -18991,7 +19010,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18991
19010
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
18992
19011
|
goto __pyx_L0;
|
|
18993
19012
|
|
|
18994
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19013
|
+
/* "../../../../../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
|
|
18995
19014
|
* cdef inline object get_array_base(ndarray arr):
|
|
18996
19015
|
* base = PyArray_BASE(arr)
|
|
18997
19016
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19000,7 +19019,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19000
19019
|
*/
|
|
19001
19020
|
}
|
|
19002
19021
|
|
|
19003
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19022
|
+
/* "../../../../../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
|
|
19004
19023
|
* if base is NULL:
|
|
19005
19024
|
* return None
|
|
19006
19025
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -19012,7 +19031,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19012
19031
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
19013
19032
|
goto __pyx_L0;
|
|
19014
19033
|
|
|
19015
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19034
|
+
/* "../../../../../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
|
|
19016
19035
|
* PyArray_SetBaseObject(arr, base)
|
|
19017
19036
|
*
|
|
19018
19037
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19027,7 +19046,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19027
19046
|
return __pyx_r;
|
|
19028
19047
|
}
|
|
19029
19048
|
|
|
19030
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19049
|
+
/* "../../../../../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
|
|
19031
19050
|
* # Versions of the import_* functions which are more suitable for
|
|
19032
19051
|
* # Cython code.
|
|
19033
19052
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19051,7 +19070,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19051
19070
|
int __pyx_clineno = 0;
|
|
19052
19071
|
__Pyx_RefNannySetupContext("import_array", 1);
|
|
19053
19072
|
|
|
19054
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19073
|
+
/* "../../../../../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
|
|
19055
19074
|
* # Cython code.
|
|
19056
19075
|
* cdef inline int import_array() except -1:
|
|
19057
19076
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19067,7 +19086,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19067
19086
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19068
19087
|
/*try:*/ {
|
|
19069
19088
|
|
|
19070
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19089
|
+
/* "../../../../../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
|
|
19071
19090
|
* cdef inline int import_array() except -1:
|
|
19072
19091
|
* try:
|
|
19073
19092
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -19076,7 +19095,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19076
19095
|
*/
|
|
19077
19096
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
|
|
19078
19097
|
|
|
19079
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19098
|
+
/* "../../../../../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
|
|
19080
19099
|
* # Cython code.
|
|
19081
19100
|
* cdef inline int import_array() except -1:
|
|
19082
19101
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19090,7 +19109,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19090
19109
|
goto __pyx_L8_try_end;
|
|
19091
19110
|
__pyx_L3_error:;
|
|
19092
19111
|
|
|
19093
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19112
|
+
/* "../../../../../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
|
|
19094
19113
|
* try:
|
|
19095
19114
|
* __pyx_import_array()
|
|
19096
19115
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19105,7 +19124,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19105
19124
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19106
19125
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19107
19126
|
|
|
19108
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19127
|
+
/* "../../../../../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
|
|
19109
19128
|
* __pyx_import_array()
|
|
19110
19129
|
* except Exception:
|
|
19111
19130
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19120,7 +19139,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19120
19139
|
}
|
|
19121
19140
|
goto __pyx_L5_except_error;
|
|
19122
19141
|
|
|
19123
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19142
|
+
/* "../../../../../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
|
|
19124
19143
|
* # Cython code.
|
|
19125
19144
|
* cdef inline int import_array() except -1:
|
|
19126
19145
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19136,7 +19155,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19136
19155
|
__pyx_L8_try_end:;
|
|
19137
19156
|
}
|
|
19138
19157
|
|
|
19139
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19158
|
+
/* "../../../../../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
|
|
19140
19159
|
* # Versions of the import_* functions which are more suitable for
|
|
19141
19160
|
* # Cython code.
|
|
19142
19161
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19159,7 +19178,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19159
19178
|
return __pyx_r;
|
|
19160
19179
|
}
|
|
19161
19180
|
|
|
19162
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19181
|
+
/* "../../../../../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
|
|
19163
19182
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19164
19183
|
*
|
|
19165
19184
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19183,7 +19202,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19183
19202
|
int __pyx_clineno = 0;
|
|
19184
19203
|
__Pyx_RefNannySetupContext("import_umath", 1);
|
|
19185
19204
|
|
|
19186
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19205
|
+
/* "../../../../../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
|
|
19187
19206
|
*
|
|
19188
19207
|
* cdef inline int import_umath() except -1:
|
|
19189
19208
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19199,7 +19218,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19199
19218
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19200
19219
|
/*try:*/ {
|
|
19201
19220
|
|
|
19202
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19221
|
+
/* "../../../../../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
|
|
19203
19222
|
* cdef inline int import_umath() except -1:
|
|
19204
19223
|
* try:
|
|
19205
19224
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19208,7 +19227,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19208
19227
|
*/
|
|
19209
19228
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
|
|
19210
19229
|
|
|
19211
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19230
|
+
/* "../../../../../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
|
|
19212
19231
|
*
|
|
19213
19232
|
* cdef inline int import_umath() except -1:
|
|
19214
19233
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19222,7 +19241,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19222
19241
|
goto __pyx_L8_try_end;
|
|
19223
19242
|
__pyx_L3_error:;
|
|
19224
19243
|
|
|
19225
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19244
|
+
/* "../../../../../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
|
|
19226
19245
|
* try:
|
|
19227
19246
|
* _import_umath()
|
|
19228
19247
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19237,7 +19256,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19237
19256
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19238
19257
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19239
19258
|
|
|
19240
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19259
|
+
/* "../../../../../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
|
|
19241
19260
|
* _import_umath()
|
|
19242
19261
|
* except Exception:
|
|
19243
19262
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19252,7 +19271,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19252
19271
|
}
|
|
19253
19272
|
goto __pyx_L5_except_error;
|
|
19254
19273
|
|
|
19255
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19274
|
+
/* "../../../../../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
|
|
19256
19275
|
*
|
|
19257
19276
|
* cdef inline int import_umath() except -1:
|
|
19258
19277
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19268,7 +19287,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19268
19287
|
__pyx_L8_try_end:;
|
|
19269
19288
|
}
|
|
19270
19289
|
|
|
19271
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19290
|
+
/* "../../../../../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
|
|
19272
19291
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
19273
19292
|
*
|
|
19274
19293
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19291,7 +19310,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
19291
19310
|
return __pyx_r;
|
|
19292
19311
|
}
|
|
19293
19312
|
|
|
19294
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19313
|
+
/* "../../../../../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
|
|
19295
19314
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19296
19315
|
*
|
|
19297
19316
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19315,7 +19334,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19315
19334
|
int __pyx_clineno = 0;
|
|
19316
19335
|
__Pyx_RefNannySetupContext("import_ufunc", 1);
|
|
19317
19336
|
|
|
19318
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19337
|
+
/* "../../../../../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
|
|
19319
19338
|
*
|
|
19320
19339
|
* cdef inline int import_ufunc() except -1:
|
|
19321
19340
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19331,7 +19350,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19331
19350
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19332
19351
|
/*try:*/ {
|
|
19333
19352
|
|
|
19334
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19353
|
+
/* "../../../../../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
|
|
19335
19354
|
* cdef inline int import_ufunc() except -1:
|
|
19336
19355
|
* try:
|
|
19337
19356
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -19340,7 +19359,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19340
19359
|
*/
|
|
19341
19360
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
|
|
19342
19361
|
|
|
19343
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19362
|
+
/* "../../../../../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
|
|
19344
19363
|
*
|
|
19345
19364
|
* cdef inline int import_ufunc() except -1:
|
|
19346
19365
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19354,7 +19373,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19354
19373
|
goto __pyx_L8_try_end;
|
|
19355
19374
|
__pyx_L3_error:;
|
|
19356
19375
|
|
|
19357
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19376
|
+
/* "../../../../../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
|
|
19358
19377
|
* try:
|
|
19359
19378
|
* _import_umath()
|
|
19360
19379
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19369,7 +19388,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19369
19388
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19370
19389
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19371
19390
|
|
|
19372
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19391
|
+
/* "../../../../../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
|
|
19373
19392
|
* _import_umath()
|
|
19374
19393
|
* except Exception:
|
|
19375
19394
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19384,7 +19403,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19384
19403
|
}
|
|
19385
19404
|
goto __pyx_L5_except_error;
|
|
19386
19405
|
|
|
19387
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19406
|
+
/* "../../../../../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
|
|
19388
19407
|
*
|
|
19389
19408
|
* cdef inline int import_ufunc() except -1:
|
|
19390
19409
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19400,7 +19419,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19400
19419
|
__pyx_L8_try_end:;
|
|
19401
19420
|
}
|
|
19402
19421
|
|
|
19403
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19422
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
|
|
19404
19423
|
* raise ImportError("numpy.core.umath failed to import")
|
|
19405
19424
|
*
|
|
19406
19425
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19423,7 +19442,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19423
19442
|
return __pyx_r;
|
|
19424
19443
|
}
|
|
19425
19444
|
|
|
19426
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19445
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
|
|
19427
19446
|
*
|
|
19428
19447
|
*
|
|
19429
19448
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19434,7 +19453,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
19434
19453
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
19435
19454
|
int __pyx_r;
|
|
19436
19455
|
|
|
19437
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19456
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1011
|
|
19438
19457
|
* bool
|
|
19439
19458
|
* """
|
|
19440
19459
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19444,7 +19463,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19444
19463
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
19445
19464
|
goto __pyx_L0;
|
|
19446
19465
|
|
|
19447
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19466
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
|
|
19448
19467
|
*
|
|
19449
19468
|
*
|
|
19450
19469
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19457,7 +19476,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19457
19476
|
return __pyx_r;
|
|
19458
19477
|
}
|
|
19459
19478
|
|
|
19460
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19479
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
19461
19480
|
*
|
|
19462
19481
|
*
|
|
19463
19482
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19468,7 +19487,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
19468
19487
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
19469
19488
|
int __pyx_r;
|
|
19470
19489
|
|
|
19471
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19490
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1026
|
|
19472
19491
|
* bool
|
|
19473
19492
|
* """
|
|
19474
19493
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -19478,7 +19497,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19478
19497
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
19479
19498
|
goto __pyx_L0;
|
|
19480
19499
|
|
|
19481
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19500
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
19482
19501
|
*
|
|
19483
19502
|
*
|
|
19484
19503
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -19491,7 +19510,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19491
19510
|
return __pyx_r;
|
|
19492
19511
|
}
|
|
19493
19512
|
|
|
19494
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19513
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
19495
19514
|
*
|
|
19496
19515
|
*
|
|
19497
19516
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19502,7 +19521,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19502
19521
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
19503
19522
|
npy_datetime __pyx_r;
|
|
19504
19523
|
|
|
19505
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19524
|
+
/* "../../../../../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
|
|
19506
19525
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
19507
19526
|
* """
|
|
19508
19527
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19512,7 +19531,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19512
19531
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
19513
19532
|
goto __pyx_L0;
|
|
19514
19533
|
|
|
19515
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19534
|
+
/* "../../../../../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
|
|
19516
19535
|
*
|
|
19517
19536
|
*
|
|
19518
19537
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19525,7 +19544,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19525
19544
|
return __pyx_r;
|
|
19526
19545
|
}
|
|
19527
19546
|
|
|
19528
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19547
|
+
/* "../../../../../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
|
|
19529
19548
|
*
|
|
19530
19549
|
*
|
|
19531
19550
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19536,7 +19555,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19536
19555
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
19537
19556
|
npy_timedelta __pyx_r;
|
|
19538
19557
|
|
|
19539
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19558
|
+
/* "../../../../../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
|
|
19540
19559
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
19541
19560
|
* """
|
|
19542
19561
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19546,7 +19565,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19546
19565
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
19547
19566
|
goto __pyx_L0;
|
|
19548
19567
|
|
|
19549
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19568
|
+
/* "../../../../../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
|
|
19550
19569
|
*
|
|
19551
19570
|
*
|
|
19552
19571
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19559,7 +19578,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19559
19578
|
return __pyx_r;
|
|
19560
19579
|
}
|
|
19561
19580
|
|
|
19562
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19581
|
+
/* "../../../../../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
|
|
19563
19582
|
*
|
|
19564
19583
|
*
|
|
19565
19584
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19570,7 +19589,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19570
19589
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
19571
19590
|
NPY_DATETIMEUNIT __pyx_r;
|
|
19572
19591
|
|
|
19573
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19592
|
+
/* "../../../../../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
|
|
19574
19593
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
19575
19594
|
* """
|
|
19576
19595
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -19578,7 +19597,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
19578
19597
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
19579
19598
|
goto __pyx_L0;
|
|
19580
19599
|
|
|
19581
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19600
|
+
/* "../../../../../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
|
|
19582
19601
|
*
|
|
19583
19602
|
*
|
|
19584
19603
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -23275,7 +23294,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
23275
23294
|
__Pyx_GOTREF(__pyx_tuple__8);
|
|
23276
23295
|
__Pyx_GIVEREF(__pyx_tuple__8);
|
|
23277
23296
|
|
|
23278
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
23297
|
+
/* "../../../../../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
|
|
23279
23298
|
* __pyx_import_array()
|
|
23280
23299
|
* except Exception:
|
|
23281
23300
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -23286,7 +23305,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
23286
23305
|
__Pyx_GOTREF(__pyx_tuple__9);
|
|
23287
23306
|
__Pyx_GIVEREF(__pyx_tuple__9);
|
|
23288
23307
|
|
|
23289
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
23308
|
+
/* "../../../../../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
|
|
23290
23309
|
* _import_umath()
|
|
23291
23310
|
* except Exception:
|
|
23292
23311
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -23791,33 +23810,33 @@ static int __Pyx_modinit_type_import_code(void) {
|
|
|
23791
23810
|
/*--- Type import code ---*/
|
|
23792
23811
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
23793
23812
|
__Pyx_GOTREF(__pyx_t_1);
|
|
23794
|
-
__pyx_ptype_7cpython_4type_type =
|
|
23813
|
+
__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
|
23795
23814
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
23796
|
-
sizeof(PyTypeObject),
|
|
23815
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
23797
23816
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
23798
|
-
sizeof(PyTypeObject),
|
|
23817
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
23799
23818
|
#else
|
|
23800
|
-
sizeof(PyHeapTypeObject),
|
|
23819
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
|
|
23801
23820
|
#endif
|
|
23802
|
-
|
|
23821
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
23803
23822
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
23804
23823
|
__pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
|
|
23805
23824
|
__Pyx_GOTREF(__pyx_t_1);
|
|
23806
|
-
__pyx_ptype_5numpy_dtype =
|
|
23807
|
-
__pyx_ptype_5numpy_flatiter =
|
|
23808
|
-
__pyx_ptype_5numpy_broadcast =
|
|
23809
|
-
__pyx_ptype_5numpy_ndarray =
|
|
23810
|
-
__pyx_ptype_5numpy_generic =
|
|
23811
|
-
__pyx_ptype_5numpy_number =
|
|
23812
|
-
__pyx_ptype_5numpy_integer =
|
|
23813
|
-
__pyx_ptype_5numpy_signedinteger =
|
|
23814
|
-
__pyx_ptype_5numpy_unsignedinteger =
|
|
23815
|
-
__pyx_ptype_5numpy_inexact =
|
|
23816
|
-
__pyx_ptype_5numpy_floating =
|
|
23817
|
-
__pyx_ptype_5numpy_complexfloating =
|
|
23818
|
-
__pyx_ptype_5numpy_flexible =
|
|
23819
|
-
__pyx_ptype_5numpy_character =
|
|
23820
|
-
__pyx_ptype_5numpy_ufunc =
|
|
23825
|
+
__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)
|
|
23826
|
+
__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)
|
|
23827
|
+
__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)
|
|
23828
|
+
__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)
|
|
23829
|
+
__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)
|
|
23830
|
+
__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)
|
|
23831
|
+
__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)
|
|
23832
|
+
__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)
|
|
23833
|
+
__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)
|
|
23834
|
+
__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)
|
|
23835
|
+
__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)
|
|
23836
|
+
__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)
|
|
23837
|
+
__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)
|
|
23838
|
+
__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)
|
|
23839
|
+
__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)
|
|
23821
23840
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
23822
23841
|
__Pyx_RefNannyFinishContext();
|
|
23823
23842
|
return 0;
|
|
@@ -25557,11 +25576,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
|
|
|
25557
25576
|
{
|
|
25558
25577
|
int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
|
|
25559
25578
|
if (unlikely(eq != 0)) {
|
|
25560
|
-
if (unlikely(eq < 0)) return NULL;
|
|
25579
|
+
if (unlikely(eq < 0)) return NULL;
|
|
25561
25580
|
return kwvalues[i];
|
|
25562
25581
|
}
|
|
25563
25582
|
}
|
|
25564
|
-
return NULL;
|
|
25583
|
+
return NULL;
|
|
25565
25584
|
}
|
|
25566
25585
|
#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
|
|
25567
25586
|
CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
|
|
@@ -25674,7 +25693,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
25674
25693
|
if (*name) {
|
|
25675
25694
|
values[name-argnames] = value;
|
|
25676
25695
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
25677
|
-
Py_INCREF(value);
|
|
25696
|
+
Py_INCREF(value);
|
|
25678
25697
|
Py_DECREF(key);
|
|
25679
25698
|
#endif
|
|
25680
25699
|
key = NULL;
|
|
@@ -25693,7 +25712,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
25693
25712
|
&& _PyString_Eq(**name, key)) {
|
|
25694
25713
|
values[name-argnames] = value;
|
|
25695
25714
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
25696
|
-
value = NULL;
|
|
25715
|
+
value = NULL;
|
|
25697
25716
|
#endif
|
|
25698
25717
|
break;
|
|
25699
25718
|
}
|
|
@@ -25725,7 +25744,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
25725
25744
|
if (cmp == 0) {
|
|
25726
25745
|
values[name-argnames] = value;
|
|
25727
25746
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
25728
|
-
value = NULL;
|
|
25747
|
+
value = NULL;
|
|
25729
25748
|
#endif
|
|
25730
25749
|
break;
|
|
25731
25750
|
}
|
|
@@ -28247,10 +28266,10 @@ __PYX_GOOD:
|
|
|
28247
28266
|
#endif
|
|
28248
28267
|
|
|
28249
28268
|
/* TypeImport */
|
|
28250
|
-
#ifndef
|
|
28251
|
-
#define
|
|
28252
|
-
static PyTypeObject *
|
|
28253
|
-
size_t size, size_t alignment, enum
|
|
28269
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_0_10
|
|
28270
|
+
#define __PYX_HAVE_RT_ImportType_3_0_10
|
|
28271
|
+
static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
|
|
28272
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
|
|
28254
28273
|
{
|
|
28255
28274
|
PyObject *result = 0;
|
|
28256
28275
|
char warning[200];
|
|
@@ -28304,7 +28323,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
28304
28323
|
module_name, class_name, size, basicsize+itemsize);
|
|
28305
28324
|
goto bad;
|
|
28306
28325
|
}
|
|
28307
|
-
if (check_size ==
|
|
28326
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
|
|
28308
28327
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
28309
28328
|
PyErr_Format(PyExc_ValueError,
|
|
28310
28329
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -28312,7 +28331,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
28312
28331
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
28313
28332
|
goto bad;
|
|
28314
28333
|
}
|
|
28315
|
-
else if (check_size ==
|
|
28334
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
|
|
28316
28335
|
PyOS_snprintf(warning, sizeof(warning),
|
|
28317
28336
|
"%s.%s size changed, may indicate binary incompatibility. "
|
|
28318
28337
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -29312,7 +29331,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
|
|
|
29312
29331
|
default:
|
|
29313
29332
|
return NULL;
|
|
29314
29333
|
}
|
|
29315
|
-
return ((
|
|
29334
|
+
return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
|
|
29316
29335
|
}
|
|
29317
29336
|
static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
|
|
29318
29337
|
{
|
|
@@ -30126,7 +30145,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
|
|
|
30126
30145
|
#else
|
|
30127
30146
|
py_code = PyCode_NewEmpty(filename, funcname, py_line);
|
|
30128
30147
|
#endif
|
|
30129
|
-
Py_XDECREF(py_funcname);
|
|
30148
|
+
Py_XDECREF(py_funcname);
|
|
30130
30149
|
return py_code;
|
|
30131
30150
|
bad:
|
|
30132
30151
|
Py_XDECREF(py_funcname);
|