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
@@ -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
 
@@ -1289,24 +1324,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1289
1324
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1290
1325
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1291
1326
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1292
- #if CYTHON_COMPILING_IN_LIMITED_API
1293
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1294
- {
1295
- const wchar_t *u_end = u;
1296
- while (*u_end++) ;
1297
- return (size_t)(u_end - u - 1);
1298
- }
1299
- #else
1300
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1301
- {
1302
- const Py_UNICODE *u_end = u;
1303
- while (*u_end++) ;
1304
- return (size_t)(u_end - u - 1);
1305
- }
1306
- #endif
1307
1327
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1308
- #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1309
- #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1310
1328
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1311
1329
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1312
1330
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -1356,7 +1374,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1356
1374
  #endif
1357
1375
  typedef Py_ssize_t __Pyx_compact_pylong;
1358
1376
  typedef size_t __Pyx_compact_upylong;
1359
- #else // Py < 3.12
1377
+ #else
1360
1378
  #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
1361
1379
  #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
1362
1380
  #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
@@ -1646,7 +1664,7 @@ typedef struct {
1646
1664
 
1647
1665
  /* #### Code section: numeric_typedefs ### */
1648
1666
 
1649
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":730
1667
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":730
1650
1668
  * # in Cython to enable them only on the right systems.
1651
1669
  *
1652
1670
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1655,7 +1673,7 @@ typedef struct {
1655
1673
  */
1656
1674
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1657
1675
 
1658
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":731
1676
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":731
1659
1677
  *
1660
1678
  * ctypedef npy_int8 int8_t
1661
1679
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1664,7 +1682,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1664
1682
  */
1665
1683
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1666
1684
 
1667
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":732
1685
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":732
1668
1686
  * ctypedef npy_int8 int8_t
1669
1687
  * ctypedef npy_int16 int16_t
1670
1688
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1673,7 +1691,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1673
1691
  */
1674
1692
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1675
1693
 
1676
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":733
1694
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":733
1677
1695
  * ctypedef npy_int16 int16_t
1678
1696
  * ctypedef npy_int32 int32_t
1679
1697
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1682,7 +1700,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1682
1700
  */
1683
1701
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1684
1702
 
1685
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":737
1703
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":737
1686
1704
  * #ctypedef npy_int128 int128_t
1687
1705
  *
1688
1706
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1691,7 +1709,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1691
1709
  */
1692
1710
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1693
1711
 
1694
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":738
1712
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":738
1695
1713
  *
1696
1714
  * ctypedef npy_uint8 uint8_t
1697
1715
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1700,7 +1718,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1700
1718
  */
1701
1719
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1702
1720
 
1703
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":739
1721
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":739
1704
1722
  * ctypedef npy_uint8 uint8_t
1705
1723
  * ctypedef npy_uint16 uint16_t
1706
1724
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1709,7 +1727,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1709
1727
  */
1710
1728
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1711
1729
 
1712
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":740
1730
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":740
1713
1731
  * ctypedef npy_uint16 uint16_t
1714
1732
  * ctypedef npy_uint32 uint32_t
1715
1733
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1718,7 +1736,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1718
1736
  */
1719
1737
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1720
1738
 
1721
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":744
1739
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":744
1722
1740
  * #ctypedef npy_uint128 uint128_t
1723
1741
  *
1724
1742
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1727,7 +1745,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1727
1745
  */
1728
1746
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1729
1747
 
1730
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":745
1748
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":745
1731
1749
  *
1732
1750
  * ctypedef npy_float32 float32_t
1733
1751
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1736,7 +1754,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1736
1754
  */
1737
1755
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1738
1756
 
1739
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":754
1757
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":754
1740
1758
  * # The int types are mapped a bit surprising --
1741
1759
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1742
1760
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1745,7 +1763,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1745
1763
  */
1746
1764
  typedef npy_long __pyx_t_5numpy_int_t;
1747
1765
 
1748
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":755
1766
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":755
1749
1767
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1750
1768
  * ctypedef npy_long int_t
1751
1769
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1754,7 +1772,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1754
1772
  */
1755
1773
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1756
1774
 
1757
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":757
1775
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":757
1758
1776
  * ctypedef npy_longlong longlong_t
1759
1777
  *
1760
1778
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1763,7 +1781,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1763
1781
  */
1764
1782
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1765
1783
 
1766
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":758
1784
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":758
1767
1785
  *
1768
1786
  * ctypedef npy_ulong uint_t
1769
1787
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1772,7 +1790,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1772
1790
  */
1773
1791
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1774
1792
 
1775
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":760
1793
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":760
1776
1794
  * ctypedef npy_ulonglong ulonglong_t
1777
1795
  *
1778
1796
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1781,7 +1799,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1781
1799
  */
1782
1800
  typedef npy_intp __pyx_t_5numpy_intp_t;
1783
1801
 
1784
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":761
1802
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":761
1785
1803
  *
1786
1804
  * ctypedef npy_intp intp_t
1787
1805
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1790,7 +1808,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1790
1808
  */
1791
1809
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1792
1810
 
1793
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":763
1811
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":763
1794
1812
  * ctypedef npy_uintp uintp_t
1795
1813
  *
1796
1814
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1799,7 +1817,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1799
1817
  */
1800
1818
  typedef npy_double __pyx_t_5numpy_float_t;
1801
1819
 
1802
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":764
1820
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":764
1803
1821
  *
1804
1822
  * ctypedef npy_double float_t
1805
1823
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1808,7 +1826,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1808
1826
  */
1809
1827
  typedef npy_double __pyx_t_5numpy_double_t;
1810
1828
 
1811
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":765
1829
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":765
1812
1830
  * ctypedef npy_double float_t
1813
1831
  * ctypedef npy_double double_t
1814
1832
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1912,7 +1930,7 @@ struct __pyx_MemviewEnum_obj;
1912
1930
  struct __pyx_memoryview_obj;
1913
1931
  struct __pyx_memoryviewslice_obj;
1914
1932
 
1915
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":767
1933
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":767
1916
1934
  * ctypedef npy_longdouble longdouble_t
1917
1935
  *
1918
1936
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1921,7 +1939,7 @@ struct __pyx_memoryviewslice_obj;
1921
1939
  */
1922
1940
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1923
1941
 
1924
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":768
1942
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":768
1925
1943
  *
1926
1944
  * ctypedef npy_cfloat cfloat_t
1927
1945
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1930,7 +1948,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1930
1948
  */
1931
1949
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1932
1950
 
1933
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":769
1951
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":769
1934
1952
  * ctypedef npy_cfloat cfloat_t
1935
1953
  * ctypedef npy_cdouble cdouble_t
1936
1954
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1939,7 +1957,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1939
1957
  */
1940
1958
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1941
1959
 
1942
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":771
1960
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":771
1943
1961
  * ctypedef npy_clongdouble clongdouble_t
1944
1962
  *
1945
1963
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2260,8 +2278,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2260
2278
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2261
2279
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2262
2280
  #else
2263
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2264
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2281
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2282
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2265
2283
  #endif
2266
2284
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2267
2285
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2277,8 +2295,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2277
2295
  #else
2278
2296
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2279
2297
  #endif
2280
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2281
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2298
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2299
+ to have the same reference counting */
2300
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2282
2301
  #else
2283
2302
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2284
2303
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2909,22 +2928,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2909
2928
  #endif
2910
2929
 
2911
2930
  /* TypeImport.proto */
2912
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2913
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2931
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2932
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2914
2933
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2915
2934
  #include <stdalign.h>
2916
2935
  #endif
2917
2936
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2918
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2937
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2919
2938
  #else
2920
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2939
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2921
2940
  #endif
2922
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2923
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2924
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2925
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2941
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2942
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2943
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2944
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2926
2945
  };
2927
- 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);
2946
+ 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);
2928
2947
  #endif
2929
2948
 
2930
2949
  /* SetNameInClass.proto */
@@ -3028,7 +3047,7 @@ typedef struct {
3028
3047
  #endif
3029
3048
  void *defaults;
3030
3049
  int defaults_pyobjects;
3031
- size_t defaults_size; // used by FusedFunction for copying defaults
3050
+ size_t defaults_size;
3032
3051
  int flags;
3033
3052
  PyObject *defaults_tuple;
3034
3053
  PyObject *defaults_kwdict;
@@ -19247,7 +19266,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
19247
19266
  return __pyx_r;
19248
19267
  }
19249
19268
 
19250
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
19269
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
19251
19270
  *
19252
19271
  * @property
19253
19272
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -19258,7 +19277,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
19258
19277
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
19259
19278
  PyObject *__pyx_r;
19260
19279
 
19261
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":248
19280
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":248
19262
19281
  * """Returns a borrowed reference to the object owning the data/memory.
19263
19282
  * """
19264
19283
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -19268,7 +19287,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
19268
19287
  __pyx_r = PyArray_BASE(__pyx_v_self);
19269
19288
  goto __pyx_L0;
19270
19289
 
19271
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
19290
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
19272
19291
  *
19273
19292
  * @property
19274
19293
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -19281,7 +19300,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
19281
19300
  return __pyx_r;
19282
19301
  }
19283
19302
 
19284
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
19303
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
19285
19304
  *
19286
19305
  * @property
19287
19306
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -19295,7 +19314,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19295
19314
  PyArray_Descr *__pyx_t_1;
19296
19315
  __Pyx_RefNannySetupContext("descr", 1);
19297
19316
 
19298
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":254
19317
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":254
19299
19318
  * """Returns an owned reference to the dtype of the array.
19300
19319
  * """
19301
19320
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -19308,7 +19327,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19308
19327
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
19309
19328
  goto __pyx_L0;
19310
19329
 
19311
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
19330
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
19312
19331
  *
19313
19332
  * @property
19314
19333
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -19323,7 +19342,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19323
19342
  return __pyx_r;
19324
19343
  }
19325
19344
 
19326
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
19345
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
19327
19346
  *
19328
19347
  * @property
19329
19348
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -19334,7 +19353,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19334
19353
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
19335
19354
  int __pyx_r;
19336
19355
 
19337
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":260
19356
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":260
19338
19357
  * """Returns the number of dimensions in the array.
19339
19358
  * """
19340
19359
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -19344,7 +19363,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19344
19363
  __pyx_r = PyArray_NDIM(__pyx_v_self);
19345
19364
  goto __pyx_L0;
19346
19365
 
19347
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
19366
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
19348
19367
  *
19349
19368
  * @property
19350
19369
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -19357,7 +19376,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19357
19376
  return __pyx_r;
19358
19377
  }
19359
19378
 
19360
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
19379
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
19361
19380
  *
19362
19381
  * @property
19363
19382
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -19368,7 +19387,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19368
19387
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
19369
19388
  npy_intp *__pyx_r;
19370
19389
 
19371
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":268
19390
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":268
19372
19391
  * Can return NULL for 0-dimensional arrays.
19373
19392
  * """
19374
19393
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -19378,7 +19397,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19378
19397
  __pyx_r = PyArray_DIMS(__pyx_v_self);
19379
19398
  goto __pyx_L0;
19380
19399
 
19381
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
19400
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
19382
19401
  *
19383
19402
  * @property
19384
19403
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -19391,7 +19410,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19391
19410
  return __pyx_r;
19392
19411
  }
19393
19412
 
19394
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
19413
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
19395
19414
  *
19396
19415
  * @property
19397
19416
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -19402,7 +19421,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19402
19421
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
19403
19422
  npy_intp *__pyx_r;
19404
19423
 
19405
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":275
19424
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":275
19406
19425
  * The number of elements matches the number of dimensions of the array (ndim).
19407
19426
  * """
19408
19427
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -19412,7 +19431,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19412
19431
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
19413
19432
  goto __pyx_L0;
19414
19433
 
19415
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
19434
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
19416
19435
  *
19417
19436
  * @property
19418
19437
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -19425,7 +19444,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19425
19444
  return __pyx_r;
19426
19445
  }
19427
19446
 
19428
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
19447
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
19429
19448
  *
19430
19449
  * @property
19431
19450
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -19436,7 +19455,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19436
19455
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
19437
19456
  npy_intp __pyx_r;
19438
19457
 
19439
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":281
19458
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":281
19440
19459
  * """Returns the total size (in number of elements) of the array.
19441
19460
  * """
19442
19461
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -19446,7 +19465,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19446
19465
  __pyx_r = PyArray_SIZE(__pyx_v_self);
19447
19466
  goto __pyx_L0;
19448
19467
 
19449
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
19468
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
19450
19469
  *
19451
19470
  * @property
19452
19471
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -19459,7 +19478,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19459
19478
  return __pyx_r;
19460
19479
  }
19461
19480
 
19462
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
19481
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
19463
19482
  *
19464
19483
  * @property
19465
19484
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -19470,7 +19489,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19470
19489
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
19471
19490
  char *__pyx_r;
19472
19491
 
19473
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":290
19492
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":290
19474
19493
  * of `PyArray_DATA()` instead, which returns a 'void*'.
19475
19494
  * """
19476
19495
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -19480,7 +19499,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
19480
19499
  __pyx_r = PyArray_BYTES(__pyx_v_self);
19481
19500
  goto __pyx_L0;
19482
19501
 
19483
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
19502
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
19484
19503
  *
19485
19504
  * @property
19486
19505
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -19493,7 +19512,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
19493
19512
  return __pyx_r;
19494
19513
  }
19495
19514
 
19496
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
19515
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
19497
19516
  * ctypedef npy_cdouble complex_t
19498
19517
  *
19499
19518
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19510,7 +19529,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19510
19529
  int __pyx_clineno = 0;
19511
19530
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
19512
19531
 
19513
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":774
19532
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":774
19514
19533
  *
19515
19534
  * cdef inline object PyArray_MultiIterNew1(a):
19516
19535
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -19524,7 +19543,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19524
19543
  __pyx_t_1 = 0;
19525
19544
  goto __pyx_L0;
19526
19545
 
19527
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
19546
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
19528
19547
  * ctypedef npy_cdouble complex_t
19529
19548
  *
19530
19549
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19543,7 +19562,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19543
19562
  return __pyx_r;
19544
19563
  }
19545
19564
 
19546
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
19565
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
19547
19566
  * return PyArray_MultiIterNew(1, <void*>a)
19548
19567
  *
19549
19568
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19560,7 +19579,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19560
19579
  int __pyx_clineno = 0;
19561
19580
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
19562
19581
 
19563
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":777
19582
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":777
19564
19583
  *
19565
19584
  * cdef inline object PyArray_MultiIterNew2(a, b):
19566
19585
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -19574,7 +19593,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19574
19593
  __pyx_t_1 = 0;
19575
19594
  goto __pyx_L0;
19576
19595
 
19577
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
19596
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
19578
19597
  * return PyArray_MultiIterNew(1, <void*>a)
19579
19598
  *
19580
19599
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19593,7 +19612,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19593
19612
  return __pyx_r;
19594
19613
  }
19595
19614
 
19596
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
19615
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
19597
19616
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19598
19617
  *
19599
19618
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19610,7 +19629,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19610
19629
  int __pyx_clineno = 0;
19611
19630
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
19612
19631
 
19613
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":780
19632
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":780
19614
19633
  *
19615
19634
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
19616
19635
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -19624,7 +19643,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19624
19643
  __pyx_t_1 = 0;
19625
19644
  goto __pyx_L0;
19626
19645
 
19627
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
19646
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
19628
19647
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19629
19648
  *
19630
19649
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19643,7 +19662,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
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":782
19665
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
19647
19666
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19648
19667
  *
19649
19668
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19660,7 +19679,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19660
19679
  int __pyx_clineno = 0;
19661
19680
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
19662
19681
 
19663
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":783
19682
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":783
19664
19683
  *
19665
19684
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
19666
19685
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -19674,7 +19693,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19674
19693
  __pyx_t_1 = 0;
19675
19694
  goto __pyx_L0;
19676
19695
 
19677
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
19696
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
19678
19697
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19679
19698
  *
19680
19699
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19693,7 +19712,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19693
19712
  return __pyx_r;
19694
19713
  }
19695
19714
 
19696
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
19715
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
19697
19716
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19698
19717
  *
19699
19718
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19710,7 +19729,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19710
19729
  int __pyx_clineno = 0;
19711
19730
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
19712
19731
 
19713
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":786
19732
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":786
19714
19733
  *
19715
19734
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
19716
19735
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -19724,7 +19743,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19724
19743
  __pyx_t_1 = 0;
19725
19744
  goto __pyx_L0;
19726
19745
 
19727
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
19746
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
19728
19747
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19729
19748
  *
19730
19749
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19743,7 +19762,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19743
19762
  return __pyx_r;
19744
19763
  }
19745
19764
 
19746
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
19765
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
19747
19766
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19748
19767
  *
19749
19768
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19757,7 +19776,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19757
19776
  int __pyx_t_1;
19758
19777
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
19759
19778
 
19760
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
19779
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
19761
19780
  *
19762
19781
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19763
19782
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19767,7 +19786,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19767
19786
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
19768
19787
  if (__pyx_t_1) {
19769
19788
 
19770
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":790
19789
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":790
19771
19790
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19772
19791
  * if PyDataType_HASSUBARRAY(d):
19773
19792
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -19779,7 +19798,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19779
19798
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
19780
19799
  goto __pyx_L0;
19781
19800
 
19782
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
19801
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
19783
19802
  *
19784
19803
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19785
19804
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19788,7 +19807,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19788
19807
  */
19789
19808
  }
19790
19809
 
19791
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":792
19810
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":792
19792
19811
  * return <tuple>d.subarray.shape
19793
19812
  * else:
19794
19813
  * return () # <<<<<<<<<<<<<<
@@ -19802,7 +19821,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19802
19821
  goto __pyx_L0;
19803
19822
  }
19804
19823
 
19805
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
19824
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
19806
19825
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19807
19826
  *
19808
19827
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19817,7 +19836,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19817
19836
  return __pyx_r;
19818
19837
  }
19819
19838
 
19820
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19839
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19821
19840
  * int _import_umath() except -1
19822
19841
  *
19823
19842
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19831,7 +19850,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19831
19850
  const char *__pyx_filename = NULL;
19832
19851
  int __pyx_clineno = 0;
19833
19852
 
19834
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":969
19853
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":969
19835
19854
  *
19836
19855
  * cdef inline void set_array_base(ndarray arr, object base):
19837
19856
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -19840,7 +19859,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19840
19859
  */
19841
19860
  Py_INCREF(__pyx_v_base);
19842
19861
 
19843
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":970
19862
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":970
19844
19863
  * cdef inline void set_array_base(ndarray arr, object base):
19845
19864
  * Py_INCREF(base) # important to do this before stealing the reference below!
19846
19865
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -19849,7 +19868,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19849
19868
  */
19850
19869
  __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)
19851
19870
 
19852
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19871
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19853
19872
  * int _import_umath() except -1
19854
19873
  *
19855
19874
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19864,7 +19883,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19864
19883
  __pyx_L0:;
19865
19884
  }
19866
19885
 
19867
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19886
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19868
19887
  * PyArray_SetBaseObject(arr, base)
19869
19888
  *
19870
19889
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19879,7 +19898,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19879
19898
  int __pyx_t_1;
19880
19899
  __Pyx_RefNannySetupContext("get_array_base", 1);
19881
19900
 
19882
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":973
19901
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":973
19883
19902
  *
19884
19903
  * cdef inline object get_array_base(ndarray arr):
19885
19904
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -19888,7 +19907,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19888
19907
  */
19889
19908
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
19890
19909
 
19891
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19910
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19892
19911
  * cdef inline object get_array_base(ndarray arr):
19893
19912
  * base = PyArray_BASE(arr)
19894
19913
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19898,7 +19917,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19898
19917
  __pyx_t_1 = (__pyx_v_base == NULL);
19899
19918
  if (__pyx_t_1) {
19900
19919
 
19901
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":975
19920
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":975
19902
19921
  * base = PyArray_BASE(arr)
19903
19922
  * if base is NULL:
19904
19923
  * return None # <<<<<<<<<<<<<<
@@ -19909,7 +19928,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19909
19928
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
19910
19929
  goto __pyx_L0;
19911
19930
 
19912
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19931
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19913
19932
  * cdef inline object get_array_base(ndarray arr):
19914
19933
  * base = PyArray_BASE(arr)
19915
19934
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19918,7 +19937,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19918
19937
  */
19919
19938
  }
19920
19939
 
19921
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":976
19940
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":976
19922
19941
  * if base is NULL:
19923
19942
  * return None
19924
19943
  * return <object>base # <<<<<<<<<<<<<<
@@ -19930,7 +19949,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19930
19949
  __pyx_r = ((PyObject *)__pyx_v_base);
19931
19950
  goto __pyx_L0;
19932
19951
 
19933
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19952
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19934
19953
  * PyArray_SetBaseObject(arr, base)
19935
19954
  *
19936
19955
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19945,7 +19964,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19945
19964
  return __pyx_r;
19946
19965
  }
19947
19966
 
19948
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
19967
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
19949
19968
  * # Versions of the import_* functions which are more suitable for
19950
19969
  * # Cython code.
19951
19970
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19969,7 +19988,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19969
19988
  int __pyx_clineno = 0;
19970
19989
  __Pyx_RefNannySetupContext("import_array", 1);
19971
19990
 
19972
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19991
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19973
19992
  * # Cython code.
19974
19993
  * cdef inline int import_array() except -1:
19975
19994
  * try: # <<<<<<<<<<<<<<
@@ -19985,7 +20004,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19985
20004
  __Pyx_XGOTREF(__pyx_t_3);
19986
20005
  /*try:*/ {
19987
20006
 
19988
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":982
20007
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":982
19989
20008
  * cdef inline int import_array() except -1:
19990
20009
  * try:
19991
20010
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -19994,7 +20013,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19994
20013
  */
19995
20014
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
19996
20015
 
19997
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
20016
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19998
20017
  * # Cython code.
19999
20018
  * cdef inline int import_array() except -1:
20000
20019
  * try: # <<<<<<<<<<<<<<
@@ -20008,7 +20027,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20008
20027
  goto __pyx_L8_try_end;
20009
20028
  __pyx_L3_error:;
20010
20029
 
20011
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":983
20030
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":983
20012
20031
  * try:
20013
20032
  * __pyx_import_array()
20014
20033
  * except Exception: # <<<<<<<<<<<<<<
@@ -20023,7 +20042,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20023
20042
  __Pyx_XGOTREF(__pyx_t_6);
20024
20043
  __Pyx_XGOTREF(__pyx_t_7);
20025
20044
 
20026
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
20045
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
20027
20046
  * __pyx_import_array()
20028
20047
  * except Exception:
20029
20048
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -20038,7 +20057,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20038
20057
  }
20039
20058
  goto __pyx_L5_except_error;
20040
20059
 
20041
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
20060
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
20042
20061
  * # Cython code.
20043
20062
  * cdef inline int import_array() except -1:
20044
20063
  * try: # <<<<<<<<<<<<<<
@@ -20054,7 +20073,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20054
20073
  __pyx_L8_try_end:;
20055
20074
  }
20056
20075
 
20057
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
20076
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
20058
20077
  * # Versions of the import_* functions which are more suitable for
20059
20078
  * # Cython code.
20060
20079
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -20077,7 +20096,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20077
20096
  return __pyx_r;
20078
20097
  }
20079
20098
 
20080
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
20099
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
20081
20100
  * raise ImportError("numpy.core.multiarray failed to import")
20082
20101
  *
20083
20102
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -20101,7 +20120,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20101
20120
  int __pyx_clineno = 0;
20102
20121
  __Pyx_RefNannySetupContext("import_umath", 1);
20103
20122
 
20104
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
20123
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
20105
20124
  *
20106
20125
  * cdef inline int import_umath() except -1:
20107
20126
  * try: # <<<<<<<<<<<<<<
@@ -20117,7 +20136,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20117
20136
  __Pyx_XGOTREF(__pyx_t_3);
20118
20137
  /*try:*/ {
20119
20138
 
20120
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":988
20139
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":988
20121
20140
  * cdef inline int import_umath() except -1:
20122
20141
  * try:
20123
20142
  * _import_umath() # <<<<<<<<<<<<<<
@@ -20126,7 +20145,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20126
20145
  */
20127
20146
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
20128
20147
 
20129
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
20148
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
20130
20149
  *
20131
20150
  * cdef inline int import_umath() except -1:
20132
20151
  * try: # <<<<<<<<<<<<<<
@@ -20140,7 +20159,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20140
20159
  goto __pyx_L8_try_end;
20141
20160
  __pyx_L3_error:;
20142
20161
 
20143
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":989
20162
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":989
20144
20163
  * try:
20145
20164
  * _import_umath()
20146
20165
  * except Exception: # <<<<<<<<<<<<<<
@@ -20155,7 +20174,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20155
20174
  __Pyx_XGOTREF(__pyx_t_6);
20156
20175
  __Pyx_XGOTREF(__pyx_t_7);
20157
20176
 
20158
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
20177
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
20159
20178
  * _import_umath()
20160
20179
  * except Exception:
20161
20180
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -20170,7 +20189,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20170
20189
  }
20171
20190
  goto __pyx_L5_except_error;
20172
20191
 
20173
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
20192
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
20174
20193
  *
20175
20194
  * cdef inline int import_umath() except -1:
20176
20195
  * try: # <<<<<<<<<<<<<<
@@ -20186,7 +20205,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20186
20205
  __pyx_L8_try_end:;
20187
20206
  }
20188
20207
 
20189
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
20208
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
20190
20209
  * raise ImportError("numpy.core.multiarray failed to import")
20191
20210
  *
20192
20211
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -20209,7 +20228,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20209
20228
  return __pyx_r;
20210
20229
  }
20211
20230
 
20212
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
20231
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
20213
20232
  * raise ImportError("numpy.core.umath failed to import")
20214
20233
  *
20215
20234
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -20233,7 +20252,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20233
20252
  int __pyx_clineno = 0;
20234
20253
  __Pyx_RefNannySetupContext("import_ufunc", 1);
20235
20254
 
20236
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
20255
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
20237
20256
  *
20238
20257
  * cdef inline int import_ufunc() except -1:
20239
20258
  * try: # <<<<<<<<<<<<<<
@@ -20249,7 +20268,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20249
20268
  __Pyx_XGOTREF(__pyx_t_3);
20250
20269
  /*try:*/ {
20251
20270
 
20252
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":994
20271
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":994
20253
20272
  * cdef inline int import_ufunc() except -1:
20254
20273
  * try:
20255
20274
  * _import_umath() # <<<<<<<<<<<<<<
@@ -20258,7 +20277,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20258
20277
  */
20259
20278
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
20260
20279
 
20261
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
20280
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
20262
20281
  *
20263
20282
  * cdef inline int import_ufunc() except -1:
20264
20283
  * try: # <<<<<<<<<<<<<<
@@ -20272,7 +20291,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20272
20291
  goto __pyx_L8_try_end;
20273
20292
  __pyx_L3_error:;
20274
20293
 
20275
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":995
20294
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":995
20276
20295
  * try:
20277
20296
  * _import_umath()
20278
20297
  * except Exception: # <<<<<<<<<<<<<<
@@ -20287,7 +20306,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20287
20306
  __Pyx_XGOTREF(__pyx_t_6);
20288
20307
  __Pyx_XGOTREF(__pyx_t_7);
20289
20308
 
20290
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":996
20309
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":996
20291
20310
  * _import_umath()
20292
20311
  * except Exception:
20293
20312
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -20302,7 +20321,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20302
20321
  }
20303
20322
  goto __pyx_L5_except_error;
20304
20323
 
20305
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
20324
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
20306
20325
  *
20307
20326
  * cdef inline int import_ufunc() except -1:
20308
20327
  * try: # <<<<<<<<<<<<<<
@@ -20318,7 +20337,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20318
20337
  __pyx_L8_try_end:;
20319
20338
  }
20320
20339
 
20321
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
20340
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
20322
20341
  * raise ImportError("numpy.core.umath failed to import")
20323
20342
  *
20324
20343
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -20341,7 +20360,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20341
20360
  return __pyx_r;
20342
20361
  }
20343
20362
 
20344
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
20363
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
20345
20364
  *
20346
20365
  *
20347
20366
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -20352,7 +20371,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20352
20371
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
20353
20372
  int __pyx_r;
20354
20373
 
20355
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1011
20374
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1011
20356
20375
  * bool
20357
20376
  * """
20358
20377
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -20362,7 +20381,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20362
20381
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
20363
20382
  goto __pyx_L0;
20364
20383
 
20365
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
20384
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
20366
20385
  *
20367
20386
  *
20368
20387
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -20375,7 +20394,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20375
20394
  return __pyx_r;
20376
20395
  }
20377
20396
 
20378
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
20397
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
20379
20398
  *
20380
20399
  *
20381
20400
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -20386,7 +20405,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20386
20405
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
20387
20406
  int __pyx_r;
20388
20407
 
20389
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1026
20408
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1026
20390
20409
  * bool
20391
20410
  * """
20392
20411
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -20396,7 +20415,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20396
20415
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
20397
20416
  goto __pyx_L0;
20398
20417
 
20399
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
20418
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
20400
20419
  *
20401
20420
  *
20402
20421
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -20409,7 +20428,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20409
20428
  return __pyx_r;
20410
20429
  }
20411
20430
 
20412
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
20431
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
20413
20432
  *
20414
20433
  *
20415
20434
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20420,7 +20439,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20420
20439
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
20421
20440
  npy_datetime __pyx_r;
20422
20441
 
20423
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1036
20442
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1036
20424
20443
  * also needed. That can be found using `get_datetime64_unit`.
20425
20444
  * """
20426
20445
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -20430,7 +20449,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20430
20449
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
20431
20450
  goto __pyx_L0;
20432
20451
 
20433
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
20452
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
20434
20453
  *
20435
20454
  *
20436
20455
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20443,7 +20462,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20443
20462
  return __pyx_r;
20444
20463
  }
20445
20464
 
20446
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
20465
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
20447
20466
  *
20448
20467
  *
20449
20468
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20454,7 +20473,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20454
20473
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
20455
20474
  npy_timedelta __pyx_r;
20456
20475
 
20457
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1043
20476
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1043
20458
20477
  * returns the int64 value underlying scalar numpy timedelta64 object
20459
20478
  * """
20460
20479
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -20464,7 +20483,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20464
20483
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
20465
20484
  goto __pyx_L0;
20466
20485
 
20467
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
20486
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
20468
20487
  *
20469
20488
  *
20470
20489
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20477,7 +20496,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20477
20496
  return __pyx_r;
20478
20497
  }
20479
20498
 
20480
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
20499
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
20481
20500
  *
20482
20501
  *
20483
20502
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20488,7 +20507,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20488
20507
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
20489
20508
  NPY_DATETIMEUNIT __pyx_r;
20490
20509
 
20491
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1050
20510
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1050
20492
20511
  * returns the unit part of the dtype for a numpy datetime64 object.
20493
20512
  * """
20494
20513
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -20496,7 +20515,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
20496
20515
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
20497
20516
  goto __pyx_L0;
20498
20517
 
20499
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
20518
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
20500
20519
  *
20501
20520
  *
20502
20521
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -23342,10 +23361,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_2_get_distance_mat
23342
23361
  Py_ssize_t __pyx_v_itemsize;
23343
23362
  int __pyx_v_dtype_signed;
23344
23363
  Py_UCS4 __pyx_v_kind;
23345
- int __pyx_v____pyx_uint8_is_signed;
23346
- int __pyx_v____pyx_uint16_is_signed;
23347
- int __pyx_v____pyx_uint32_is_signed;
23348
- int __pyx_v____pyx_uint64_is_signed;
23364
+ int __pyx_v___pyx_fused_dtype_uint8_is_signed;
23365
+ int __pyx_v___pyx_fused_dtype_uint16_is_signed;
23366
+ int __pyx_v___pyx_fused_dtype_uint32_is_signed;
23367
+ int __pyx_v___pyx_fused_dtype_uint64_is_signed;
23349
23368
  PyObject *__pyx_v_arg = NULL;
23350
23369
  PyObject *__pyx_v_dtype = NULL;
23351
23370
  PyObject *__pyx_v_arg_base = NULL;
@@ -23413,10 +23432,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_2_get_distance_mat
23413
23432
  __pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
23414
23433
  __pyx_t_1 = 0;
23415
23434
  __pyx_v_itemsize = -1L;
23416
- __pyx_v____pyx_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint8)-1L) > 0));
23417
- __pyx_v____pyx_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint16)-1L) > 0));
23418
- __pyx_v____pyx_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint32)-1L) > 0));
23419
- __pyx_v____pyx_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint64)-1L) > 0));
23435
+ __pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint8)-1L) > 0));
23436
+ __pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint16)-1L) > 0));
23437
+ __pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint32)-1L) > 0));
23438
+ __pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint64)-1L) > 0));
23420
23439
  if (unlikely(__pyx_v_args == Py_None)) {
23421
23440
  PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
23422
23441
  __PYX_ERR(0, 287, __pyx_L1_error)
@@ -23558,7 +23577,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_2_get_distance_mat
23558
23577
  __pyx_t_2 = __pyx_t_4;
23559
23578
  goto __pyx_L16_bool_binop_done;
23560
23579
  }
23561
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
23580
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
23562
23581
  __pyx_t_2 = __pyx_t_4;
23563
23582
  __pyx_L16_bool_binop_done:;
23564
23583
  if (__pyx_t_2) {
@@ -23581,7 +23600,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_2_get_distance_mat
23581
23600
  __pyx_t_2 = __pyx_t_4;
23582
23601
  goto __pyx_L20_bool_binop_done;
23583
23602
  }
23584
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
23603
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
23585
23604
  __pyx_t_2 = __pyx_t_4;
23586
23605
  __pyx_L20_bool_binop_done:;
23587
23606
  if (__pyx_t_2) {
@@ -23604,7 +23623,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_2_get_distance_mat
23604
23623
  __pyx_t_2 = __pyx_t_4;
23605
23624
  goto __pyx_L24_bool_binop_done;
23606
23625
  }
23607
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
23626
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
23608
23627
  __pyx_t_2 = __pyx_t_4;
23609
23628
  __pyx_L24_bool_binop_done:;
23610
23629
  if (__pyx_t_2) {
@@ -23627,7 +23646,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_2_get_distance_mat
23627
23646
  __pyx_t_2 = __pyx_t_4;
23628
23647
  goto __pyx_L28_bool_binop_done;
23629
23648
  }
23630
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
23649
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
23631
23650
  __pyx_t_2 = __pyx_t_4;
23632
23651
  __pyx_L28_bool_binop_done:;
23633
23652
  if (__pyx_t_2) {
@@ -31587,10 +31606,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_6_progressive_alig
31587
31606
  Py_ssize_t __pyx_v_itemsize;
31588
31607
  int __pyx_v_dtype_signed;
31589
31608
  Py_UCS4 __pyx_v_kind;
31590
- int __pyx_v____pyx_uint8_is_signed;
31591
- int __pyx_v____pyx_uint16_is_signed;
31592
- int __pyx_v____pyx_uint32_is_signed;
31593
- int __pyx_v____pyx_uint64_is_signed;
31609
+ int __pyx_v___pyx_fused_dtype_uint8_is_signed;
31610
+ int __pyx_v___pyx_fused_dtype_uint16_is_signed;
31611
+ int __pyx_v___pyx_fused_dtype_uint32_is_signed;
31612
+ int __pyx_v___pyx_fused_dtype_uint64_is_signed;
31594
31613
  PyObject *__pyx_v_arg = NULL;
31595
31614
  PyObject *__pyx_v_dtype = NULL;
31596
31615
  PyObject *__pyx_v_arg_base = NULL;
@@ -31658,10 +31677,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_6_progressive_alig
31658
31677
  __pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
31659
31678
  __pyx_t_1 = 0;
31660
31679
  __pyx_v_itemsize = -1L;
31661
- __pyx_v____pyx_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint8)-1L) > 0));
31662
- __pyx_v____pyx_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint16)-1L) > 0));
31663
- __pyx_v____pyx_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint32)-1L) > 0));
31664
- __pyx_v____pyx_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint64)-1L) > 0));
31680
+ __pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint8)-1L) > 0));
31681
+ __pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint16)-1L) > 0));
31682
+ __pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint32)-1L) > 0));
31683
+ __pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint64)-1L) > 0));
31665
31684
  if (unlikely(__pyx_v_args == Py_None)) {
31666
31685
  PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
31667
31686
  __PYX_ERR(0, 459, __pyx_L1_error)
@@ -31803,7 +31822,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_6_progressive_alig
31803
31822
  __pyx_t_2 = __pyx_t_4;
31804
31823
  goto __pyx_L16_bool_binop_done;
31805
31824
  }
31806
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
31825
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
31807
31826
  __pyx_t_2 = __pyx_t_4;
31808
31827
  __pyx_L16_bool_binop_done:;
31809
31828
  if (__pyx_t_2) {
@@ -31826,7 +31845,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_6_progressive_alig
31826
31845
  __pyx_t_2 = __pyx_t_4;
31827
31846
  goto __pyx_L20_bool_binop_done;
31828
31847
  }
31829
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
31848
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
31830
31849
  __pyx_t_2 = __pyx_t_4;
31831
31850
  __pyx_L20_bool_binop_done:;
31832
31851
  if (__pyx_t_2) {
@@ -31849,7 +31868,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_6_progressive_alig
31849
31868
  __pyx_t_2 = __pyx_t_4;
31850
31869
  goto __pyx_L24_bool_binop_done;
31851
31870
  }
31852
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
31871
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
31853
31872
  __pyx_t_2 = __pyx_t_4;
31854
31873
  __pyx_L24_bool_binop_done:;
31855
31874
  if (__pyx_t_2) {
@@ -31872,7 +31891,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_6_progressive_alig
31872
31891
  __pyx_t_2 = __pyx_t_4;
31873
31892
  goto __pyx_L28_bool_binop_done;
31874
31893
  }
31875
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
31894
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
31876
31895
  __pyx_t_2 = __pyx_t_4;
31877
31896
  __pyx_L28_bool_binop_done:;
31878
31897
  if (__pyx_t_2) {
@@ -37608,10 +37627,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_8_replace_gaps(CYT
37608
37627
  Py_ssize_t __pyx_v_itemsize;
37609
37628
  int __pyx_v_dtype_signed;
37610
37629
  Py_UCS4 __pyx_v_kind;
37611
- int __pyx_v____pyx_uint8_is_signed;
37612
- int __pyx_v____pyx_uint16_is_signed;
37613
- int __pyx_v____pyx_uint32_is_signed;
37614
- int __pyx_v____pyx_uint64_is_signed;
37630
+ int __pyx_v___pyx_fused_dtype_uint8_is_signed;
37631
+ int __pyx_v___pyx_fused_dtype_uint16_is_signed;
37632
+ int __pyx_v___pyx_fused_dtype_uint32_is_signed;
37633
+ int __pyx_v___pyx_fused_dtype_uint64_is_signed;
37615
37634
  PyObject *__pyx_v_arg = NULL;
37616
37635
  PyObject *__pyx_v_dtype = NULL;
37617
37636
  PyObject *__pyx_v_arg_base = NULL;
@@ -37679,10 +37698,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_8_replace_gaps(CYT
37679
37698
  __pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
37680
37699
  __pyx_t_1 = 0;
37681
37700
  __pyx_v_itemsize = -1L;
37682
- __pyx_v____pyx_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint8)-1L) > 0));
37683
- __pyx_v____pyx_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint16)-1L) > 0));
37684
- __pyx_v____pyx_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint32)-1L) > 0));
37685
- __pyx_v____pyx_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint64)-1L) > 0));
37701
+ __pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint8)-1L) > 0));
37702
+ __pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint16)-1L) > 0));
37703
+ __pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint32)-1L) > 0));
37704
+ __pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8multiple_uint64)-1L) > 0));
37686
37705
  if (unlikely(__pyx_v_args == Py_None)) {
37687
37706
  PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
37688
37707
  __PYX_ERR(0, 573, __pyx_L1_error)
@@ -37824,7 +37843,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_8_replace_gaps(CYT
37824
37843
  __pyx_t_2 = __pyx_t_4;
37825
37844
  goto __pyx_L16_bool_binop_done;
37826
37845
  }
37827
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
37846
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
37828
37847
  __pyx_t_2 = __pyx_t_4;
37829
37848
  __pyx_L16_bool_binop_done:;
37830
37849
  if (__pyx_t_2) {
@@ -37847,7 +37866,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_8_replace_gaps(CYT
37847
37866
  __pyx_t_2 = __pyx_t_4;
37848
37867
  goto __pyx_L20_bool_binop_done;
37849
37868
  }
37850
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
37869
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
37851
37870
  __pyx_t_2 = __pyx_t_4;
37852
37871
  __pyx_L20_bool_binop_done:;
37853
37872
  if (__pyx_t_2) {
@@ -37870,7 +37889,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_8_replace_gaps(CYT
37870
37889
  __pyx_t_2 = __pyx_t_4;
37871
37890
  goto __pyx_L24_bool_binop_done;
37872
37891
  }
37873
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
37892
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
37874
37893
  __pyx_t_2 = __pyx_t_4;
37875
37894
  __pyx_L24_bool_binop_done:;
37876
37895
  if (__pyx_t_2) {
@@ -37893,7 +37912,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8multiple_8_replace_gaps(CYT
37893
37912
  __pyx_t_2 = __pyx_t_4;
37894
37913
  goto __pyx_L28_bool_binop_done;
37895
37914
  }
37896
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
37915
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
37897
37916
  __pyx_t_2 = __pyx_t_4;
37898
37917
  __pyx_L28_bool_binop_done:;
37899
37918
  if (__pyx_t_2) {
@@ -41376,7 +41395,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
41376
41395
  __Pyx_GOTREF(__pyx_tuple__8);
41377
41396
  __Pyx_GIVEREF(__pyx_tuple__8);
41378
41397
 
41379
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
41398
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
41380
41399
  * __pyx_import_array()
41381
41400
  * except Exception:
41382
41401
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -41387,7 +41406,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
41387
41406
  __Pyx_GOTREF(__pyx_tuple__9);
41388
41407
  __Pyx_GIVEREF(__pyx_tuple__9);
41389
41408
 
41390
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
41409
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
41391
41410
  * _import_umath()
41392
41411
  * except Exception:
41393
41412
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -42050,33 +42069,33 @@ static int __Pyx_modinit_type_import_code(void) {
42050
42069
  /*--- Type import code ---*/
42051
42070
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
42052
42071
  __Pyx_GOTREF(__pyx_t_1);
42053
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
42072
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
42054
42073
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
42055
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
42074
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
42056
42075
  #elif CYTHON_COMPILING_IN_LIMITED_API
42057
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
42076
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
42058
42077
  #else
42059
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
42078
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
42060
42079
  #endif
42061
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
42080
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
42062
42081
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
42063
42082
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
42064
42083
  __Pyx_GOTREF(__pyx_t_1);
42065
- __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)
42066
- __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)
42067
- __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)
42068
- __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)
42069
- __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)
42070
- __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)
42071
- __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)
42072
- __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)
42073
- __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)
42074
- __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)
42075
- __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)
42076
- __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)
42077
- __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)
42078
- __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)
42079
- __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)
42084
+ __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)
42085
+ __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)
42086
+ __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)
42087
+ __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)
42088
+ __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)
42089
+ __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)
42090
+ __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)
42091
+ __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)
42092
+ __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)
42093
+ __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)
42094
+ __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)
42095
+ __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)
42096
+ __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)
42097
+ __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)
42098
+ __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)
42080
42099
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
42081
42100
  __Pyx_RefNannyFinishContext();
42082
42101
  return 0;
@@ -43813,11 +43832,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
43813
43832
  {
43814
43833
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
43815
43834
  if (unlikely(eq != 0)) {
43816
- if (unlikely(eq < 0)) return NULL; // error
43835
+ if (unlikely(eq < 0)) return NULL;
43817
43836
  return kwvalues[i];
43818
43837
  }
43819
43838
  }
43820
- return NULL; // not found (no exception set)
43839
+ return NULL;
43821
43840
  }
43822
43841
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
43823
43842
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -43930,7 +43949,7 @@ static int __Pyx_ParseOptionalKeywords(
43930
43949
  if (*name) {
43931
43950
  values[name-argnames] = value;
43932
43951
  #if CYTHON_AVOID_BORROWED_REFS
43933
- Py_INCREF(value); // transfer ownership of value to values
43952
+ Py_INCREF(value);
43934
43953
  Py_DECREF(key);
43935
43954
  #endif
43936
43955
  key = NULL;
@@ -43949,7 +43968,7 @@ static int __Pyx_ParseOptionalKeywords(
43949
43968
  && _PyString_Eq(**name, key)) {
43950
43969
  values[name-argnames] = value;
43951
43970
  #if CYTHON_AVOID_BORROWED_REFS
43952
- value = NULL; // ownership transferred to values
43971
+ value = NULL;
43953
43972
  #endif
43954
43973
  break;
43955
43974
  }
@@ -43981,7 +44000,7 @@ static int __Pyx_ParseOptionalKeywords(
43981
44000
  if (cmp == 0) {
43982
44001
  values[name-argnames] = value;
43983
44002
  #if CYTHON_AVOID_BORROWED_REFS
43984
- value = NULL; // ownership transferred to values
44003
+ value = NULL;
43985
44004
  #endif
43986
44005
  break;
43987
44006
  }
@@ -46020,9 +46039,10 @@ static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, long intval,
46020
46039
 
46021
46040
  /* IterFinish */
46022
46041
  static CYTHON_INLINE int __Pyx_IterFinish(void) {
46042
+ PyObject* exc_type;
46023
46043
  __Pyx_PyThreadState_declare
46024
46044
  __Pyx_PyThreadState_assign
46025
- PyObject* exc_type = __Pyx_PyErr_CurrentExceptionType();
46045
+ exc_type = __Pyx_PyErr_CurrentExceptionType();
46026
46046
  if (unlikely(exc_type)) {
46027
46047
  if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
46028
46048
  return -1;
@@ -46469,9 +46489,10 @@ static CYTHON_INLINE int __Pyx_dict_iter_next(
46469
46489
 
46470
46490
  /* UnpackUnboundCMethod */
46471
46491
  static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *args, PyObject *kwargs) {
46492
+ PyObject *result;
46472
46493
  PyObject *selfless_args = PyTuple_GetSlice(args, 1, PyTuple_Size(args));
46473
46494
  if (unlikely(!selfless_args)) return NULL;
46474
- PyObject *result = PyObject_Call(method, selfless_args, kwargs);
46495
+ result = PyObject_Call(method, selfless_args, kwargs);
46475
46496
  Py_DECREF(selfless_args);
46476
46497
  return result;
46477
46498
  }
@@ -47194,10 +47215,10 @@ __PYX_GOOD:
47194
47215
  #endif
47195
47216
 
47196
47217
  /* TypeImport */
47197
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
47198
- #define __PYX_HAVE_RT_ImportType_3_0_7
47199
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
47200
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
47218
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
47219
+ #define __PYX_HAVE_RT_ImportType_3_0_10
47220
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
47221
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
47201
47222
  {
47202
47223
  PyObject *result = 0;
47203
47224
  char warning[200];
@@ -47251,7 +47272,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
47251
47272
  module_name, class_name, size, basicsize+itemsize);
47252
47273
  goto bad;
47253
47274
  }
47254
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
47275
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
47255
47276
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
47256
47277
  PyErr_Format(PyExc_ValueError,
47257
47278
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -47259,7 +47280,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
47259
47280
  module_name, class_name, size, basicsize, basicsize+itemsize);
47260
47281
  goto bad;
47261
47282
  }
47262
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
47283
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
47263
47284
  PyOS_snprintf(warning, sizeof(warning),
47264
47285
  "%s.%s size changed, may indicate binary incompatibility. "
47265
47286
  "Expected %zd from C header, got %zd from PyObject",
@@ -48259,7 +48280,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
48259
48280
  default:
48260
48281
  return NULL;
48261
48282
  }
48262
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
48283
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
48263
48284
  }
48264
48285
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
48265
48286
  {
@@ -49363,7 +49384,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
49363
49384
  #else
49364
49385
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
49365
49386
  #endif
49366
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
49387
+ Py_XDECREF(py_funcname);
49367
49388
  return py_code;
49368
49389
  bad:
49369
49390
  Py_XDECREF(py_funcname);