biotite 0.39.0__cp311-cp311-macosx_11_0_arm64.whl → 0.41.0__cp311-cp311-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 (121) hide show
  1. biotite/__init__.py +3 -3
  2. biotite/application/dssp/app.py +18 -18
  3. biotite/database/pubchem/download.py +23 -23
  4. biotite/database/pubchem/query.py +7 -7
  5. biotite/database/rcsb/download.py +19 -14
  6. biotite/file.py +17 -9
  7. biotite/sequence/align/banded.c +258 -237
  8. biotite/sequence/align/banded.cpython-311-darwin.so +0 -0
  9. biotite/sequence/align/cigar.py +60 -15
  10. biotite/sequence/align/kmeralphabet.c +243 -222
  11. biotite/sequence/align/kmeralphabet.cpython-311-darwin.so +0 -0
  12. biotite/sequence/align/kmersimilarity.c +215 -196
  13. biotite/sequence/align/kmersimilarity.cpython-311-darwin.so +0 -0
  14. biotite/sequence/align/kmertable.cpp +233 -205
  15. biotite/sequence/align/kmertable.cpython-311-darwin.so +0 -0
  16. biotite/sequence/align/localgapped.c +258 -237
  17. biotite/sequence/align/localgapped.cpython-311-darwin.so +0 -0
  18. biotite/sequence/align/localungapped.c +235 -214
  19. biotite/sequence/align/localungapped.cpython-311-darwin.so +0 -0
  20. biotite/sequence/align/multiple.c +255 -234
  21. biotite/sequence/align/multiple.cpython-311-darwin.so +0 -0
  22. biotite/sequence/align/pairwise.c +274 -253
  23. biotite/sequence/align/pairwise.cpython-311-darwin.so +0 -0
  24. biotite/sequence/align/permutation.c +215 -196
  25. biotite/sequence/align/permutation.cpython-311-darwin.so +0 -0
  26. biotite/sequence/align/selector.c +217 -197
  27. biotite/sequence/align/selector.cpython-311-darwin.so +0 -0
  28. biotite/sequence/align/tracetable.c +215 -195
  29. biotite/sequence/align/tracetable.cpython-311-darwin.so +0 -0
  30. biotite/sequence/annotation.py +2 -2
  31. biotite/sequence/codec.c +235 -214
  32. biotite/sequence/codec.cpython-311-darwin.so +0 -0
  33. biotite/sequence/io/fasta/convert.py +27 -24
  34. biotite/sequence/phylo/nj.c +215 -196
  35. biotite/sequence/phylo/nj.cpython-311-darwin.so +0 -0
  36. biotite/sequence/phylo/tree.c +227 -202
  37. biotite/sequence/phylo/tree.cpython-311-darwin.so +0 -0
  38. biotite/sequence/phylo/upgma.c +215 -196
  39. biotite/sequence/phylo/upgma.cpython-311-darwin.so +0 -0
  40. biotite/structure/__init__.py +2 -0
  41. biotite/structure/basepairs.py +7 -12
  42. biotite/structure/bonds.c +1437 -1279
  43. biotite/structure/bonds.cpython-311-darwin.so +0 -0
  44. biotite/structure/celllist.c +217 -197
  45. biotite/structure/celllist.cpython-311-darwin.so +0 -0
  46. biotite/structure/charges.c +1052 -1101
  47. biotite/structure/charges.cpython-311-darwin.so +0 -0
  48. biotite/structure/dotbracket.py +2 -0
  49. biotite/structure/filter.py +30 -37
  50. biotite/structure/info/__init__.py +5 -8
  51. biotite/structure/info/atoms.py +31 -68
  52. biotite/structure/info/bonds.py +47 -101
  53. biotite/structure/info/ccd/README.rst +8 -0
  54. biotite/structure/info/ccd/amino_acids.txt +1663 -0
  55. biotite/structure/info/ccd/carbohydrates.txt +1135 -0
  56. biotite/structure/info/ccd/components.bcif +0 -0
  57. biotite/structure/info/ccd/nucleotides.txt +798 -0
  58. biotite/structure/info/ccd.py +95 -0
  59. biotite/structure/info/groups.py +90 -0
  60. biotite/structure/info/masses.py +21 -20
  61. biotite/structure/info/misc.py +78 -25
  62. biotite/structure/info/standardize.py +17 -12
  63. biotite/structure/integrity.py +19 -70
  64. biotite/structure/io/__init__.py +2 -4
  65. biotite/structure/io/ctab.py +12 -106
  66. biotite/structure/io/general.py +167 -181
  67. biotite/structure/io/gro/file.py +16 -16
  68. biotite/structure/io/mmtf/__init__.py +3 -0
  69. biotite/structure/io/mmtf/convertarray.c +219 -198
  70. biotite/structure/io/mmtf/convertarray.cpython-311-darwin.so +0 -0
  71. biotite/structure/io/mmtf/convertfile.c +217 -197
  72. biotite/structure/io/mmtf/convertfile.cpython-311-darwin.so +0 -0
  73. biotite/structure/io/mmtf/decode.c +225 -204
  74. biotite/structure/io/mmtf/decode.cpython-311-darwin.so +0 -0
  75. biotite/structure/io/mmtf/encode.c +215 -196
  76. biotite/structure/io/mmtf/encode.cpython-311-darwin.so +0 -0
  77. biotite/structure/io/mmtf/file.py +34 -26
  78. biotite/structure/io/mol/__init__.py +4 -2
  79. biotite/structure/io/mol/convert.py +71 -7
  80. biotite/structure/io/mol/ctab.py +414 -0
  81. biotite/structure/io/mol/header.py +116 -0
  82. biotite/structure/io/mol/{file.py → mol.py} +69 -82
  83. biotite/structure/io/mol/sdf.py +909 -0
  84. biotite/structure/io/npz/__init__.py +3 -0
  85. biotite/structure/io/npz/file.py +21 -18
  86. biotite/structure/io/pdb/__init__.py +3 -3
  87. biotite/structure/io/pdb/file.py +89 -34
  88. biotite/structure/io/pdb/hybrid36.c +63 -43
  89. biotite/structure/io/pdb/hybrid36.cpython-311-darwin.so +0 -0
  90. biotite/structure/io/pdbqt/file.py +32 -32
  91. biotite/structure/io/pdbx/__init__.py +12 -6
  92. biotite/structure/io/pdbx/bcif.py +648 -0
  93. biotite/structure/io/pdbx/cif.py +1032 -0
  94. biotite/structure/io/pdbx/component.py +246 -0
  95. biotite/structure/io/pdbx/convert.py +858 -386
  96. biotite/structure/io/pdbx/encoding.c +112813 -0
  97. biotite/structure/io/pdbx/encoding.cpython-311-darwin.so +0 -0
  98. biotite/structure/io/pdbx/legacy.py +267 -0
  99. biotite/structure/molecules.py +151 -151
  100. biotite/structure/repair.py +253 -0
  101. biotite/structure/sasa.c +215 -196
  102. biotite/structure/sasa.cpython-311-darwin.so +0 -0
  103. biotite/structure/sequence.py +112 -0
  104. biotite/structure/superimpose.py +618 -116
  105. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/METADATA +3 -3
  106. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/RECORD +109 -103
  107. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/WHEEL +1 -1
  108. biotite/structure/info/amino_acids.json +0 -1556
  109. biotite/structure/info/amino_acids.py +0 -42
  110. biotite/structure/info/carbohydrates.json +0 -1122
  111. biotite/structure/info/carbohydrates.py +0 -39
  112. biotite/structure/info/intra_bonds.msgpack +0 -0
  113. biotite/structure/info/link_types.msgpack +0 -1
  114. biotite/structure/info/nucleotides.json +0 -772
  115. biotite/structure/info/nucleotides.py +0 -39
  116. biotite/structure/info/residue_masses.msgpack +0 -0
  117. biotite/structure/info/residue_names.msgpack +0 -3
  118. biotite/structure/info/residues.msgpack +0 -0
  119. biotite/structure/io/pdbx/file.py +0 -652
  120. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/LICENSE.rst +0 -0
  121. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.0.7 */
1
+ /* Generated by Cython 3.0.10 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -38,10 +38,10 @@ END: Cython Metadata */
38
38
  #else
39
39
  #define __PYX_EXTRA_ABI_MODULE_NAME ""
40
40
  #endif
41
- #define CYTHON_ABI "3_0_7" __PYX_EXTRA_ABI_MODULE_NAME
41
+ #define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
42
42
  #define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
43
43
  #define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
44
- #define CYTHON_HEX_VERSION 0x030007F0
44
+ #define CYTHON_HEX_VERSION 0x03000AF0
45
45
  #define CYTHON_FUTURE_DIVISION 1
46
46
  #include <stddef.h>
47
47
  #ifndef offsetof
@@ -133,6 +133,8 @@ END: Cython Metadata */
133
133
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
134
134
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
135
135
  #endif
136
+ #undef CYTHON_USE_FREELISTS
137
+ #define CYTHON_USE_FREELISTS 0
136
138
  #elif defined(PYPY_VERSION)
137
139
  #define CYTHON_COMPILING_IN_PYPY 1
138
140
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -194,6 +196,8 @@ END: Cython Metadata */
194
196
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
195
197
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
196
198
  #endif
199
+ #undef CYTHON_USE_FREELISTS
200
+ #define CYTHON_USE_FREELISTS 0
197
201
  #elif defined(CYTHON_LIMITED_API)
198
202
  #ifdef Py_LIMITED_API
199
203
  #undef __PYX_LIMITED_VERSION_HEX
@@ -255,6 +259,8 @@ END: Cython Metadata */
255
259
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
256
260
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
257
261
  #endif
262
+ #undef CYTHON_USE_FREELISTS
263
+ #define CYTHON_USE_FREELISTS 0
258
264
  #elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
259
265
  #define CYTHON_COMPILING_IN_PYPY 0
260
266
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -264,11 +270,17 @@ END: Cython Metadata */
264
270
  #ifndef CYTHON_USE_TYPE_SLOTS
265
271
  #define CYTHON_USE_TYPE_SLOTS 1
266
272
  #endif
273
+ #ifndef CYTHON_USE_TYPE_SPECS
274
+ #define CYTHON_USE_TYPE_SPECS 0
275
+ #endif
267
276
  #undef CYTHON_USE_PYTYPE_LOOKUP
268
277
  #define CYTHON_USE_PYTYPE_LOOKUP 0
269
278
  #ifndef CYTHON_USE_ASYNC_SLOTS
270
279
  #define CYTHON_USE_ASYNC_SLOTS 1
271
280
  #endif
281
+ #ifndef CYTHON_USE_PYLONG_INTERNALS
282
+ #define CYTHON_USE_PYLONG_INTERNALS 0
283
+ #endif
272
284
  #undef CYTHON_USE_PYLIST_INTERNALS
273
285
  #define CYTHON_USE_PYLIST_INTERNALS 0
274
286
  #ifndef CYTHON_USE_UNICODE_INTERNALS
@@ -276,8 +288,6 @@ END: Cython Metadata */
276
288
  #endif
277
289
  #undef CYTHON_USE_UNICODE_WRITER
278
290
  #define CYTHON_USE_UNICODE_WRITER 0
279
- #undef CYTHON_USE_PYLONG_INTERNALS
280
- #define CYTHON_USE_PYLONG_INTERNALS 0
281
291
  #ifndef CYTHON_AVOID_BORROWED_REFS
282
292
  #define CYTHON_AVOID_BORROWED_REFS 0
283
293
  #endif
@@ -289,11 +299,22 @@ END: Cython Metadata */
289
299
  #endif
290
300
  #undef CYTHON_FAST_THREAD_STATE
291
301
  #define CYTHON_FAST_THREAD_STATE 0
302
+ #undef CYTHON_FAST_GIL
303
+ #define CYTHON_FAST_GIL 0
304
+ #ifndef CYTHON_METH_FASTCALL
305
+ #define CYTHON_METH_FASTCALL 1
306
+ #endif
292
307
  #undef CYTHON_FAST_PYCALL
293
308
  #define CYTHON_FAST_PYCALL 0
309
+ #ifndef CYTHON_PEP487_INIT_SUBCLASS
310
+ #define CYTHON_PEP487_INIT_SUBCLASS 1
311
+ #endif
294
312
  #ifndef CYTHON_PEP489_MULTI_PHASE_INIT
295
313
  #define CYTHON_PEP489_MULTI_PHASE_INIT 1
296
314
  #endif
315
+ #ifndef CYTHON_USE_MODULE_STATE
316
+ #define CYTHON_USE_MODULE_STATE 0
317
+ #endif
297
318
  #ifndef CYTHON_USE_TP_FINALIZE
298
319
  #define CYTHON_USE_TP_FINALIZE 1
299
320
  #endif
@@ -301,6 +322,12 @@ END: Cython Metadata */
301
322
  #define CYTHON_USE_DICT_VERSIONS 0
302
323
  #undef CYTHON_USE_EXC_INFO_STACK
303
324
  #define CYTHON_USE_EXC_INFO_STACK 0
325
+ #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
326
+ #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
327
+ #endif
328
+ #ifndef CYTHON_USE_FREELISTS
329
+ #define CYTHON_USE_FREELISTS 0
330
+ #endif
304
331
  #else
305
332
  #define CYTHON_COMPILING_IN_PYPY 0
306
333
  #define CYTHON_COMPILING_IN_CPYTHON 1
@@ -391,6 +418,9 @@ END: Cython Metadata */
391
418
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
392
419
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
393
420
  #endif
421
+ #ifndef CYTHON_USE_FREELISTS
422
+ #define CYTHON_USE_FREELISTS 1
423
+ #endif
394
424
  #endif
395
425
  #if !defined(CYTHON_FAST_PYCCALL)
396
426
  #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
@@ -599,14 +629,14 @@ class __Pyx_FakeReference {
599
629
  PyObject *exception_table = NULL;
600
630
  PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
601
631
  #if __PYX_LIMITED_VERSION_HEX < 0x030B0000
602
- PyObject *version_info; // borrowed
632
+ PyObject *version_info;
603
633
  PyObject *py_minor_version = NULL;
604
634
  #endif
605
635
  long minor_version = 0;
606
636
  PyObject *type, *value, *traceback;
607
637
  PyErr_Fetch(&type, &value, &traceback);
608
638
  #if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
609
- minor_version = 11; // we don't yet need to distinguish between versions > 11
639
+ minor_version = 11;
610
640
  #else
611
641
  if (!(version_info = PySys_GetObject("version_info"))) goto end;
612
642
  if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
@@ -664,7 +694,7 @@ class __Pyx_FakeReference {
664
694
  PyObject *fv, PyObject *cell, PyObject* fn,
665
695
  PyObject *name, int fline, PyObject *lnos) {
666
696
  PyCodeObject *result;
667
- PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0); // we don't have access to __pyx_empty_bytes here
697
+ PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
668
698
  if (!empty_bytes) return NULL;
669
699
  result =
670
700
  #if PY_VERSION_HEX >= 0x030C0000
@@ -750,8 +780,13 @@ class __Pyx_FakeReference {
750
780
  typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
751
781
  Py_ssize_t nargs, PyObject *kwnames);
752
782
  #else
753
- #define __Pyx_PyCFunctionFast _PyCFunctionFast
754
- #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
783
+ #if PY_VERSION_HEX >= 0x030d00A4
784
+ # define __Pyx_PyCFunctionFast PyCFunctionFast
785
+ # define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
786
+ #else
787
+ # define __Pyx_PyCFunctionFast _PyCFunctionFast
788
+ # define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
789
+ #endif
755
790
  #endif
756
791
  #if CYTHON_METH_FASTCALL
757
792
  #define __Pyx_METH_FASTCALL METH_FASTCALL
@@ -1103,7 +1138,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
1103
1138
  #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
1104
1139
  #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
1105
1140
  #endif
1106
- #if PY_VERSION_HEX >= 0x030d00A1
1141
+ #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
1107
1142
  #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
1108
1143
  #else
1109
1144
  static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
@@ -1190,7 +1225,7 @@ static CYTHON_INLINE float __PYX_NAN() {
1190
1225
  #endif
1191
1226
 
1192
1227
  #define __PYX_MARK_ERR_POS(f_index, lineno) \
1193
- { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1228
+ { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1194
1229
  #define __PYX_ERR(f_index, lineno, Ln_error) \
1195
1230
  { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
1196
1231
 
@@ -1319,24 +1354,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1319
1354
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1320
1355
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1321
1356
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1322
- #if CYTHON_COMPILING_IN_LIMITED_API
1323
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1324
- {
1325
- const wchar_t *u_end = u;
1326
- while (*u_end++) ;
1327
- return (size_t)(u_end - u - 1);
1328
- }
1329
- #else
1330
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1331
- {
1332
- const Py_UNICODE *u_end = u;
1333
- while (*u_end++) ;
1334
- return (size_t)(u_end - u - 1);
1335
- }
1336
- #endif
1337
1357
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1338
- #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1339
- #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1340
1358
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1341
1359
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1342
1360
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -1386,7 +1404,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1386
1404
  #endif
1387
1405
  typedef Py_ssize_t __Pyx_compact_pylong;
1388
1406
  typedef size_t __Pyx_compact_upylong;
1389
- #else // Py < 3.12
1407
+ #else
1390
1408
  #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
1391
1409
  #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
1392
1410
  #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
@@ -1676,7 +1694,7 @@ typedef struct {
1676
1694
 
1677
1695
  /* #### Code section: numeric_typedefs ### */
1678
1696
 
1679
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":731
1697
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":731
1680
1698
  * # in Cython to enable them only on the right systems.
1681
1699
  *
1682
1700
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1685,7 +1703,7 @@ typedef struct {
1685
1703
  */
1686
1704
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1687
1705
 
1688
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":732
1706
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":732
1689
1707
  *
1690
1708
  * ctypedef npy_int8 int8_t
1691
1709
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1694,7 +1712,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1694
1712
  */
1695
1713
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1696
1714
 
1697
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":733
1715
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":733
1698
1716
  * ctypedef npy_int8 int8_t
1699
1717
  * ctypedef npy_int16 int16_t
1700
1718
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1703,7 +1721,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1703
1721
  */
1704
1722
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1705
1723
 
1706
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":734
1724
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":734
1707
1725
  * ctypedef npy_int16 int16_t
1708
1726
  * ctypedef npy_int32 int32_t
1709
1727
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1712,7 +1730,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1712
1730
  */
1713
1731
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1714
1732
 
1715
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":738
1733
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":738
1716
1734
  * #ctypedef npy_int128 int128_t
1717
1735
  *
1718
1736
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1721,7 +1739,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1721
1739
  */
1722
1740
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1723
1741
 
1724
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":739
1742
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":739
1725
1743
  *
1726
1744
  * ctypedef npy_uint8 uint8_t
1727
1745
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1730,7 +1748,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1730
1748
  */
1731
1749
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1732
1750
 
1733
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":740
1751
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":740
1734
1752
  * ctypedef npy_uint8 uint8_t
1735
1753
  * ctypedef npy_uint16 uint16_t
1736
1754
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1739,7 +1757,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1739
1757
  */
1740
1758
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1741
1759
 
1742
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":741
1760
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":741
1743
1761
  * ctypedef npy_uint16 uint16_t
1744
1762
  * ctypedef npy_uint32 uint32_t
1745
1763
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1748,7 +1766,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1748
1766
  */
1749
1767
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1750
1768
 
1751
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":745
1769
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":745
1752
1770
  * #ctypedef npy_uint128 uint128_t
1753
1771
  *
1754
1772
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1757,7 +1775,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1757
1775
  */
1758
1776
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1759
1777
 
1760
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":746
1778
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":746
1761
1779
  *
1762
1780
  * ctypedef npy_float32 float32_t
1763
1781
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1766,7 +1784,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1766
1784
  */
1767
1785
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1768
1786
 
1769
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":755
1787
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":755
1770
1788
  * # The int types are mapped a bit surprising --
1771
1789
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1772
1790
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1775,7 +1793,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1775
1793
  */
1776
1794
  typedef npy_long __pyx_t_5numpy_int_t;
1777
1795
 
1778
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":756
1796
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":756
1779
1797
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1780
1798
  * ctypedef npy_long int_t
1781
1799
  * ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
@@ -1784,7 +1802,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1784
1802
  */
1785
1803
  typedef npy_longlong __pyx_t_5numpy_long_t;
1786
1804
 
1787
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":757
1805
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":757
1788
1806
  * ctypedef npy_long int_t
1789
1807
  * ctypedef npy_longlong long_t
1790
1808
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1793,7 +1811,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
1793
1811
  */
1794
1812
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1795
1813
 
1796
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":759
1814
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":759
1797
1815
  * ctypedef npy_longlong longlong_t
1798
1816
  *
1799
1817
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1802,7 +1820,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1802
1820
  */
1803
1821
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1804
1822
 
1805
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":760
1823
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":760
1806
1824
  *
1807
1825
  * ctypedef npy_ulong uint_t
1808
1826
  * ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
@@ -1811,7 +1829,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1811
1829
  */
1812
1830
  typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1813
1831
 
1814
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":761
1832
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":761
1815
1833
  * ctypedef npy_ulong uint_t
1816
1834
  * ctypedef npy_ulonglong ulong_t
1817
1835
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1820,7 +1838,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1820
1838
  */
1821
1839
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1822
1840
 
1823
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":763
1841
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":763
1824
1842
  * ctypedef npy_ulonglong ulonglong_t
1825
1843
  *
1826
1844
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1829,7 +1847,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1829
1847
  */
1830
1848
  typedef npy_intp __pyx_t_5numpy_intp_t;
1831
1849
 
1832
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":764
1850
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":764
1833
1851
  *
1834
1852
  * ctypedef npy_intp intp_t
1835
1853
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1838,7 +1856,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1838
1856
  */
1839
1857
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1840
1858
 
1841
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":766
1859
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":766
1842
1860
  * ctypedef npy_uintp uintp_t
1843
1861
  *
1844
1862
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1847,7 +1865,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1847
1865
  */
1848
1866
  typedef npy_double __pyx_t_5numpy_float_t;
1849
1867
 
1850
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":767
1868
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":767
1851
1869
  *
1852
1870
  * ctypedef npy_double float_t
1853
1871
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1856,7 +1874,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1856
1874
  */
1857
1875
  typedef npy_double __pyx_t_5numpy_double_t;
1858
1876
 
1859
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":768
1877
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":768
1860
1878
  * ctypedef npy_double float_t
1861
1879
  * ctypedef npy_double double_t
1862
1880
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1948,7 +1966,7 @@ struct __pyx_MemviewEnum_obj;
1948
1966
  struct __pyx_memoryview_obj;
1949
1967
  struct __pyx_memoryviewslice_obj;
1950
1968
 
1951
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":770
1969
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":770
1952
1970
  * ctypedef npy_longdouble longdouble_t
1953
1971
  *
1954
1972
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1957,7 +1975,7 @@ struct __pyx_memoryviewslice_obj;
1957
1975
  */
1958
1976
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1959
1977
 
1960
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":771
1978
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":771
1961
1979
  *
1962
1980
  * ctypedef npy_cfloat cfloat_t
1963
1981
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1966,7 +1984,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1966
1984
  */
1967
1985
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1968
1986
 
1969
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":772
1987
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":772
1970
1988
  * ctypedef npy_cfloat cfloat_t
1971
1989
  * ctypedef npy_cdouble cdouble_t
1972
1990
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1975,7 +1993,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1975
1993
  */
1976
1994
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1977
1995
 
1978
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":774
1996
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":774
1979
1997
  * ctypedef npy_clongdouble clongdouble_t
1980
1998
  *
1981
1999
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2424,8 +2442,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2424
2442
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2425
2443
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2426
2444
  #else
2427
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2428
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2445
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2446
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2429
2447
  #endif
2430
2448
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2431
2449
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2441,8 +2459,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2441
2459
  #else
2442
2460
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2443
2461
  #endif
2444
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2445
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2462
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2463
+ to have the same reference counting */
2464
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2446
2465
  #else
2447
2466
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2448
2467
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2979,22 +2998,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2979
2998
  #endif
2980
2999
 
2981
3000
  /* TypeImport.proto */
2982
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2983
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
3001
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
3002
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2984
3003
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2985
3004
  #include <stdalign.h>
2986
3005
  #endif
2987
3006
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2988
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
3007
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2989
3008
  #else
2990
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
3009
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2991
3010
  #endif
2992
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2993
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2994
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2995
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
3011
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
3012
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
3013
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
3014
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2996
3015
  };
2997
- 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);
3016
+ 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);
2998
3017
  #endif
2999
3018
 
3000
3019
  /* FetchSharedCythonModule.proto */
@@ -3087,7 +3106,7 @@ typedef struct {
3087
3106
  #endif
3088
3107
  void *defaults;
3089
3108
  int defaults_pyobjects;
3090
- size_t defaults_size; // used by FusedFunction for copying defaults
3109
+ size_t defaults_size;
3091
3110
  int flags;
3092
3111
  PyObject *defaults_tuple;
3093
3112
  PyObject *defaults_kwdict;
@@ -20399,7 +20418,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
20399
20418
  return __pyx_r;
20400
20419
  }
20401
20420
 
20402
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
20421
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
20403
20422
  *
20404
20423
  * @property
20405
20424
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -20410,7 +20429,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
20410
20429
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
20411
20430
  PyObject *__pyx_r;
20412
20431
 
20413
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":248
20432
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":248
20414
20433
  * """Returns a borrowed reference to the object owning the data/memory.
20415
20434
  * """
20416
20435
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -20420,7 +20439,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
20420
20439
  __pyx_r = PyArray_BASE(__pyx_v_self);
20421
20440
  goto __pyx_L0;
20422
20441
 
20423
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
20442
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
20424
20443
  *
20425
20444
  * @property
20426
20445
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -20433,7 +20452,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
20433
20452
  return __pyx_r;
20434
20453
  }
20435
20454
 
20436
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
20455
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
20437
20456
  *
20438
20457
  * @property
20439
20458
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -20447,7 +20466,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
20447
20466
  PyArray_Descr *__pyx_t_1;
20448
20467
  __Pyx_RefNannySetupContext("descr", 1);
20449
20468
 
20450
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":254
20469
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":254
20451
20470
  * """Returns an owned reference to the dtype of the array.
20452
20471
  * """
20453
20472
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -20460,7 +20479,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
20460
20479
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
20461
20480
  goto __pyx_L0;
20462
20481
 
20463
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
20482
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
20464
20483
  *
20465
20484
  * @property
20466
20485
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -20475,7 +20494,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
20475
20494
  return __pyx_r;
20476
20495
  }
20477
20496
 
20478
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
20497
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
20479
20498
  *
20480
20499
  * @property
20481
20500
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -20486,7 +20505,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
20486
20505
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
20487
20506
  int __pyx_r;
20488
20507
 
20489
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":260
20508
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":260
20490
20509
  * """Returns the number of dimensions in the array.
20491
20510
  * """
20492
20511
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -20496,7 +20515,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
20496
20515
  __pyx_r = PyArray_NDIM(__pyx_v_self);
20497
20516
  goto __pyx_L0;
20498
20517
 
20499
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
20518
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
20500
20519
  *
20501
20520
  * @property
20502
20521
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -20509,7 +20528,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
20509
20528
  return __pyx_r;
20510
20529
  }
20511
20530
 
20512
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
20531
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
20513
20532
  *
20514
20533
  * @property
20515
20534
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -20520,7 +20539,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
20520
20539
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
20521
20540
  npy_intp *__pyx_r;
20522
20541
 
20523
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":268
20542
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":268
20524
20543
  * Can return NULL for 0-dimensional arrays.
20525
20544
  * """
20526
20545
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -20530,7 +20549,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
20530
20549
  __pyx_r = PyArray_DIMS(__pyx_v_self);
20531
20550
  goto __pyx_L0;
20532
20551
 
20533
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
20552
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
20534
20553
  *
20535
20554
  * @property
20536
20555
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -20543,7 +20562,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
20543
20562
  return __pyx_r;
20544
20563
  }
20545
20564
 
20546
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
20565
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
20547
20566
  *
20548
20567
  * @property
20549
20568
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -20554,7 +20573,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
20554
20573
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
20555
20574
  npy_intp *__pyx_r;
20556
20575
 
20557
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":275
20576
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":275
20558
20577
  * The number of elements matches the number of dimensions of the array (ndim).
20559
20578
  * """
20560
20579
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -20564,7 +20583,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
20564
20583
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
20565
20584
  goto __pyx_L0;
20566
20585
 
20567
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
20586
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
20568
20587
  *
20569
20588
  * @property
20570
20589
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -20577,7 +20596,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
20577
20596
  return __pyx_r;
20578
20597
  }
20579
20598
 
20580
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
20599
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
20581
20600
  *
20582
20601
  * @property
20583
20602
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -20588,7 +20607,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
20588
20607
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
20589
20608
  npy_intp __pyx_r;
20590
20609
 
20591
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":281
20610
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":281
20592
20611
  * """Returns the total size (in number of elements) of the array.
20593
20612
  * """
20594
20613
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -20598,7 +20617,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
20598
20617
  __pyx_r = PyArray_SIZE(__pyx_v_self);
20599
20618
  goto __pyx_L0;
20600
20619
 
20601
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
20620
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
20602
20621
  *
20603
20622
  * @property
20604
20623
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -20611,7 +20630,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
20611
20630
  return __pyx_r;
20612
20631
  }
20613
20632
 
20614
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
20633
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
20615
20634
  *
20616
20635
  * @property
20617
20636
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -20622,7 +20641,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
20622
20641
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
20623
20642
  char *__pyx_r;
20624
20643
 
20625
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":290
20644
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":290
20626
20645
  * of `PyArray_DATA()` instead, which returns a 'void*'.
20627
20646
  * """
20628
20647
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -20632,7 +20651,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
20632
20651
  __pyx_r = PyArray_BYTES(__pyx_v_self);
20633
20652
  goto __pyx_L0;
20634
20653
 
20635
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
20654
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
20636
20655
  *
20637
20656
  * @property
20638
20657
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -20645,7 +20664,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
20645
20664
  return __pyx_r;
20646
20665
  }
20647
20666
 
20648
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
20667
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
20649
20668
  * ctypedef npy_cdouble complex_t
20650
20669
  *
20651
20670
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -20662,7 +20681,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
20662
20681
  int __pyx_clineno = 0;
20663
20682
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
20664
20683
 
20665
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":777
20684
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":777
20666
20685
  *
20667
20686
  * cdef inline object PyArray_MultiIterNew1(a):
20668
20687
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -20676,7 +20695,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
20676
20695
  __pyx_t_1 = 0;
20677
20696
  goto __pyx_L0;
20678
20697
 
20679
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
20698
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
20680
20699
  * ctypedef npy_cdouble complex_t
20681
20700
  *
20682
20701
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -20695,7 +20714,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
20695
20714
  return __pyx_r;
20696
20715
  }
20697
20716
 
20698
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
20717
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
20699
20718
  * return PyArray_MultiIterNew(1, <void*>a)
20700
20719
  *
20701
20720
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -20712,7 +20731,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
20712
20731
  int __pyx_clineno = 0;
20713
20732
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
20714
20733
 
20715
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":780
20734
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":780
20716
20735
  *
20717
20736
  * cdef inline object PyArray_MultiIterNew2(a, b):
20718
20737
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -20726,7 +20745,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
20726
20745
  __pyx_t_1 = 0;
20727
20746
  goto __pyx_L0;
20728
20747
 
20729
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
20748
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
20730
20749
  * return PyArray_MultiIterNew(1, <void*>a)
20731
20750
  *
20732
20751
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -20745,7 +20764,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
20745
20764
  return __pyx_r;
20746
20765
  }
20747
20766
 
20748
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
20767
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
20749
20768
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
20750
20769
  *
20751
20770
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -20762,7 +20781,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
20762
20781
  int __pyx_clineno = 0;
20763
20782
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
20764
20783
 
20765
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":783
20784
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":783
20766
20785
  *
20767
20786
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
20768
20787
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -20776,7 +20795,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
20776
20795
  __pyx_t_1 = 0;
20777
20796
  goto __pyx_L0;
20778
20797
 
20779
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
20798
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
20780
20799
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
20781
20800
  *
20782
20801
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -20795,7 +20814,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
20795
20814
  return __pyx_r;
20796
20815
  }
20797
20816
 
20798
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
20817
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
20799
20818
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
20800
20819
  *
20801
20820
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -20812,7 +20831,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
20812
20831
  int __pyx_clineno = 0;
20813
20832
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
20814
20833
 
20815
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":786
20834
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":786
20816
20835
  *
20817
20836
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
20818
20837
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -20826,7 +20845,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
20826
20845
  __pyx_t_1 = 0;
20827
20846
  goto __pyx_L0;
20828
20847
 
20829
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
20848
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
20830
20849
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
20831
20850
  *
20832
20851
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -20845,7 +20864,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
20845
20864
  return __pyx_r;
20846
20865
  }
20847
20866
 
20848
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
20867
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
20849
20868
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
20850
20869
  *
20851
20870
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -20862,7 +20881,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
20862
20881
  int __pyx_clineno = 0;
20863
20882
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
20864
20883
 
20865
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":789
20884
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":789
20866
20885
  *
20867
20886
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
20868
20887
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -20876,7 +20895,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
20876
20895
  __pyx_t_1 = 0;
20877
20896
  goto __pyx_L0;
20878
20897
 
20879
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
20898
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
20880
20899
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
20881
20900
  *
20882
20901
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -20895,7 +20914,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
20895
20914
  return __pyx_r;
20896
20915
  }
20897
20916
 
20898
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
20917
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
20899
20918
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
20900
20919
  *
20901
20920
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -20909,7 +20928,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20909
20928
  int __pyx_t_1;
20910
20929
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
20911
20930
 
20912
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
20931
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
20913
20932
  *
20914
20933
  * cdef inline tuple PyDataType_SHAPE(dtype d):
20915
20934
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -20919,7 +20938,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20919
20938
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
20920
20939
  if (__pyx_t_1) {
20921
20940
 
20922
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":793
20941
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":793
20923
20942
  * cdef inline tuple PyDataType_SHAPE(dtype d):
20924
20943
  * if PyDataType_HASSUBARRAY(d):
20925
20944
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -20931,7 +20950,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20931
20950
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
20932
20951
  goto __pyx_L0;
20933
20952
 
20934
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
20953
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
20935
20954
  *
20936
20955
  * cdef inline tuple PyDataType_SHAPE(dtype d):
20937
20956
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -20940,7 +20959,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20940
20959
  */
20941
20960
  }
20942
20961
 
20943
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":795
20962
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":795
20944
20963
  * return <tuple>d.subarray.shape
20945
20964
  * else:
20946
20965
  * return () # <<<<<<<<<<<<<<
@@ -20954,7 +20973,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20954
20973
  goto __pyx_L0;
20955
20974
  }
20956
20975
 
20957
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
20976
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
20958
20977
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
20959
20978
  *
20960
20979
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -20969,7 +20988,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20969
20988
  return __pyx_r;
20970
20989
  }
20971
20990
 
20972
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
20991
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
20973
20992
  * int _import_umath() except -1
20974
20993
  *
20975
20994
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -20979,7 +20998,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20979
20998
 
20980
20999
  static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
20981
21000
 
20982
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":971
21001
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":971
20983
21002
  *
20984
21003
  * cdef inline void set_array_base(ndarray arr, object base):
20985
21004
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -20988,7 +21007,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
20988
21007
  */
20989
21008
  Py_INCREF(__pyx_v_base);
20990
21009
 
20991
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":972
21010
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":972
20992
21011
  * cdef inline void set_array_base(ndarray arr, object base):
20993
21012
  * Py_INCREF(base) # important to do this before stealing the reference below!
20994
21013
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -20997,7 +21016,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
20997
21016
  */
20998
21017
  (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
20999
21018
 
21000
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
21019
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
21001
21020
  * int _import_umath() except -1
21002
21021
  *
21003
21022
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -21008,7 +21027,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
21008
21027
  /* function exit code */
21009
21028
  }
21010
21029
 
21011
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
21030
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
21012
21031
  * PyArray_SetBaseObject(arr, base)
21013
21032
  *
21014
21033
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -21023,7 +21042,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21023
21042
  int __pyx_t_1;
21024
21043
  __Pyx_RefNannySetupContext("get_array_base", 1);
21025
21044
 
21026
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":975
21045
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":975
21027
21046
  *
21028
21047
  * cdef inline object get_array_base(ndarray arr):
21029
21048
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -21032,7 +21051,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21032
21051
  */
21033
21052
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
21034
21053
 
21035
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
21054
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
21036
21055
  * cdef inline object get_array_base(ndarray arr):
21037
21056
  * base = PyArray_BASE(arr)
21038
21057
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -21042,7 +21061,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21042
21061
  __pyx_t_1 = (__pyx_v_base == NULL);
21043
21062
  if (__pyx_t_1) {
21044
21063
 
21045
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":977
21064
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":977
21046
21065
  * base = PyArray_BASE(arr)
21047
21066
  * if base is NULL:
21048
21067
  * return None # <<<<<<<<<<<<<<
@@ -21053,7 +21072,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21053
21072
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
21054
21073
  goto __pyx_L0;
21055
21074
 
21056
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
21075
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
21057
21076
  * cdef inline object get_array_base(ndarray arr):
21058
21077
  * base = PyArray_BASE(arr)
21059
21078
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -21062,7 +21081,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21062
21081
  */
21063
21082
  }
21064
21083
 
21065
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":978
21084
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":978
21066
21085
  * if base is NULL:
21067
21086
  * return None
21068
21087
  * return <object>base # <<<<<<<<<<<<<<
@@ -21074,7 +21093,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21074
21093
  __pyx_r = ((PyObject *)__pyx_v_base);
21075
21094
  goto __pyx_L0;
21076
21095
 
21077
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
21096
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
21078
21097
  * PyArray_SetBaseObject(arr, base)
21079
21098
  *
21080
21099
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -21089,7 +21108,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21089
21108
  return __pyx_r;
21090
21109
  }
21091
21110
 
21092
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
21111
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
21093
21112
  * # Versions of the import_* functions which are more suitable for
21094
21113
  * # Cython code.
21095
21114
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -21113,7 +21132,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21113
21132
  int __pyx_clineno = 0;
21114
21133
  __Pyx_RefNannySetupContext("import_array", 1);
21115
21134
 
21116
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
21135
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
21117
21136
  * # Cython code.
21118
21137
  * cdef inline int import_array() except -1:
21119
21138
  * try: # <<<<<<<<<<<<<<
@@ -21129,7 +21148,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21129
21148
  __Pyx_XGOTREF(__pyx_t_3);
21130
21149
  /*try:*/ {
21131
21150
 
21132
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":984
21151
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":984
21133
21152
  * cdef inline int import_array() except -1:
21134
21153
  * try:
21135
21154
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -21138,7 +21157,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21138
21157
  */
21139
21158
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 984, __pyx_L3_error)
21140
21159
 
21141
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
21160
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
21142
21161
  * # Cython code.
21143
21162
  * cdef inline int import_array() except -1:
21144
21163
  * try: # <<<<<<<<<<<<<<
@@ -21152,7 +21171,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21152
21171
  goto __pyx_L8_try_end;
21153
21172
  __pyx_L3_error:;
21154
21173
 
21155
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":985
21174
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":985
21156
21175
  * try:
21157
21176
  * __pyx_import_array()
21158
21177
  * except Exception: # <<<<<<<<<<<<<<
@@ -21167,7 +21186,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21167
21186
  __Pyx_XGOTREF(__pyx_t_6);
21168
21187
  __Pyx_XGOTREF(__pyx_t_7);
21169
21188
 
21170
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
21189
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
21171
21190
  * __pyx_import_array()
21172
21191
  * except Exception:
21173
21192
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -21182,7 +21201,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21182
21201
  }
21183
21202
  goto __pyx_L5_except_error;
21184
21203
 
21185
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
21204
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
21186
21205
  * # Cython code.
21187
21206
  * cdef inline int import_array() except -1:
21188
21207
  * try: # <<<<<<<<<<<<<<
@@ -21198,7 +21217,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21198
21217
  __pyx_L8_try_end:;
21199
21218
  }
21200
21219
 
21201
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
21220
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
21202
21221
  * # Versions of the import_* functions which are more suitable for
21203
21222
  * # Cython code.
21204
21223
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -21221,7 +21240,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21221
21240
  return __pyx_r;
21222
21241
  }
21223
21242
 
21224
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
21243
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
21225
21244
  * raise ImportError("numpy.core.multiarray failed to import")
21226
21245
  *
21227
21246
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -21245,7 +21264,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21245
21264
  int __pyx_clineno = 0;
21246
21265
  __Pyx_RefNannySetupContext("import_umath", 1);
21247
21266
 
21248
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
21267
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
21249
21268
  *
21250
21269
  * cdef inline int import_umath() except -1:
21251
21270
  * try: # <<<<<<<<<<<<<<
@@ -21261,7 +21280,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21261
21280
  __Pyx_XGOTREF(__pyx_t_3);
21262
21281
  /*try:*/ {
21263
21282
 
21264
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":990
21283
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":990
21265
21284
  * cdef inline int import_umath() except -1:
21266
21285
  * try:
21267
21286
  * _import_umath() # <<<<<<<<<<<<<<
@@ -21270,7 +21289,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21270
21289
  */
21271
21290
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 990, __pyx_L3_error)
21272
21291
 
21273
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
21292
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
21274
21293
  *
21275
21294
  * cdef inline int import_umath() except -1:
21276
21295
  * try: # <<<<<<<<<<<<<<
@@ -21284,7 +21303,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21284
21303
  goto __pyx_L8_try_end;
21285
21304
  __pyx_L3_error:;
21286
21305
 
21287
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":991
21306
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":991
21288
21307
  * try:
21289
21308
  * _import_umath()
21290
21309
  * except Exception: # <<<<<<<<<<<<<<
@@ -21299,7 +21318,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21299
21318
  __Pyx_XGOTREF(__pyx_t_6);
21300
21319
  __Pyx_XGOTREF(__pyx_t_7);
21301
21320
 
21302
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
21321
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
21303
21322
  * _import_umath()
21304
21323
  * except Exception:
21305
21324
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -21314,7 +21333,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21314
21333
  }
21315
21334
  goto __pyx_L5_except_error;
21316
21335
 
21317
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
21336
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
21318
21337
  *
21319
21338
  * cdef inline int import_umath() except -1:
21320
21339
  * try: # <<<<<<<<<<<<<<
@@ -21330,7 +21349,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21330
21349
  __pyx_L8_try_end:;
21331
21350
  }
21332
21351
 
21333
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
21352
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
21334
21353
  * raise ImportError("numpy.core.multiarray failed to import")
21335
21354
  *
21336
21355
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -21353,7 +21372,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21353
21372
  return __pyx_r;
21354
21373
  }
21355
21374
 
21356
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
21375
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
21357
21376
  * raise ImportError("numpy.core.umath failed to import")
21358
21377
  *
21359
21378
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -21377,7 +21396,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21377
21396
  int __pyx_clineno = 0;
21378
21397
  __Pyx_RefNannySetupContext("import_ufunc", 1);
21379
21398
 
21380
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
21399
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
21381
21400
  *
21382
21401
  * cdef inline int import_ufunc() except -1:
21383
21402
  * try: # <<<<<<<<<<<<<<
@@ -21393,7 +21412,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21393
21412
  __Pyx_XGOTREF(__pyx_t_3);
21394
21413
  /*try:*/ {
21395
21414
 
21396
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":996
21415
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":996
21397
21416
  * cdef inline int import_ufunc() except -1:
21398
21417
  * try:
21399
21418
  * _import_umath() # <<<<<<<<<<<<<<
@@ -21402,7 +21421,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21402
21421
  */
21403
21422
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 996, __pyx_L3_error)
21404
21423
 
21405
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
21424
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
21406
21425
  *
21407
21426
  * cdef inline int import_ufunc() except -1:
21408
21427
  * try: # <<<<<<<<<<<<<<
@@ -21416,7 +21435,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21416
21435
  goto __pyx_L8_try_end;
21417
21436
  __pyx_L3_error:;
21418
21437
 
21419
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":997
21438
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":997
21420
21439
  * try:
21421
21440
  * _import_umath()
21422
21441
  * except Exception: # <<<<<<<<<<<<<<
@@ -21431,7 +21450,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21431
21450
  __Pyx_XGOTREF(__pyx_t_6);
21432
21451
  __Pyx_XGOTREF(__pyx_t_7);
21433
21452
 
21434
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
21453
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
21435
21454
  * _import_umath()
21436
21455
  * except Exception:
21437
21456
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -21446,7 +21465,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21446
21465
  }
21447
21466
  goto __pyx_L5_except_error;
21448
21467
 
21449
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
21468
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
21450
21469
  *
21451
21470
  * cdef inline int import_ufunc() except -1:
21452
21471
  * try: # <<<<<<<<<<<<<<
@@ -21462,7 +21481,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21462
21481
  __pyx_L8_try_end:;
21463
21482
  }
21464
21483
 
21465
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
21484
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
21466
21485
  * raise ImportError("numpy.core.umath failed to import")
21467
21486
  *
21468
21487
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -21485,7 +21504,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21485
21504
  return __pyx_r;
21486
21505
  }
21487
21506
 
21488
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
21507
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
21489
21508
  *
21490
21509
  *
21491
21510
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -21496,7 +21515,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21496
21515
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
21497
21516
  int __pyx_r;
21498
21517
 
21499
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
21518
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
21500
21519
  * bool
21501
21520
  * """
21502
21521
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -21506,7 +21525,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
21506
21525
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
21507
21526
  goto __pyx_L0;
21508
21527
 
21509
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
21528
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
21510
21529
  *
21511
21530
  *
21512
21531
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -21519,7 +21538,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
21519
21538
  return __pyx_r;
21520
21539
  }
21521
21540
 
21522
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
21541
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
21523
21542
  *
21524
21543
  *
21525
21544
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -21530,7 +21549,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
21530
21549
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
21531
21550
  int __pyx_r;
21532
21551
 
21533
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1028
21552
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1028
21534
21553
  * bool
21535
21554
  * """
21536
21555
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -21540,7 +21559,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
21540
21559
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
21541
21560
  goto __pyx_L0;
21542
21561
 
21543
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
21562
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
21544
21563
  *
21545
21564
  *
21546
21565
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -21553,7 +21572,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
21553
21572
  return __pyx_r;
21554
21573
  }
21555
21574
 
21556
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
21575
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
21557
21576
  *
21558
21577
  *
21559
21578
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -21564,7 +21583,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
21564
21583
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
21565
21584
  npy_datetime __pyx_r;
21566
21585
 
21567
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1038
21586
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1038
21568
21587
  * also needed. That can be found using `get_datetime64_unit`.
21569
21588
  * """
21570
21589
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -21574,7 +21593,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
21574
21593
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
21575
21594
  goto __pyx_L0;
21576
21595
 
21577
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
21596
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
21578
21597
  *
21579
21598
  *
21580
21599
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -21587,7 +21606,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
21587
21606
  return __pyx_r;
21588
21607
  }
21589
21608
 
21590
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
21609
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
21591
21610
  *
21592
21611
  *
21593
21612
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -21598,7 +21617,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
21598
21617
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
21599
21618
  npy_timedelta __pyx_r;
21600
21619
 
21601
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1045
21620
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1045
21602
21621
  * returns the int64 value underlying scalar numpy timedelta64 object
21603
21622
  * """
21604
21623
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -21608,7 +21627,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
21608
21627
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
21609
21628
  goto __pyx_L0;
21610
21629
 
21611
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
21630
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
21612
21631
  *
21613
21632
  *
21614
21633
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -21621,7 +21640,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
21621
21640
  return __pyx_r;
21622
21641
  }
21623
21642
 
21624
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
21643
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
21625
21644
  *
21626
21645
  *
21627
21646
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -21632,7 +21651,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
21632
21651
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
21633
21652
  NPY_DATETIMEUNIT __pyx_r;
21634
21653
 
21635
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1052
21654
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1052
21636
21655
  * returns the unit part of the dtype for a numpy datetime64 object.
21637
21656
  * """
21638
21657
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -21640,7 +21659,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
21640
21659
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
21641
21660
  goto __pyx_L0;
21642
21661
 
21643
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
21662
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
21644
21663
  *
21645
21664
  *
21646
21665
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -52491,8 +52510,10 @@ static PyTypeObject __pyx_type_7biotite_8sequence_5align_9kmertable_BucketKmerTa
52491
52510
  };
52492
52511
  #endif
52493
52512
 
52513
+ #if CYTHON_USE_FREELISTS
52494
52514
  static struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr *__pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr[8];
52495
52515
  static int __pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr = 0;
52516
+ #endif
52496
52517
 
52497
52518
  static PyObject *__pyx_tp_new_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr(PyTypeObject *t, CYTHON_UNUSED PyObject *a, CYTHON_UNUSED PyObject *k) {
52498
52519
  PyObject *o;
@@ -52500,7 +52521,7 @@ static PyObject *__pyx_tp_new_7biotite_8sequence_5align_9kmertable___pyx_scope_s
52500
52521
  allocfunc alloc_func = (allocfunc)PyType_GetSlot(t, Py_tp_alloc);
52501
52522
  o = alloc_func(t, 0);
52502
52523
  #else
52503
- #if CYTHON_COMPILING_IN_CPYTHON
52524
+ #if CYTHON_USE_FREELISTS
52504
52525
  if (likely((int)(__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr > 0) & (int)(t->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr)))) {
52505
52526
  o = (PyObject*)__pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr[--__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr];
52506
52527
  memset(o, 0, sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr));
@@ -52529,7 +52550,7 @@ static void __pyx_tp_dealloc_7biotite_8sequence_5align_9kmertable___pyx_scope_st
52529
52550
  Py_CLEAR(p->__pyx_genexpr_arg_0);
52530
52551
  Py_CLEAR(p->__pyx_v_sequence);
52531
52552
  Py_CLEAR(p->__pyx_t_0);
52532
- #if CYTHON_COMPILING_IN_CPYTHON
52553
+ #if CYTHON_USE_FREELISTS
52533
52554
  if (((int)(__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr < 8) & (int)(Py_TYPE(o)->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr)))) {
52534
52555
  __pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr[__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr++] = ((struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr *)o);
52535
52556
  } else
@@ -52658,8 +52679,10 @@ static PyTypeObject __pyx_type_7biotite_8sequence_5align_9kmertable___pyx_scope_
52658
52679
  };
52659
52680
  #endif
52660
52681
 
52682
+ #if CYTHON_USE_FREELISTS
52661
52683
  static struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr *__pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr[8];
52662
52684
  static int __pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr = 0;
52685
+ #endif
52663
52686
 
52664
52687
  static PyObject *__pyx_tp_new_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr(PyTypeObject *t, CYTHON_UNUSED PyObject *a, CYTHON_UNUSED PyObject *k) {
52665
52688
  PyObject *o;
@@ -52667,7 +52690,7 @@ static PyObject *__pyx_tp_new_7biotite_8sequence_5align_9kmertable___pyx_scope_s
52667
52690
  allocfunc alloc_func = (allocfunc)PyType_GetSlot(t, Py_tp_alloc);
52668
52691
  o = alloc_func(t, 0);
52669
52692
  #else
52670
- #if CYTHON_COMPILING_IN_CPYTHON
52693
+ #if CYTHON_USE_FREELISTS
52671
52694
  if (likely((int)(__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr > 0) & (int)(t->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr)))) {
52672
52695
  o = (PyObject*)__pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr[--__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr];
52673
52696
  memset(o, 0, sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr));
@@ -52696,7 +52719,7 @@ static void __pyx_tp_dealloc_7biotite_8sequence_5align_9kmertable___pyx_scope_st
52696
52719
  Py_CLEAR(p->__pyx_genexpr_arg_0);
52697
52720
  Py_CLEAR(p->__pyx_v_sequence);
52698
52721
  Py_CLEAR(p->__pyx_t_0);
52699
- #if CYTHON_COMPILING_IN_CPYTHON
52722
+ #if CYTHON_USE_FREELISTS
52700
52723
  if (((int)(__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr < 8) & (int)(Py_TYPE(o)->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr)))) {
52701
52724
  __pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr[__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr++] = ((struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr *)o);
52702
52725
  } else
@@ -52825,8 +52848,10 @@ static PyTypeObject __pyx_type_7biotite_8sequence_5align_9kmertable___pyx_scope_
52825
52848
  };
52826
52849
  #endif
52827
52850
 
52851
+ #if CYTHON_USE_FREELISTS
52828
52852
  static struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr *__pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr[8];
52829
52853
  static int __pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr = 0;
52854
+ #endif
52830
52855
 
52831
52856
  static PyObject *__pyx_tp_new_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr(PyTypeObject *t, CYTHON_UNUSED PyObject *a, CYTHON_UNUSED PyObject *k) {
52832
52857
  PyObject *o;
@@ -52834,7 +52859,7 @@ static PyObject *__pyx_tp_new_7biotite_8sequence_5align_9kmertable___pyx_scope_s
52834
52859
  allocfunc alloc_func = (allocfunc)PyType_GetSlot(t, Py_tp_alloc);
52835
52860
  o = alloc_func(t, 0);
52836
52861
  #else
52837
- #if CYTHON_COMPILING_IN_CPYTHON
52862
+ #if CYTHON_USE_FREELISTS
52838
52863
  if (likely((int)(__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr > 0) & (int)(t->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr)))) {
52839
52864
  o = (PyObject*)__pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr[--__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr];
52840
52865
  memset(o, 0, sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr));
@@ -52863,7 +52888,7 @@ static void __pyx_tp_dealloc_7biotite_8sequence_5align_9kmertable___pyx_scope_st
52863
52888
  Py_CLEAR(p->__pyx_genexpr_arg_0);
52864
52889
  Py_CLEAR(p->__pyx_v_table);
52865
52890
  Py_CLEAR(p->__pyx_t_0);
52866
- #if CYTHON_COMPILING_IN_CPYTHON
52891
+ #if CYTHON_USE_FREELISTS
52867
52892
  if (((int)(__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr < 8) & (int)(Py_TYPE(o)->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr)))) {
52868
52893
  __pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr[__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr++] = ((struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr *)o);
52869
52894
  } else
@@ -52992,8 +53017,10 @@ static PyTypeObject __pyx_type_7biotite_8sequence_5align_9kmertable___pyx_scope_
52992
53017
  };
52993
53018
  #endif
52994
53019
 
53020
+ #if CYTHON_USE_FREELISTS
52995
53021
  static struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr *__pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr[8];
52996
53022
  static int __pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr = 0;
53023
+ #endif
52997
53024
 
52998
53025
  static PyObject *__pyx_tp_new_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr(PyTypeObject *t, CYTHON_UNUSED PyObject *a, CYTHON_UNUSED PyObject *k) {
52999
53026
  PyObject *o;
@@ -53001,7 +53028,7 @@ static PyObject *__pyx_tp_new_7biotite_8sequence_5align_9kmertable___pyx_scope_s
53001
53028
  allocfunc alloc_func = (allocfunc)PyType_GetSlot(t, Py_tp_alloc);
53002
53029
  o = alloc_func(t, 0);
53003
53030
  #else
53004
- #if CYTHON_COMPILING_IN_CPYTHON
53031
+ #if CYTHON_USE_FREELISTS
53005
53032
  if (likely((int)(__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr > 0) & (int)(t->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr)))) {
53006
53033
  o = (PyObject*)__pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr[--__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr];
53007
53034
  memset(o, 0, sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr));
@@ -53030,7 +53057,7 @@ static void __pyx_tp_dealloc_7biotite_8sequence_5align_9kmertable___pyx_scope_st
53030
53057
  Py_CLEAR(p->__pyx_genexpr_arg_0);
53031
53058
  Py_CLEAR(p->__pyx_v_table);
53032
53059
  Py_CLEAR(p->__pyx_t_0);
53033
- #if CYTHON_COMPILING_IN_CPYTHON
53060
+ #if CYTHON_USE_FREELISTS
53034
53061
  if (((int)(__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr < 8) & (int)(Py_TYPE(o)->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr)))) {
53035
53062
  __pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr[__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr++] = ((struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr *)o);
53036
53063
  } else
@@ -54598,7 +54625,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
54598
54625
  __Pyx_GOTREF(__pyx_tuple__8);
54599
54626
  __Pyx_GIVEREF(__pyx_tuple__8);
54600
54627
 
54601
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
54628
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
54602
54629
  * __pyx_import_array()
54603
54630
  * except Exception:
54604
54631
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -54609,7 +54636,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
54609
54636
  __Pyx_GOTREF(__pyx_tuple__9);
54610
54637
  __Pyx_GIVEREF(__pyx_tuple__9);
54611
54638
 
54612
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
54639
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
54613
54640
  * _import_umath()
54614
54641
  * except Exception:
54615
54642
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -55881,33 +55908,33 @@ static int __Pyx_modinit_type_import_code(void) {
55881
55908
  /*--- Type import code ---*/
55882
55909
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
55883
55910
  __Pyx_GOTREF(__pyx_t_1);
55884
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
55911
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
55885
55912
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
55886
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
55913
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
55887
55914
  #elif CYTHON_COMPILING_IN_LIMITED_API
55888
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
55915
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
55889
55916
  #else
55890
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
55917
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
55891
55918
  #endif
55892
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
55919
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
55893
55920
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
55894
55921
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
55895
55922
  __Pyx_GOTREF(__pyx_t_1);
55896
- __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)
55897
- __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)
55898
- __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)
55899
- __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)
55900
- __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, 812, __pyx_L1_error)
55901
- __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, 814, __pyx_L1_error)
55902
- __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, 816, __pyx_L1_error)
55903
- __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, 818, __pyx_L1_error)
55904
- __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, 820, __pyx_L1_error)
55905
- __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, 822, __pyx_L1_error)
55906
- __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, 824, __pyx_L1_error)
55907
- __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, 826, __pyx_L1_error)
55908
- __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, 828, __pyx_L1_error)
55909
- __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, 830, __pyx_L1_error)
55910
- __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, 868, __pyx_L1_error)
55923
+ __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)
55924
+ __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)
55925
+ __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)
55926
+ __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)
55927
+ __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, 812, __pyx_L1_error)
55928
+ __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, 814, __pyx_L1_error)
55929
+ __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, 816, __pyx_L1_error)
55930
+ __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, 818, __pyx_L1_error)
55931
+ __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, 820, __pyx_L1_error)
55932
+ __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, 822, __pyx_L1_error)
55933
+ __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, 824, __pyx_L1_error)
55934
+ __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, 826, __pyx_L1_error)
55935
+ __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, 828, __pyx_L1_error)
55936
+ __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, 830, __pyx_L1_error)
55937
+ __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, 868, __pyx_L1_error)
55911
55938
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
55912
55939
  __Pyx_RefNannyFinishContext();
55913
55940
  return 0;
@@ -58103,11 +58130,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
58103
58130
  {
58104
58131
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
58105
58132
  if (unlikely(eq != 0)) {
58106
- if (unlikely(eq < 0)) return NULL; // error
58133
+ if (unlikely(eq < 0)) return NULL;
58107
58134
  return kwvalues[i];
58108
58135
  }
58109
58136
  }
58110
- return NULL; // not found (no exception set)
58137
+ return NULL;
58111
58138
  }
58112
58139
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
58113
58140
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -58220,7 +58247,7 @@ static int __Pyx_ParseOptionalKeywords(
58220
58247
  if (*name) {
58221
58248
  values[name-argnames] = value;
58222
58249
  #if CYTHON_AVOID_BORROWED_REFS
58223
- Py_INCREF(value); // transfer ownership of value to values
58250
+ Py_INCREF(value);
58224
58251
  Py_DECREF(key);
58225
58252
  #endif
58226
58253
  key = NULL;
@@ -58239,7 +58266,7 @@ static int __Pyx_ParseOptionalKeywords(
58239
58266
  && _PyString_Eq(**name, key)) {
58240
58267
  values[name-argnames] = value;
58241
58268
  #if CYTHON_AVOID_BORROWED_REFS
58242
- value = NULL; // ownership transferred to values
58269
+ value = NULL;
58243
58270
  #endif
58244
58271
  break;
58245
58272
  }
@@ -58271,7 +58298,7 @@ static int __Pyx_ParseOptionalKeywords(
58271
58298
  if (cmp == 0) {
58272
58299
  values[name-argnames] = value;
58273
58300
  #if CYTHON_AVOID_BORROWED_REFS
58274
- value = NULL; // ownership transferred to values
58301
+ value = NULL;
58275
58302
  #endif
58276
58303
  break;
58277
58304
  }
@@ -60193,9 +60220,10 @@ static void __Pyx_Generator_Replace_StopIteration(int in_async_gen) {
60193
60220
 
60194
60221
  /* IterFinish */
60195
60222
  static CYTHON_INLINE int __Pyx_IterFinish(void) {
60223
+ PyObject* exc_type;
60196
60224
  __Pyx_PyThreadState_declare
60197
60225
  __Pyx_PyThreadState_assign
60198
- PyObject* exc_type = __Pyx_PyErr_CurrentExceptionType();
60226
+ exc_type = __Pyx_PyErr_CurrentExceptionType();
60199
60227
  if (unlikely(exc_type)) {
60200
60228
  if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
60201
60229
  return -1;
@@ -61379,10 +61407,10 @@ __PYX_GOOD:
61379
61407
  #endif
61380
61408
 
61381
61409
  /* TypeImport */
61382
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
61383
- #define __PYX_HAVE_RT_ImportType_3_0_7
61384
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
61385
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
61410
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
61411
+ #define __PYX_HAVE_RT_ImportType_3_0_10
61412
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
61413
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
61386
61414
  {
61387
61415
  PyObject *result = 0;
61388
61416
  char warning[200];
@@ -61436,7 +61464,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
61436
61464
  module_name, class_name, size, basicsize+itemsize);
61437
61465
  goto bad;
61438
61466
  }
61439
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
61467
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
61440
61468
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
61441
61469
  PyErr_Format(PyExc_ValueError,
61442
61470
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -61444,7 +61472,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
61444
61472
  module_name, class_name, size, basicsize, basicsize+itemsize);
61445
61473
  goto bad;
61446
61474
  }
61447
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
61475
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
61448
61476
  PyOS_snprintf(warning, sizeof(warning),
61449
61477
  "%s.%s size changed, may indicate binary incompatibility. "
61450
61478
  "Expected %zd from C header, got %zd from PyObject",
@@ -62444,7 +62472,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
62444
62472
  default:
62445
62473
  return NULL;
62446
62474
  }
62447
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
62475
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
62448
62476
  }
62449
62477
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
62450
62478
  {
@@ -62926,7 +62954,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
62926
62954
  #else
62927
62955
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
62928
62956
  #endif
62929
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
62957
+ Py_XDECREF(py_funcname);
62930
62958
  return py_code;
62931
62959
  bad:
62932
62960
  Py_XDECREF(py_funcname);