biotite 0.39.0__cp312-cp312-macosx_11_0_arm64.whl → 0.40.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.

Files changed (104) hide show
  1. biotite/__init__.py +3 -3
  2. biotite/application/dssp/app.py +18 -18
  3. biotite/database/rcsb/download.py +19 -14
  4. biotite/sequence/align/banded.c +256 -235
  5. biotite/sequence/align/banded.cpython-312-darwin.so +0 -0
  6. biotite/sequence/align/kmeralphabet.c +241 -220
  7. biotite/sequence/align/kmeralphabet.cpython-312-darwin.so +0 -0
  8. biotite/sequence/align/kmersimilarity.c +213 -194
  9. biotite/sequence/align/kmersimilarity.cpython-312-darwin.so +0 -0
  10. biotite/sequence/align/kmertable.cpp +231 -203
  11. biotite/sequence/align/kmertable.cpython-312-darwin.so +0 -0
  12. biotite/sequence/align/localgapped.c +256 -235
  13. biotite/sequence/align/localgapped.cpython-312-darwin.so +0 -0
  14. biotite/sequence/align/localungapped.c +233 -212
  15. biotite/sequence/align/localungapped.cpython-312-darwin.so +0 -0
  16. biotite/sequence/align/multiple.c +253 -232
  17. biotite/sequence/align/multiple.cpython-312-darwin.so +0 -0
  18. biotite/sequence/align/pairwise.c +272 -251
  19. biotite/sequence/align/pairwise.cpython-312-darwin.so +0 -0
  20. biotite/sequence/align/permutation.c +213 -194
  21. biotite/sequence/align/permutation.cpython-312-darwin.so +0 -0
  22. biotite/sequence/align/selector.c +215 -195
  23. biotite/sequence/align/selector.cpython-312-darwin.so +0 -0
  24. biotite/sequence/align/tracetable.c +213 -193
  25. biotite/sequence/align/tracetable.cpython-312-darwin.so +0 -0
  26. biotite/sequence/codec.c +233 -212
  27. biotite/sequence/codec.cpython-312-darwin.so +0 -0
  28. biotite/sequence/phylo/nj.c +213 -194
  29. biotite/sequence/phylo/nj.cpython-312-darwin.so +0 -0
  30. biotite/sequence/phylo/tree.c +225 -200
  31. biotite/sequence/phylo/tree.cpython-312-darwin.so +0 -0
  32. biotite/sequence/phylo/upgma.c +213 -194
  33. biotite/sequence/phylo/upgma.cpython-312-darwin.so +0 -0
  34. biotite/structure/basepairs.py +7 -12
  35. biotite/structure/bonds.c +1173 -1224
  36. biotite/structure/bonds.cpython-312-darwin.so +0 -0
  37. biotite/structure/celllist.c +215 -195
  38. biotite/structure/celllist.cpython-312-darwin.so +0 -0
  39. biotite/structure/charges.c +1050 -1099
  40. biotite/structure/charges.cpython-312-darwin.so +0 -0
  41. biotite/structure/filter.py +30 -37
  42. biotite/structure/info/__init__.py +5 -8
  43. biotite/structure/info/atoms.py +25 -67
  44. biotite/structure/info/bonds.py +46 -100
  45. biotite/structure/info/ccd/README.rst +8 -0
  46. biotite/structure/info/ccd/amino_acids.txt +1646 -0
  47. biotite/structure/info/ccd/carbohydrates.txt +1133 -0
  48. biotite/structure/info/ccd/components.bcif +0 -0
  49. biotite/structure/info/ccd/nucleotides.txt +797 -0
  50. biotite/structure/info/ccd.py +95 -0
  51. biotite/structure/info/groups.py +90 -0
  52. biotite/structure/info/masses.py +21 -20
  53. biotite/structure/info/misc.py +11 -22
  54. biotite/structure/info/standardize.py +17 -12
  55. biotite/structure/io/__init__.py +2 -4
  56. biotite/structure/io/ctab.py +1 -1
  57. biotite/structure/io/general.py +37 -43
  58. biotite/structure/io/mmtf/__init__.py +3 -0
  59. biotite/structure/io/mmtf/convertarray.c +217 -196
  60. biotite/structure/io/mmtf/convertarray.cpython-312-darwin.so +0 -0
  61. biotite/structure/io/mmtf/convertfile.c +215 -195
  62. biotite/structure/io/mmtf/convertfile.cpython-312-darwin.so +0 -0
  63. biotite/structure/io/mmtf/decode.c +223 -202
  64. biotite/structure/io/mmtf/decode.cpython-312-darwin.so +0 -0
  65. biotite/structure/io/mmtf/encode.c +213 -194
  66. biotite/structure/io/mmtf/encode.cpython-312-darwin.so +0 -0
  67. biotite/structure/io/mmtf/file.py +34 -26
  68. biotite/structure/io/npz/__init__.py +3 -0
  69. biotite/structure/io/npz/file.py +21 -18
  70. biotite/structure/io/pdb/__init__.py +3 -3
  71. biotite/structure/io/pdb/file.py +5 -3
  72. biotite/structure/io/pdb/hybrid36.c +63 -43
  73. biotite/structure/io/pdb/hybrid36.cpython-312-darwin.so +0 -0
  74. biotite/structure/io/pdbqt/file.py +32 -32
  75. biotite/structure/io/pdbx/__init__.py +13 -6
  76. biotite/structure/io/pdbx/bcif.py +649 -0
  77. biotite/structure/io/pdbx/cif.py +1028 -0
  78. biotite/structure/io/pdbx/component.py +243 -0
  79. biotite/structure/io/pdbx/convert.py +707 -359
  80. biotite/structure/io/pdbx/encoding.c +112803 -0
  81. biotite/structure/io/pdbx/encoding.cpython-312-darwin.so +0 -0
  82. biotite/structure/io/pdbx/error.py +14 -0
  83. biotite/structure/io/pdbx/legacy.py +267 -0
  84. biotite/structure/molecules.py +151 -151
  85. biotite/structure/sasa.c +213 -194
  86. biotite/structure/sasa.cpython-312-darwin.so +0 -0
  87. biotite/structure/superimpose.py +158 -115
  88. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/METADATA +2 -2
  89. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/RECORD +92 -90
  90. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/WHEEL +1 -1
  91. biotite/structure/info/amino_acids.json +0 -1556
  92. biotite/structure/info/amino_acids.py +0 -42
  93. biotite/structure/info/carbohydrates.json +0 -1122
  94. biotite/structure/info/carbohydrates.py +0 -39
  95. biotite/structure/info/intra_bonds.msgpack +0 -0
  96. biotite/structure/info/link_types.msgpack +0 -1
  97. biotite/structure/info/nucleotides.json +0 -772
  98. biotite/structure/info/nucleotides.py +0 -39
  99. biotite/structure/info/residue_masses.msgpack +0 -0
  100. biotite/structure/info/residue_names.msgpack +0 -3
  101. biotite/structure/info/residues.msgpack +0 -0
  102. biotite/structure/io/pdbx/file.py +0 -652
  103. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/LICENSE.rst +0 -0
  104. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/top_level.txt +0 -0
biotite/structure/sasa.c CHANGED
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.0.7 */
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 "3_0_7" __PYX_EXTRA_ABI_MODULE_NAME
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 0x030007F0
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; // borrowed
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; // we don't yet need to distinguish between versions > 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); // we don't have access to __pyx_empty_bytes here
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
- #define __Pyx_PyCFunctionFast _PyCFunctionFast
737
- #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
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 PY_VERSION_HEX >= 0x030d00A1
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__; (void)__pyx_clineno; }
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 // Py < 3.12
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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":730
1666
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":731
1675
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":732
1684
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":733
1693
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":737
1702
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":738
1711
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":739
1720
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":740
1729
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":744
1738
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":745
1747
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":754
1756
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":755
1765
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":757
1774
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":758
1783
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":760
1792
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":761
1801
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":763
1810
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":764
1819
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/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-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":765
1828
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":765
1811
1829
  * ctypedef npy_double float_t
1812
1830
  * ctypedef npy_double double_t
1813
1831
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1875,7 +1893,7 @@ struct __pyx_MemviewEnum_obj;
1875
1893
  struct __pyx_memoryview_obj;
1876
1894
  struct __pyx_memoryviewslice_obj;
1877
1895
 
1878
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":767
1896
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":767
1879
1897
  * ctypedef npy_longdouble longdouble_t
1880
1898
  *
1881
1899
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1884,7 +1902,7 @@ struct __pyx_memoryviewslice_obj;
1884
1902
  */
1885
1903
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1886
1904
 
1887
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":768
1905
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":768
1888
1906
  *
1889
1907
  * ctypedef npy_cfloat cfloat_t
1890
1908
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1893,7 +1911,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1893
1911
  */
1894
1912
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1895
1913
 
1896
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":769
1914
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":769
1897
1915
  * ctypedef npy_cfloat cfloat_t
1898
1916
  * ctypedef npy_cdouble cdouble_t
1899
1917
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1902,7 +1920,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1902
1920
  */
1903
1921
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1904
1922
 
1905
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":771
1923
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":771
1906
1924
  * ctypedef npy_clongdouble clongdouble_t
1907
1925
  *
1908
1926
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2208,8 +2226,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2208
2226
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2209
2227
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2210
2228
  #else
2211
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2212
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2229
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2230
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2213
2231
  #endif
2214
2232
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2215
2233
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2225,8 +2243,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2225
2243
  #else
2226
2244
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2227
2245
  #endif
2228
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2229
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2246
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2247
+ to have the same reference counting */
2248
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2230
2249
  #else
2231
2250
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2232
2251
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2719,22 +2738,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2719
2738
  #endif
2720
2739
 
2721
2740
  /* TypeImport.proto */
2722
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2723
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2741
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2742
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2724
2743
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2725
2744
  #include <stdalign.h>
2726
2745
  #endif
2727
2746
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2728
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2747
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2729
2748
  #else
2730
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2749
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2731
2750
  #endif
2732
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2733
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2734
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2735
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2751
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2752
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2753
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2754
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2736
2755
  };
2737
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size);
2756
+ 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);
2738
2757
  #endif
2739
2758
 
2740
2759
  /* FetchSharedCythonModule.proto */
@@ -2827,7 +2846,7 @@ typedef struct {
2827
2846
  #endif
2828
2847
  void *defaults;
2829
2848
  int defaults_pyobjects;
2830
- size_t defaults_size; // used by FusedFunction for copying defaults
2849
+ size_t defaults_size;
2831
2850
  int flags;
2832
2851
  PyObject *defaults_tuple;
2833
2852
  PyObject *defaults_kwdict;
@@ -18481,7 +18500,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18481
18500
  return __pyx_r;
18482
18501
  }
18483
18502
 
18484
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
18503
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
18485
18504
  *
18486
18505
  * @property
18487
18506
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18492,7 +18511,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18492
18511
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
18493
18512
  PyObject *__pyx_r;
18494
18513
 
18495
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":248
18514
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":248
18496
18515
  * """Returns a borrowed reference to the object owning the data/memory.
18497
18516
  * """
18498
18517
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -18502,7 +18521,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18502
18521
  __pyx_r = PyArray_BASE(__pyx_v_self);
18503
18522
  goto __pyx_L0;
18504
18523
 
18505
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
18524
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
18506
18525
  *
18507
18526
  * @property
18508
18527
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18515,7 +18534,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18515
18534
  return __pyx_r;
18516
18535
  }
18517
18536
 
18518
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
18537
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
18519
18538
  *
18520
18539
  * @property
18521
18540
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18529,7 +18548,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18529
18548
  PyArray_Descr *__pyx_t_1;
18530
18549
  __Pyx_RefNannySetupContext("descr", 1);
18531
18550
 
18532
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":254
18551
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":254
18533
18552
  * """Returns an owned reference to the dtype of the array.
18534
18553
  * """
18535
18554
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -18542,7 +18561,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18542
18561
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
18543
18562
  goto __pyx_L0;
18544
18563
 
18545
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
18564
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
18546
18565
  *
18547
18566
  * @property
18548
18567
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18557,7 +18576,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18557
18576
  return __pyx_r;
18558
18577
  }
18559
18578
 
18560
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
18579
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
18561
18580
  *
18562
18581
  * @property
18563
18582
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18568,7 +18587,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18568
18587
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
18569
18588
  int __pyx_r;
18570
18589
 
18571
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":260
18590
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":260
18572
18591
  * """Returns the number of dimensions in the array.
18573
18592
  * """
18574
18593
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -18578,7 +18597,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18578
18597
  __pyx_r = PyArray_NDIM(__pyx_v_self);
18579
18598
  goto __pyx_L0;
18580
18599
 
18581
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
18600
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
18582
18601
  *
18583
18602
  * @property
18584
18603
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18591,7 +18610,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18591
18610
  return __pyx_r;
18592
18611
  }
18593
18612
 
18594
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
18613
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
18595
18614
  *
18596
18615
  * @property
18597
18616
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18602,7 +18621,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18602
18621
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
18603
18622
  npy_intp *__pyx_r;
18604
18623
 
18605
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":268
18624
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":268
18606
18625
  * Can return NULL for 0-dimensional arrays.
18607
18626
  * """
18608
18627
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -18612,7 +18631,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18612
18631
  __pyx_r = PyArray_DIMS(__pyx_v_self);
18613
18632
  goto __pyx_L0;
18614
18633
 
18615
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
18634
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
18616
18635
  *
18617
18636
  * @property
18618
18637
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18625,7 +18644,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18625
18644
  return __pyx_r;
18626
18645
  }
18627
18646
 
18628
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
18647
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
18629
18648
  *
18630
18649
  * @property
18631
18650
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18636,7 +18655,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18636
18655
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
18637
18656
  npy_intp *__pyx_r;
18638
18657
 
18639
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":275
18658
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":275
18640
18659
  * The number of elements matches the number of dimensions of the array (ndim).
18641
18660
  * """
18642
18661
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -18646,7 +18665,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18646
18665
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
18647
18666
  goto __pyx_L0;
18648
18667
 
18649
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
18668
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
18650
18669
  *
18651
18670
  * @property
18652
18671
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18659,7 +18678,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18659
18678
  return __pyx_r;
18660
18679
  }
18661
18680
 
18662
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
18681
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
18663
18682
  *
18664
18683
  * @property
18665
18684
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18670,7 +18689,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18670
18689
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
18671
18690
  npy_intp __pyx_r;
18672
18691
 
18673
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":281
18692
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":281
18674
18693
  * """Returns the total size (in number of elements) of the array.
18675
18694
  * """
18676
18695
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -18680,7 +18699,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18680
18699
  __pyx_r = PyArray_SIZE(__pyx_v_self);
18681
18700
  goto __pyx_L0;
18682
18701
 
18683
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
18702
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
18684
18703
  *
18685
18704
  * @property
18686
18705
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18693,7 +18712,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18693
18712
  return __pyx_r;
18694
18713
  }
18695
18714
 
18696
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
18715
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
18697
18716
  *
18698
18717
  * @property
18699
18718
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18704,7 +18723,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18704
18723
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
18705
18724
  char *__pyx_r;
18706
18725
 
18707
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":290
18726
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":290
18708
18727
  * of `PyArray_DATA()` instead, which returns a 'void*'.
18709
18728
  * """
18710
18729
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -18714,7 +18733,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18714
18733
  __pyx_r = PyArray_BYTES(__pyx_v_self);
18715
18734
  goto __pyx_L0;
18716
18735
 
18717
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
18736
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
18718
18737
  *
18719
18738
  * @property
18720
18739
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18727,7 +18746,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18727
18746
  return __pyx_r;
18728
18747
  }
18729
18748
 
18730
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
18749
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
18731
18750
  * ctypedef npy_cdouble complex_t
18732
18751
  *
18733
18752
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18744,7 +18763,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18744
18763
  int __pyx_clineno = 0;
18745
18764
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
18746
18765
 
18747
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":774
18766
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":774
18748
18767
  *
18749
18768
  * cdef inline object PyArray_MultiIterNew1(a):
18750
18769
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -18758,7 +18777,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18758
18777
  __pyx_t_1 = 0;
18759
18778
  goto __pyx_L0;
18760
18779
 
18761
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
18780
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
18762
18781
  * ctypedef npy_cdouble complex_t
18763
18782
  *
18764
18783
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18777,7 +18796,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18777
18796
  return __pyx_r;
18778
18797
  }
18779
18798
 
18780
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
18799
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
18781
18800
  * return PyArray_MultiIterNew(1, <void*>a)
18782
18801
  *
18783
18802
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18794,7 +18813,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18794
18813
  int __pyx_clineno = 0;
18795
18814
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
18796
18815
 
18797
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":777
18816
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":777
18798
18817
  *
18799
18818
  * cdef inline object PyArray_MultiIterNew2(a, b):
18800
18819
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -18808,7 +18827,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18808
18827
  __pyx_t_1 = 0;
18809
18828
  goto __pyx_L0;
18810
18829
 
18811
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
18830
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
18812
18831
  * return PyArray_MultiIterNew(1, <void*>a)
18813
18832
  *
18814
18833
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18827,7 +18846,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18827
18846
  return __pyx_r;
18828
18847
  }
18829
18848
 
18830
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
18849
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
18831
18850
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18832
18851
  *
18833
18852
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18844,7 +18863,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18844
18863
  int __pyx_clineno = 0;
18845
18864
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
18846
18865
 
18847
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":780
18866
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":780
18848
18867
  *
18849
18868
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
18850
18869
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -18858,7 +18877,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18858
18877
  __pyx_t_1 = 0;
18859
18878
  goto __pyx_L0;
18860
18879
 
18861
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
18880
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
18862
18881
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18863
18882
  *
18864
18883
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18877,7 +18896,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18877
18896
  return __pyx_r;
18878
18897
  }
18879
18898
 
18880
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
18899
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
18881
18900
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18882
18901
  *
18883
18902
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18894,7 +18913,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18894
18913
  int __pyx_clineno = 0;
18895
18914
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
18896
18915
 
18897
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":783
18916
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":783
18898
18917
  *
18899
18918
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
18900
18919
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -18908,7 +18927,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18908
18927
  __pyx_t_1 = 0;
18909
18928
  goto __pyx_L0;
18910
18929
 
18911
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
18930
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
18912
18931
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18913
18932
  *
18914
18933
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18927,7 +18946,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18927
18946
  return __pyx_r;
18928
18947
  }
18929
18948
 
18930
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
18949
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
18931
18950
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18932
18951
  *
18933
18952
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18944,7 +18963,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18944
18963
  int __pyx_clineno = 0;
18945
18964
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
18946
18965
 
18947
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":786
18966
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":786
18948
18967
  *
18949
18968
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
18950
18969
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -18958,7 +18977,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18958
18977
  __pyx_t_1 = 0;
18959
18978
  goto __pyx_L0;
18960
18979
 
18961
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
18980
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
18962
18981
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18963
18982
  *
18964
18983
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18977,7 +18996,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18977
18996
  return __pyx_r;
18978
18997
  }
18979
18998
 
18980
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
18999
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
18981
19000
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18982
19001
  *
18983
19002
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18991,7 +19010,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18991
19010
  int __pyx_t_1;
18992
19011
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
18993
19012
 
18994
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
19013
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
18995
19014
  *
18996
19015
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18997
19016
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19001,7 +19020,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19001
19020
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
19002
19021
  if (__pyx_t_1) {
19003
19022
 
19004
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":790
19023
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":790
19005
19024
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19006
19025
  * if PyDataType_HASSUBARRAY(d):
19007
19026
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -19013,7 +19032,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19013
19032
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
19014
19033
  goto __pyx_L0;
19015
19034
 
19016
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
19035
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
19017
19036
  *
19018
19037
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19019
19038
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19022,7 +19041,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19022
19041
  */
19023
19042
  }
19024
19043
 
19025
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":792
19044
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":792
19026
19045
  * return <tuple>d.subarray.shape
19027
19046
  * else:
19028
19047
  * return () # <<<<<<<<<<<<<<
@@ -19036,7 +19055,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19036
19055
  goto __pyx_L0;
19037
19056
  }
19038
19057
 
19039
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
19058
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
19040
19059
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19041
19060
  *
19042
19061
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19051,7 +19070,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19051
19070
  return __pyx_r;
19052
19071
  }
19053
19072
 
19054
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19073
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19055
19074
  * int _import_umath() except -1
19056
19075
  *
19057
19076
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19065,7 +19084,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19065
19084
  const char *__pyx_filename = NULL;
19066
19085
  int __pyx_clineno = 0;
19067
19086
 
19068
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":969
19087
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":969
19069
19088
  *
19070
19089
  * cdef inline void set_array_base(ndarray arr, object base):
19071
19090
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -19074,7 +19093,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19074
19093
  */
19075
19094
  Py_INCREF(__pyx_v_base);
19076
19095
 
19077
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":970
19096
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":970
19078
19097
  * cdef inline void set_array_base(ndarray arr, object base):
19079
19098
  * Py_INCREF(base) # important to do this before stealing the reference below!
19080
19099
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -19083,7 +19102,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19083
19102
  */
19084
19103
  __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)
19085
19104
 
19086
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19105
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19087
19106
  * int _import_umath() except -1
19088
19107
  *
19089
19108
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19098,7 +19117,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19098
19117
  __pyx_L0:;
19099
19118
  }
19100
19119
 
19101
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19120
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19102
19121
  * PyArray_SetBaseObject(arr, base)
19103
19122
  *
19104
19123
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19113,7 +19132,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19113
19132
  int __pyx_t_1;
19114
19133
  __Pyx_RefNannySetupContext("get_array_base", 1);
19115
19134
 
19116
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":973
19135
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":973
19117
19136
  *
19118
19137
  * cdef inline object get_array_base(ndarray arr):
19119
19138
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -19122,7 +19141,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19122
19141
  */
19123
19142
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
19124
19143
 
19125
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19144
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19126
19145
  * cdef inline object get_array_base(ndarray arr):
19127
19146
  * base = PyArray_BASE(arr)
19128
19147
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19132,7 +19151,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19132
19151
  __pyx_t_1 = (__pyx_v_base == NULL);
19133
19152
  if (__pyx_t_1) {
19134
19153
 
19135
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":975
19154
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":975
19136
19155
  * base = PyArray_BASE(arr)
19137
19156
  * if base is NULL:
19138
19157
  * return None # <<<<<<<<<<<<<<
@@ -19143,7 +19162,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19143
19162
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
19144
19163
  goto __pyx_L0;
19145
19164
 
19146
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19165
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19147
19166
  * cdef inline object get_array_base(ndarray arr):
19148
19167
  * base = PyArray_BASE(arr)
19149
19168
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19152,7 +19171,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19152
19171
  */
19153
19172
  }
19154
19173
 
19155
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":976
19174
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":976
19156
19175
  * if base is NULL:
19157
19176
  * return None
19158
19177
  * return <object>base # <<<<<<<<<<<<<<
@@ -19164,7 +19183,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19164
19183
  __pyx_r = ((PyObject *)__pyx_v_base);
19165
19184
  goto __pyx_L0;
19166
19185
 
19167
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19186
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19168
19187
  * PyArray_SetBaseObject(arr, base)
19169
19188
  *
19170
19189
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19179,7 +19198,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19179
19198
  return __pyx_r;
19180
19199
  }
19181
19200
 
19182
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
19201
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
19183
19202
  * # Versions of the import_* functions which are more suitable for
19184
19203
  * # Cython code.
19185
19204
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19203,7 +19222,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19203
19222
  int __pyx_clineno = 0;
19204
19223
  __Pyx_RefNannySetupContext("import_array", 1);
19205
19224
 
19206
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19225
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19207
19226
  * # Cython code.
19208
19227
  * cdef inline int import_array() except -1:
19209
19228
  * try: # <<<<<<<<<<<<<<
@@ -19219,7 +19238,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19219
19238
  __Pyx_XGOTREF(__pyx_t_3);
19220
19239
  /*try:*/ {
19221
19240
 
19222
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":982
19241
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":982
19223
19242
  * cdef inline int import_array() except -1:
19224
19243
  * try:
19225
19244
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -19228,7 +19247,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19228
19247
  */
19229
19248
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
19230
19249
 
19231
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19250
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19232
19251
  * # Cython code.
19233
19252
  * cdef inline int import_array() except -1:
19234
19253
  * try: # <<<<<<<<<<<<<<
@@ -19242,7 +19261,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19242
19261
  goto __pyx_L8_try_end;
19243
19262
  __pyx_L3_error:;
19244
19263
 
19245
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":983
19264
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":983
19246
19265
  * try:
19247
19266
  * __pyx_import_array()
19248
19267
  * except Exception: # <<<<<<<<<<<<<<
@@ -19257,7 +19276,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19257
19276
  __Pyx_XGOTREF(__pyx_t_6);
19258
19277
  __Pyx_XGOTREF(__pyx_t_7);
19259
19278
 
19260
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
19279
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
19261
19280
  * __pyx_import_array()
19262
19281
  * except Exception:
19263
19282
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -19272,7 +19291,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19272
19291
  }
19273
19292
  goto __pyx_L5_except_error;
19274
19293
 
19275
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19294
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19276
19295
  * # Cython code.
19277
19296
  * cdef inline int import_array() except -1:
19278
19297
  * try: # <<<<<<<<<<<<<<
@@ -19288,7 +19307,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19288
19307
  __pyx_L8_try_end:;
19289
19308
  }
19290
19309
 
19291
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
19310
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
19292
19311
  * # Versions of the import_* functions which are more suitable for
19293
19312
  * # Cython code.
19294
19313
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19311,7 +19330,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19311
19330
  return __pyx_r;
19312
19331
  }
19313
19332
 
19314
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
19333
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
19315
19334
  * raise ImportError("numpy.core.multiarray failed to import")
19316
19335
  *
19317
19336
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19335,7 +19354,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19335
19354
  int __pyx_clineno = 0;
19336
19355
  __Pyx_RefNannySetupContext("import_umath", 1);
19337
19356
 
19338
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19357
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19339
19358
  *
19340
19359
  * cdef inline int import_umath() except -1:
19341
19360
  * try: # <<<<<<<<<<<<<<
@@ -19351,7 +19370,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19351
19370
  __Pyx_XGOTREF(__pyx_t_3);
19352
19371
  /*try:*/ {
19353
19372
 
19354
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":988
19373
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":988
19355
19374
  * cdef inline int import_umath() except -1:
19356
19375
  * try:
19357
19376
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19360,7 +19379,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19360
19379
  */
19361
19380
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
19362
19381
 
19363
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19382
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19364
19383
  *
19365
19384
  * cdef inline int import_umath() except -1:
19366
19385
  * try: # <<<<<<<<<<<<<<
@@ -19374,7 +19393,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19374
19393
  goto __pyx_L8_try_end;
19375
19394
  __pyx_L3_error:;
19376
19395
 
19377
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":989
19396
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":989
19378
19397
  * try:
19379
19398
  * _import_umath()
19380
19399
  * except Exception: # <<<<<<<<<<<<<<
@@ -19389,7 +19408,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19389
19408
  __Pyx_XGOTREF(__pyx_t_6);
19390
19409
  __Pyx_XGOTREF(__pyx_t_7);
19391
19410
 
19392
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
19411
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
19393
19412
  * _import_umath()
19394
19413
  * except Exception:
19395
19414
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19404,7 +19423,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19404
19423
  }
19405
19424
  goto __pyx_L5_except_error;
19406
19425
 
19407
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19426
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19408
19427
  *
19409
19428
  * cdef inline int import_umath() except -1:
19410
19429
  * try: # <<<<<<<<<<<<<<
@@ -19420,7 +19439,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19420
19439
  __pyx_L8_try_end:;
19421
19440
  }
19422
19441
 
19423
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
19442
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
19424
19443
  * raise ImportError("numpy.core.multiarray failed to import")
19425
19444
  *
19426
19445
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19443,7 +19462,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19443
19462
  return __pyx_r;
19444
19463
  }
19445
19464
 
19446
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
19465
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
19447
19466
  * raise ImportError("numpy.core.umath failed to import")
19448
19467
  *
19449
19468
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19467,7 +19486,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19467
19486
  int __pyx_clineno = 0;
19468
19487
  __Pyx_RefNannySetupContext("import_ufunc", 1);
19469
19488
 
19470
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19489
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19471
19490
  *
19472
19491
  * cdef inline int import_ufunc() except -1:
19473
19492
  * try: # <<<<<<<<<<<<<<
@@ -19483,7 +19502,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19483
19502
  __Pyx_XGOTREF(__pyx_t_3);
19484
19503
  /*try:*/ {
19485
19504
 
19486
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":994
19505
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":994
19487
19506
  * cdef inline int import_ufunc() except -1:
19488
19507
  * try:
19489
19508
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19492,7 +19511,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19492
19511
  */
19493
19512
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
19494
19513
 
19495
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19514
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19496
19515
  *
19497
19516
  * cdef inline int import_ufunc() except -1:
19498
19517
  * try: # <<<<<<<<<<<<<<
@@ -19506,7 +19525,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19506
19525
  goto __pyx_L8_try_end;
19507
19526
  __pyx_L3_error:;
19508
19527
 
19509
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":995
19528
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":995
19510
19529
  * try:
19511
19530
  * _import_umath()
19512
19531
  * except Exception: # <<<<<<<<<<<<<<
@@ -19521,7 +19540,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19521
19540
  __Pyx_XGOTREF(__pyx_t_6);
19522
19541
  __Pyx_XGOTREF(__pyx_t_7);
19523
19542
 
19524
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":996
19543
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":996
19525
19544
  * _import_umath()
19526
19545
  * except Exception:
19527
19546
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19536,7 +19555,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19536
19555
  }
19537
19556
  goto __pyx_L5_except_error;
19538
19557
 
19539
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19558
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19540
19559
  *
19541
19560
  * cdef inline int import_ufunc() except -1:
19542
19561
  * try: # <<<<<<<<<<<<<<
@@ -19552,7 +19571,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19552
19571
  __pyx_L8_try_end:;
19553
19572
  }
19554
19573
 
19555
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
19574
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
19556
19575
  * raise ImportError("numpy.core.umath failed to import")
19557
19576
  *
19558
19577
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19575,7 +19594,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19575
19594
  return __pyx_r;
19576
19595
  }
19577
19596
 
19578
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
19597
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
19579
19598
  *
19580
19599
  *
19581
19600
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19586,7 +19605,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19586
19605
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
19587
19606
  int __pyx_r;
19588
19607
 
19589
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1011
19608
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1011
19590
19609
  * bool
19591
19610
  * """
19592
19611
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -19596,7 +19615,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19596
19615
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
19597
19616
  goto __pyx_L0;
19598
19617
 
19599
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
19618
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
19600
19619
  *
19601
19620
  *
19602
19621
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19609,7 +19628,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19609
19628
  return __pyx_r;
19610
19629
  }
19611
19630
 
19612
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
19631
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
19613
19632
  *
19614
19633
  *
19615
19634
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19620,7 +19639,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19620
19639
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
19621
19640
  int __pyx_r;
19622
19641
 
19623
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1026
19642
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1026
19624
19643
  * bool
19625
19644
  * """
19626
19645
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -19630,7 +19649,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19630
19649
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
19631
19650
  goto __pyx_L0;
19632
19651
 
19633
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
19652
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
19634
19653
  *
19635
19654
  *
19636
19655
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19643,7 +19662,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19643
19662
  return __pyx_r;
19644
19663
  }
19645
19664
 
19646
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
19665
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
19647
19666
  *
19648
19667
  *
19649
19668
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19654,7 +19673,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19654
19673
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
19655
19674
  npy_datetime __pyx_r;
19656
19675
 
19657
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1036
19676
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1036
19658
19677
  * also needed. That can be found using `get_datetime64_unit`.
19659
19678
  * """
19660
19679
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19664,7 +19683,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19664
19683
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
19665
19684
  goto __pyx_L0;
19666
19685
 
19667
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
19686
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
19668
19687
  *
19669
19688
  *
19670
19689
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19677,7 +19696,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19677
19696
  return __pyx_r;
19678
19697
  }
19679
19698
 
19680
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
19699
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
19681
19700
  *
19682
19701
  *
19683
19702
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19688,7 +19707,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19688
19707
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
19689
19708
  npy_timedelta __pyx_r;
19690
19709
 
19691
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1043
19710
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1043
19692
19711
  * returns the int64 value underlying scalar numpy timedelta64 object
19693
19712
  * """
19694
19713
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19698,7 +19717,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19698
19717
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
19699
19718
  goto __pyx_L0;
19700
19719
 
19701
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
19720
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
19702
19721
  *
19703
19722
  *
19704
19723
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19711,7 +19730,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19711
19730
  return __pyx_r;
19712
19731
  }
19713
19732
 
19714
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
19733
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
19715
19734
  *
19716
19735
  *
19717
19736
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19722,7 +19741,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19722
19741
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
19723
19742
  NPY_DATETIMEUNIT __pyx_r;
19724
19743
 
19725
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1050
19744
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1050
19726
19745
  * returns the unit part of the dtype for a numpy datetime64 object.
19727
19746
  * """
19728
19747
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -19730,7 +19749,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
19730
19749
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
19731
19750
  goto __pyx_L0;
19732
19751
 
19733
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
19752
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
19734
19753
  *
19735
19754
  *
19736
19755
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -24418,7 +24437,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
24418
24437
  __Pyx_GOTREF(__pyx_tuple__8);
24419
24438
  __Pyx_GIVEREF(__pyx_tuple__8);
24420
24439
 
24421
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
24440
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
24422
24441
  * __pyx_import_array()
24423
24442
  * except Exception:
24424
24443
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -24429,7 +24448,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
24429
24448
  __Pyx_GOTREF(__pyx_tuple__9);
24430
24449
  __Pyx_GIVEREF(__pyx_tuple__9);
24431
24450
 
24432
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
24451
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
24433
24452
  * _import_umath()
24434
24453
  * except Exception:
24435
24454
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -24871,33 +24890,33 @@ static int __Pyx_modinit_type_import_code(void) {
24871
24890
  /*--- Type import code ---*/
24872
24891
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
24873
24892
  __Pyx_GOTREF(__pyx_t_1);
24874
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
24893
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
24875
24894
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
24876
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
24895
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
24877
24896
  #elif CYTHON_COMPILING_IN_LIMITED_API
24878
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
24897
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
24879
24898
  #else
24880
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
24899
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
24881
24900
  #endif
24882
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
24901
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
24883
24902
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
24884
24903
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
24885
24904
  __Pyx_GOTREF(__pyx_t_1);
24886
- __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
24887
- __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
24888
- __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
24889
- __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
24890
- __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 809, __pyx_L1_error)
24891
- __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 811, __pyx_L1_error)
24892
- __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 813, __pyx_L1_error)
24893
- __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 815, __pyx_L1_error)
24894
- __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 817, __pyx_L1_error)
24895
- __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 819, __pyx_L1_error)
24896
- __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 821, __pyx_L1_error)
24897
- __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 823, __pyx_L1_error)
24898
- __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 825, __pyx_L1_error)
24899
- __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 827, __pyx_L1_error)
24900
- __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 866, __pyx_L1_error)
24905
+ __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)
24906
+ __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)
24907
+ __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)
24908
+ __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)
24909
+ __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)
24910
+ __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)
24911
+ __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)
24912
+ __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)
24913
+ __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)
24914
+ __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)
24915
+ __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)
24916
+ __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)
24917
+ __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)
24918
+ __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)
24919
+ __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)
24901
24920
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
24902
24921
  __Pyx_RefNannyFinishContext();
24903
24922
  return 0;
@@ -26350,11 +26369,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
26350
26369
  {
26351
26370
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
26352
26371
  if (unlikely(eq != 0)) {
26353
- if (unlikely(eq < 0)) return NULL; // error
26372
+ if (unlikely(eq < 0)) return NULL;
26354
26373
  return kwvalues[i];
26355
26374
  }
26356
26375
  }
26357
- return NULL; // not found (no exception set)
26376
+ return NULL;
26358
26377
  }
26359
26378
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
26360
26379
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -26467,7 +26486,7 @@ static int __Pyx_ParseOptionalKeywords(
26467
26486
  if (*name) {
26468
26487
  values[name-argnames] = value;
26469
26488
  #if CYTHON_AVOID_BORROWED_REFS
26470
- Py_INCREF(value); // transfer ownership of value to values
26489
+ Py_INCREF(value);
26471
26490
  Py_DECREF(key);
26472
26491
  #endif
26473
26492
  key = NULL;
@@ -26486,7 +26505,7 @@ static int __Pyx_ParseOptionalKeywords(
26486
26505
  && _PyString_Eq(**name, key)) {
26487
26506
  values[name-argnames] = value;
26488
26507
  #if CYTHON_AVOID_BORROWED_REFS
26489
- value = NULL; // ownership transferred to values
26508
+ value = NULL;
26490
26509
  #endif
26491
26510
  break;
26492
26511
  }
@@ -26518,7 +26537,7 @@ static int __Pyx_ParseOptionalKeywords(
26518
26537
  if (cmp == 0) {
26519
26538
  values[name-argnames] = value;
26520
26539
  #if CYTHON_AVOID_BORROWED_REFS
26521
- value = NULL; // ownership transferred to values
26540
+ value = NULL;
26522
26541
  #endif
26523
26542
  break;
26524
26543
  }
@@ -29525,10 +29544,10 @@ __PYX_GOOD:
29525
29544
  #endif
29526
29545
 
29527
29546
  /* TypeImport */
29528
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
29529
- #define __PYX_HAVE_RT_ImportType_3_0_7
29530
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
29531
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
29547
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
29548
+ #define __PYX_HAVE_RT_ImportType_3_0_10
29549
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
29550
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
29532
29551
  {
29533
29552
  PyObject *result = 0;
29534
29553
  char warning[200];
@@ -29582,7 +29601,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
29582
29601
  module_name, class_name, size, basicsize+itemsize);
29583
29602
  goto bad;
29584
29603
  }
29585
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
29604
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
29586
29605
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
29587
29606
  PyErr_Format(PyExc_ValueError,
29588
29607
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -29590,7 +29609,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
29590
29609
  module_name, class_name, size, basicsize, basicsize+itemsize);
29591
29610
  goto bad;
29592
29611
  }
29593
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
29612
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
29594
29613
  PyOS_snprintf(warning, sizeof(warning),
29595
29614
  "%s.%s size changed, may indicate binary incompatibility. "
29596
29615
  "Expected %zd from C header, got %zd from PyObject",
@@ -30590,7 +30609,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
30590
30609
  default:
30591
30610
  return NULL;
30592
30611
  }
30593
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
30612
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
30594
30613
  }
30595
30614
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
30596
30615
  {
@@ -31049,7 +31068,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
31049
31068
  #else
31050
31069
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
31051
31070
  #endif
31052
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
31071
+ Py_XDECREF(py_funcname);
31053
31072
  return py_code;
31054
31073
  bad:
31055
31074
  Py_XDECREF(py_funcname);