biotite 0.39.0__cp310-cp310-macosx_11_0_arm64.whl → 0.40.0__cp310-cp310-macosx_11_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of biotite might be problematic. Click here for more details.

Files changed (104) hide show
  1. biotite/__init__.py +3 -3
  2. biotite/application/dssp/app.py +18 -18
  3. biotite/database/rcsb/download.py +19 -14
  4. biotite/sequence/align/banded.c +258 -237
  5. biotite/sequence/align/banded.cpython-310-darwin.so +0 -0
  6. biotite/sequence/align/kmeralphabet.c +243 -222
  7. biotite/sequence/align/kmeralphabet.cpython-310-darwin.so +0 -0
  8. biotite/sequence/align/kmersimilarity.c +215 -196
  9. biotite/sequence/align/kmersimilarity.cpython-310-darwin.so +0 -0
  10. biotite/sequence/align/kmertable.cpp +233 -205
  11. biotite/sequence/align/kmertable.cpython-310-darwin.so +0 -0
  12. biotite/sequence/align/localgapped.c +258 -237
  13. biotite/sequence/align/localgapped.cpython-310-darwin.so +0 -0
  14. biotite/sequence/align/localungapped.c +235 -214
  15. biotite/sequence/align/localungapped.cpython-310-darwin.so +0 -0
  16. biotite/sequence/align/multiple.c +255 -234
  17. biotite/sequence/align/multiple.cpython-310-darwin.so +0 -0
  18. biotite/sequence/align/pairwise.c +274 -253
  19. biotite/sequence/align/pairwise.cpython-310-darwin.so +0 -0
  20. biotite/sequence/align/permutation.c +215 -196
  21. biotite/sequence/align/permutation.cpython-310-darwin.so +0 -0
  22. biotite/sequence/align/selector.c +217 -197
  23. biotite/sequence/align/selector.cpython-310-darwin.so +0 -0
  24. biotite/sequence/align/tracetable.c +215 -195
  25. biotite/sequence/align/tracetable.cpython-310-darwin.so +0 -0
  26. biotite/sequence/codec.c +235 -214
  27. biotite/sequence/codec.cpython-310-darwin.so +0 -0
  28. biotite/sequence/phylo/nj.c +215 -196
  29. biotite/sequence/phylo/nj.cpython-310-darwin.so +0 -0
  30. biotite/sequence/phylo/tree.c +227 -202
  31. biotite/sequence/phylo/tree.cpython-310-darwin.so +0 -0
  32. biotite/sequence/phylo/upgma.c +215 -196
  33. biotite/sequence/phylo/upgma.cpython-310-darwin.so +0 -0
  34. biotite/structure/basepairs.py +7 -12
  35. biotite/structure/bonds.c +1175 -1226
  36. biotite/structure/bonds.cpython-310-darwin.so +0 -0
  37. biotite/structure/celllist.c +217 -197
  38. biotite/structure/celllist.cpython-310-darwin.so +0 -0
  39. biotite/structure/charges.c +1052 -1101
  40. biotite/structure/charges.cpython-310-darwin.so +0 -0
  41. biotite/structure/filter.py +30 -37
  42. biotite/structure/info/__init__.py +5 -8
  43. biotite/structure/info/atoms.py +25 -67
  44. biotite/structure/info/bonds.py +46 -100
  45. biotite/structure/info/ccd/README.rst +8 -0
  46. biotite/structure/info/ccd/amino_acids.txt +1646 -0
  47. biotite/structure/info/ccd/carbohydrates.txt +1133 -0
  48. biotite/structure/info/ccd/components.bcif +0 -0
  49. biotite/structure/info/ccd/nucleotides.txt +797 -0
  50. biotite/structure/info/ccd.py +95 -0
  51. biotite/structure/info/groups.py +90 -0
  52. biotite/structure/info/masses.py +21 -20
  53. biotite/structure/info/misc.py +11 -22
  54. biotite/structure/info/standardize.py +17 -12
  55. biotite/structure/io/__init__.py +2 -4
  56. biotite/structure/io/ctab.py +1 -1
  57. biotite/structure/io/general.py +37 -43
  58. biotite/structure/io/mmtf/__init__.py +3 -0
  59. biotite/structure/io/mmtf/convertarray.c +219 -198
  60. biotite/structure/io/mmtf/convertarray.cpython-310-darwin.so +0 -0
  61. biotite/structure/io/mmtf/convertfile.c +217 -197
  62. biotite/structure/io/mmtf/convertfile.cpython-310-darwin.so +0 -0
  63. biotite/structure/io/mmtf/decode.c +225 -204
  64. biotite/structure/io/mmtf/decode.cpython-310-darwin.so +0 -0
  65. biotite/structure/io/mmtf/encode.c +215 -196
  66. biotite/structure/io/mmtf/encode.cpython-310-darwin.so +0 -0
  67. biotite/structure/io/mmtf/file.py +34 -26
  68. biotite/structure/io/npz/__init__.py +3 -0
  69. biotite/structure/io/npz/file.py +21 -18
  70. biotite/structure/io/pdb/__init__.py +3 -3
  71. biotite/structure/io/pdb/file.py +5 -3
  72. biotite/structure/io/pdb/hybrid36.c +63 -43
  73. biotite/structure/io/pdb/hybrid36.cpython-310-darwin.so +0 -0
  74. biotite/structure/io/pdbqt/file.py +32 -32
  75. biotite/structure/io/pdbx/__init__.py +13 -6
  76. biotite/structure/io/pdbx/bcif.py +649 -0
  77. biotite/structure/io/pdbx/cif.py +1028 -0
  78. biotite/structure/io/pdbx/component.py +243 -0
  79. biotite/structure/io/pdbx/convert.py +707 -359
  80. biotite/structure/io/pdbx/encoding.c +112813 -0
  81. biotite/structure/io/pdbx/encoding.cpython-310-darwin.so +0 -0
  82. biotite/structure/io/pdbx/error.py +14 -0
  83. biotite/structure/io/pdbx/legacy.py +267 -0
  84. biotite/structure/molecules.py +151 -151
  85. biotite/structure/sasa.c +215 -196
  86. biotite/structure/sasa.cpython-310-darwin.so +0 -0
  87. biotite/structure/superimpose.py +158 -115
  88. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/METADATA +2 -2
  89. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/RECORD +92 -90
  90. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/WHEEL +1 -1
  91. biotite/structure/info/amino_acids.json +0 -1556
  92. biotite/structure/info/amino_acids.py +0 -42
  93. biotite/structure/info/carbohydrates.json +0 -1122
  94. biotite/structure/info/carbohydrates.py +0 -39
  95. biotite/structure/info/intra_bonds.msgpack +0 -0
  96. biotite/structure/info/link_types.msgpack +0 -1
  97. biotite/structure/info/nucleotides.json +0 -772
  98. biotite/structure/info/nucleotides.py +0 -39
  99. biotite/structure/info/residue_masses.msgpack +0 -0
  100. biotite/structure/info/residue_names.msgpack +0 -3
  101. biotite/structure/info/residues.msgpack +0 -0
  102. biotite/structure/io/pdbx/file.py +0 -652
  103. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/LICENSE.rst +0 -0
  104. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.0.7 */
1
+ /* Generated by Cython 3.0.10 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -37,10 +37,10 @@ END: Cython Metadata */
37
37
  #else
38
38
  #define __PYX_EXTRA_ABI_MODULE_NAME ""
39
39
  #endif
40
- #define CYTHON_ABI "3_0_7" __PYX_EXTRA_ABI_MODULE_NAME
40
+ #define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
41
41
  #define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
42
42
  #define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
43
- #define CYTHON_HEX_VERSION 0x030007F0
43
+ #define CYTHON_HEX_VERSION 0x03000AF0
44
44
  #define CYTHON_FUTURE_DIVISION 1
45
45
  #include <stddef.h>
46
46
  #ifndef offsetof
@@ -132,6 +132,8 @@ END: Cython Metadata */
132
132
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
133
133
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
134
134
  #endif
135
+ #undef CYTHON_USE_FREELISTS
136
+ #define CYTHON_USE_FREELISTS 0
135
137
  #elif defined(PYPY_VERSION)
136
138
  #define CYTHON_COMPILING_IN_PYPY 1
137
139
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -193,6 +195,8 @@ END: Cython Metadata */
193
195
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
194
196
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
195
197
  #endif
198
+ #undef CYTHON_USE_FREELISTS
199
+ #define CYTHON_USE_FREELISTS 0
196
200
  #elif defined(CYTHON_LIMITED_API)
197
201
  #ifdef Py_LIMITED_API
198
202
  #undef __PYX_LIMITED_VERSION_HEX
@@ -254,6 +258,8 @@ END: Cython Metadata */
254
258
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
255
259
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
256
260
  #endif
261
+ #undef CYTHON_USE_FREELISTS
262
+ #define CYTHON_USE_FREELISTS 0
257
263
  #elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
258
264
  #define CYTHON_COMPILING_IN_PYPY 0
259
265
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -263,11 +269,17 @@ END: Cython Metadata */
263
269
  #ifndef CYTHON_USE_TYPE_SLOTS
264
270
  #define CYTHON_USE_TYPE_SLOTS 1
265
271
  #endif
272
+ #ifndef CYTHON_USE_TYPE_SPECS
273
+ #define CYTHON_USE_TYPE_SPECS 0
274
+ #endif
266
275
  #undef CYTHON_USE_PYTYPE_LOOKUP
267
276
  #define CYTHON_USE_PYTYPE_LOOKUP 0
268
277
  #ifndef CYTHON_USE_ASYNC_SLOTS
269
278
  #define CYTHON_USE_ASYNC_SLOTS 1
270
279
  #endif
280
+ #ifndef CYTHON_USE_PYLONG_INTERNALS
281
+ #define CYTHON_USE_PYLONG_INTERNALS 0
282
+ #endif
271
283
  #undef CYTHON_USE_PYLIST_INTERNALS
272
284
  #define CYTHON_USE_PYLIST_INTERNALS 0
273
285
  #ifndef CYTHON_USE_UNICODE_INTERNALS
@@ -275,8 +287,6 @@ END: Cython Metadata */
275
287
  #endif
276
288
  #undef CYTHON_USE_UNICODE_WRITER
277
289
  #define CYTHON_USE_UNICODE_WRITER 0
278
- #undef CYTHON_USE_PYLONG_INTERNALS
279
- #define CYTHON_USE_PYLONG_INTERNALS 0
280
290
  #ifndef CYTHON_AVOID_BORROWED_REFS
281
291
  #define CYTHON_AVOID_BORROWED_REFS 0
282
292
  #endif
@@ -288,11 +298,22 @@ END: Cython Metadata */
288
298
  #endif
289
299
  #undef CYTHON_FAST_THREAD_STATE
290
300
  #define CYTHON_FAST_THREAD_STATE 0
301
+ #undef CYTHON_FAST_GIL
302
+ #define CYTHON_FAST_GIL 0
303
+ #ifndef CYTHON_METH_FASTCALL
304
+ #define CYTHON_METH_FASTCALL 1
305
+ #endif
291
306
  #undef CYTHON_FAST_PYCALL
292
307
  #define CYTHON_FAST_PYCALL 0
308
+ #ifndef CYTHON_PEP487_INIT_SUBCLASS
309
+ #define CYTHON_PEP487_INIT_SUBCLASS 1
310
+ #endif
293
311
  #ifndef CYTHON_PEP489_MULTI_PHASE_INIT
294
312
  #define CYTHON_PEP489_MULTI_PHASE_INIT 1
295
313
  #endif
314
+ #ifndef CYTHON_USE_MODULE_STATE
315
+ #define CYTHON_USE_MODULE_STATE 0
316
+ #endif
296
317
  #ifndef CYTHON_USE_TP_FINALIZE
297
318
  #define CYTHON_USE_TP_FINALIZE 1
298
319
  #endif
@@ -300,6 +321,12 @@ END: Cython Metadata */
300
321
  #define CYTHON_USE_DICT_VERSIONS 0
301
322
  #undef CYTHON_USE_EXC_INFO_STACK
302
323
  #define CYTHON_USE_EXC_INFO_STACK 0
324
+ #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
325
+ #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
326
+ #endif
327
+ #ifndef CYTHON_USE_FREELISTS
328
+ #define CYTHON_USE_FREELISTS 0
329
+ #endif
303
330
  #else
304
331
  #define CYTHON_COMPILING_IN_PYPY 0
305
332
  #define CYTHON_COMPILING_IN_CPYTHON 1
@@ -390,6 +417,9 @@ END: Cython Metadata */
390
417
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
391
418
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
392
419
  #endif
420
+ #ifndef CYTHON_USE_FREELISTS
421
+ #define CYTHON_USE_FREELISTS 1
422
+ #endif
393
423
  #endif
394
424
  #if !defined(CYTHON_FAST_PYCCALL)
395
425
  #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
@@ -582,14 +612,14 @@ END: Cython Metadata */
582
612
  PyObject *exception_table = NULL;
583
613
  PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
584
614
  #if __PYX_LIMITED_VERSION_HEX < 0x030B0000
585
- PyObject *version_info; // borrowed
615
+ PyObject *version_info;
586
616
  PyObject *py_minor_version = NULL;
587
617
  #endif
588
618
  long minor_version = 0;
589
619
  PyObject *type, *value, *traceback;
590
620
  PyErr_Fetch(&type, &value, &traceback);
591
621
  #if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
592
- minor_version = 11; // we don't yet need to distinguish between versions > 11
622
+ minor_version = 11;
593
623
  #else
594
624
  if (!(version_info = PySys_GetObject("version_info"))) goto end;
595
625
  if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
@@ -647,7 +677,7 @@ END: Cython Metadata */
647
677
  PyObject *fv, PyObject *cell, PyObject* fn,
648
678
  PyObject *name, int fline, PyObject *lnos) {
649
679
  PyCodeObject *result;
650
- PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0); // we don't have access to __pyx_empty_bytes here
680
+ PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
651
681
  if (!empty_bytes) return NULL;
652
682
  result =
653
683
  #if PY_VERSION_HEX >= 0x030C0000
@@ -733,8 +763,13 @@ END: Cython Metadata */
733
763
  typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
734
764
  Py_ssize_t nargs, PyObject *kwnames);
735
765
  #else
736
- #define __Pyx_PyCFunctionFast _PyCFunctionFast
737
- #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
766
+ #if PY_VERSION_HEX >= 0x030d00A4
767
+ # define __Pyx_PyCFunctionFast PyCFunctionFast
768
+ # define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
769
+ #else
770
+ # define __Pyx_PyCFunctionFast _PyCFunctionFast
771
+ # define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
772
+ #endif
738
773
  #endif
739
774
  #if CYTHON_METH_FASTCALL
740
775
  #define __Pyx_METH_FASTCALL METH_FASTCALL
@@ -1086,7 +1121,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
1086
1121
  #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
1087
1122
  #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
1088
1123
  #endif
1089
- #if PY_VERSION_HEX >= 0x030d00A1
1124
+ #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
1090
1125
  #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
1091
1126
  #else
1092
1127
  static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
@@ -1173,7 +1208,7 @@ static CYTHON_INLINE float __PYX_NAN() {
1173
1208
  #endif
1174
1209
 
1175
1210
  #define __PYX_MARK_ERR_POS(f_index, lineno) \
1176
- { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1211
+ { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1177
1212
  #define __PYX_ERR(f_index, lineno, Ln_error) \
1178
1213
  { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
1179
1214
 
@@ -1288,24 +1323,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1288
1323
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1289
1324
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1290
1325
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1291
- #if CYTHON_COMPILING_IN_LIMITED_API
1292
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1293
- {
1294
- const wchar_t *u_end = u;
1295
- while (*u_end++) ;
1296
- return (size_t)(u_end - u - 1);
1297
- }
1298
- #else
1299
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1300
- {
1301
- const Py_UNICODE *u_end = u;
1302
- while (*u_end++) ;
1303
- return (size_t)(u_end - u - 1);
1304
- }
1305
- #endif
1306
1326
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1307
- #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1308
- #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1309
1327
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1310
1328
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1311
1329
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -1355,7 +1373,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1355
1373
  #endif
1356
1374
  typedef Py_ssize_t __Pyx_compact_pylong;
1357
1375
  typedef size_t __Pyx_compact_upylong;
1358
- #else // Py < 3.12
1376
+ #else
1359
1377
  #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
1360
1378
  #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
1361
1379
  #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
@@ -1645,7 +1663,7 @@ typedef struct {
1645
1663
 
1646
1664
  /* #### Code section: numeric_typedefs ### */
1647
1665
 
1648
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":732
1666
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":732
1649
1667
  * # in Cython to enable them only on the right systems.
1650
1668
  *
1651
1669
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1654,7 +1672,7 @@ typedef struct {
1654
1672
  */
1655
1673
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1656
1674
 
1657
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":733
1675
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":733
1658
1676
  *
1659
1677
  * ctypedef npy_int8 int8_t
1660
1678
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1663,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1663
1681
  */
1664
1682
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1665
1683
 
1666
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":734
1684
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":734
1667
1685
  * ctypedef npy_int8 int8_t
1668
1686
  * ctypedef npy_int16 int16_t
1669
1687
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1672,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1672
1690
  */
1673
1691
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1674
1692
 
1675
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":735
1693
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":735
1676
1694
  * ctypedef npy_int16 int16_t
1677
1695
  * ctypedef npy_int32 int32_t
1678
1696
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1681,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1681
1699
  */
1682
1700
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1683
1701
 
1684
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":739
1702
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":739
1685
1703
  * #ctypedef npy_int128 int128_t
1686
1704
  *
1687
1705
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1690,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1690
1708
  */
1691
1709
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1692
1710
 
1693
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":740
1711
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":740
1694
1712
  *
1695
1713
  * ctypedef npy_uint8 uint8_t
1696
1714
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1699,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1699
1717
  */
1700
1718
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1701
1719
 
1702
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":741
1720
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":741
1703
1721
  * ctypedef npy_uint8 uint8_t
1704
1722
  * ctypedef npy_uint16 uint16_t
1705
1723
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1708,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1708
1726
  */
1709
1727
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1710
1728
 
1711
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":742
1729
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":742
1712
1730
  * ctypedef npy_uint16 uint16_t
1713
1731
  * ctypedef npy_uint32 uint32_t
1714
1732
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1717,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1717
1735
  */
1718
1736
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1719
1737
 
1720
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":746
1738
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":746
1721
1739
  * #ctypedef npy_uint128 uint128_t
1722
1740
  *
1723
1741
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1726,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1726
1744
  */
1727
1745
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1728
1746
 
1729
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":747
1747
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":747
1730
1748
  *
1731
1749
  * ctypedef npy_float32 float32_t
1732
1750
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1735,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1735
1753
  */
1736
1754
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1737
1755
 
1738
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":756
1756
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":756
1739
1757
  * # The int types are mapped a bit surprising --
1740
1758
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1741
1759
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1744,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1744
1762
  */
1745
1763
  typedef npy_long __pyx_t_5numpy_int_t;
1746
1764
 
1747
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":757
1765
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":757
1748
1766
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1749
1767
  * ctypedef npy_long int_t
1750
1768
  * ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1753
1771
  */
1754
1772
  typedef npy_longlong __pyx_t_5numpy_long_t;
1755
1773
 
1756
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":758
1774
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":758
1757
1775
  * ctypedef npy_long int_t
1758
1776
  * ctypedef npy_longlong long_t
1759
1777
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
1762
1780
  */
1763
1781
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1764
1782
 
1765
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":760
1783
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":760
1766
1784
  * ctypedef npy_longlong longlong_t
1767
1785
  *
1768
1786
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1771,7 +1789,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1771
1789
  */
1772
1790
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1773
1791
 
1774
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":761
1792
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":761
1775
1793
  *
1776
1794
  * ctypedef npy_ulong uint_t
1777
1795
  * ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
@@ -1780,7 +1798,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1780
1798
  */
1781
1799
  typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1782
1800
 
1783
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":762
1801
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":762
1784
1802
  * ctypedef npy_ulong uint_t
1785
1803
  * ctypedef npy_ulonglong ulong_t
1786
1804
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1789,7 +1807,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1789
1807
  */
1790
1808
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1791
1809
 
1792
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":764
1810
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":764
1793
1811
  * ctypedef npy_ulonglong ulonglong_t
1794
1812
  *
1795
1813
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1798,7 +1816,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1798
1816
  */
1799
1817
  typedef npy_intp __pyx_t_5numpy_intp_t;
1800
1818
 
1801
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":765
1819
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":765
1802
1820
  *
1803
1821
  * ctypedef npy_intp intp_t
1804
1822
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1807,7 +1825,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1807
1825
  */
1808
1826
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1809
1827
 
1810
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":767
1828
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":767
1811
1829
  * ctypedef npy_uintp uintp_t
1812
1830
  *
1813
1831
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1816,7 +1834,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1816
1834
  */
1817
1835
  typedef npy_double __pyx_t_5numpy_float_t;
1818
1836
 
1819
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":768
1837
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":768
1820
1838
  *
1821
1839
  * ctypedef npy_double float_t
1822
1840
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1825,7 +1843,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1825
1843
  */
1826
1844
  typedef npy_double __pyx_t_5numpy_double_t;
1827
1845
 
1828
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":769
1846
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":769
1829
1847
  * ctypedef npy_double float_t
1830
1848
  * ctypedef npy_double double_t
1831
1849
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1938,7 +1956,7 @@ struct __pyx_MemviewEnum_obj;
1938
1956
  struct __pyx_memoryview_obj;
1939
1957
  struct __pyx_memoryviewslice_obj;
1940
1958
 
1941
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":771
1959
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":771
1942
1960
  * ctypedef npy_longdouble longdouble_t
1943
1961
  *
1944
1962
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1947,7 +1965,7 @@ struct __pyx_memoryviewslice_obj;
1947
1965
  */
1948
1966
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1949
1967
 
1950
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":772
1968
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":772
1951
1969
  *
1952
1970
  * ctypedef npy_cfloat cfloat_t
1953
1971
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1956,7 +1974,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1956
1974
  */
1957
1975
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1958
1976
 
1959
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":773
1977
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":773
1960
1978
  * ctypedef npy_cfloat cfloat_t
1961
1979
  * ctypedef npy_cdouble cdouble_t
1962
1980
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1965,7 +1983,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1965
1983
  */
1966
1984
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1967
1985
 
1968
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":775
1986
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":775
1969
1987
  * ctypedef npy_clongdouble clongdouble_t
1970
1988
  *
1971
1989
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2271,8 +2289,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2271
2289
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2272
2290
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2273
2291
  #else
2274
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2275
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2292
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2293
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2276
2294
  #endif
2277
2295
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2278
2296
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2288,8 +2306,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2288
2306
  #else
2289
2307
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2290
2308
  #endif
2291
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2292
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2309
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2310
+ to have the same reference counting */
2311
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2293
2312
  #else
2294
2313
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2295
2314
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2756,22 +2775,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2756
2775
  #endif
2757
2776
 
2758
2777
  /* TypeImport.proto */
2759
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2760
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2778
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2779
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2761
2780
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2762
2781
  #include <stdalign.h>
2763
2782
  #endif
2764
2783
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2765
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2784
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2766
2785
  #else
2767
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2786
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2768
2787
  #endif
2769
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2770
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2771
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2772
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2788
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2789
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2790
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2791
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2773
2792
  };
2774
- 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);
2793
+ 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);
2775
2794
  #endif
2776
2795
 
2777
2796
  /* FetchSharedCythonModule.proto */
@@ -2864,7 +2883,7 @@ typedef struct {
2864
2883
  #endif
2865
2884
  void *defaults;
2866
2885
  int defaults_pyobjects;
2867
- size_t defaults_size; // used by FusedFunction for copying defaults
2886
+ size_t defaults_size;
2868
2887
  int flags;
2869
2888
  PyObject *defaults_tuple;
2870
2889
  PyObject *defaults_kwdict;
@@ -18239,7 +18258,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18239
18258
  return __pyx_r;
18240
18259
  }
18241
18260
 
18242
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":246
18261
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":246
18243
18262
  *
18244
18263
  * @property
18245
18264
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18250,7 +18269,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18250
18269
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
18251
18270
  PyObject *__pyx_r;
18252
18271
 
18253
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":249
18272
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":249
18254
18273
  * """Returns a borrowed reference to the object owning the data/memory.
18255
18274
  * """
18256
18275
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -18260,7 +18279,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18260
18279
  __pyx_r = PyArray_BASE(__pyx_v_self);
18261
18280
  goto __pyx_L0;
18262
18281
 
18263
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":246
18282
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":246
18264
18283
  *
18265
18284
  * @property
18266
18285
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18273,7 +18292,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18273
18292
  return __pyx_r;
18274
18293
  }
18275
18294
 
18276
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":252
18295
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":252
18277
18296
  *
18278
18297
  * @property
18279
18298
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18287,7 +18306,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18287
18306
  PyArray_Descr *__pyx_t_1;
18288
18307
  __Pyx_RefNannySetupContext("descr", 1);
18289
18308
 
18290
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":255
18309
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":255
18291
18310
  * """Returns an owned reference to the dtype of the array.
18292
18311
  * """
18293
18312
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -18300,7 +18319,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18300
18319
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
18301
18320
  goto __pyx_L0;
18302
18321
 
18303
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":252
18322
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":252
18304
18323
  *
18305
18324
  * @property
18306
18325
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18315,7 +18334,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18315
18334
  return __pyx_r;
18316
18335
  }
18317
18336
 
18318
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":258
18337
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":258
18319
18338
  *
18320
18339
  * @property
18321
18340
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18326,7 +18345,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18326
18345
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
18327
18346
  int __pyx_r;
18328
18347
 
18329
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":261
18348
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":261
18330
18349
  * """Returns the number of dimensions in the array.
18331
18350
  * """
18332
18351
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -18336,7 +18355,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18336
18355
  __pyx_r = PyArray_NDIM(__pyx_v_self);
18337
18356
  goto __pyx_L0;
18338
18357
 
18339
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":258
18358
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":258
18340
18359
  *
18341
18360
  * @property
18342
18361
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18349,7 +18368,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18349
18368
  return __pyx_r;
18350
18369
  }
18351
18370
 
18352
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":264
18371
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":264
18353
18372
  *
18354
18373
  * @property
18355
18374
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18360,7 +18379,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18360
18379
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
18361
18380
  npy_intp *__pyx_r;
18362
18381
 
18363
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":269
18382
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":269
18364
18383
  * Can return NULL for 0-dimensional arrays.
18365
18384
  * """
18366
18385
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -18370,7 +18389,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18370
18389
  __pyx_r = PyArray_DIMS(__pyx_v_self);
18371
18390
  goto __pyx_L0;
18372
18391
 
18373
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":264
18392
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":264
18374
18393
  *
18375
18394
  * @property
18376
18395
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18383,7 +18402,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18383
18402
  return __pyx_r;
18384
18403
  }
18385
18404
 
18386
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":272
18405
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":272
18387
18406
  *
18388
18407
  * @property
18389
18408
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18394,7 +18413,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18394
18413
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
18395
18414
  npy_intp *__pyx_r;
18396
18415
 
18397
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":276
18416
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":276
18398
18417
  * The number of elements matches the number of dimensions of the array (ndim).
18399
18418
  * """
18400
18419
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -18404,7 +18423,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18404
18423
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
18405
18424
  goto __pyx_L0;
18406
18425
 
18407
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":272
18426
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":272
18408
18427
  *
18409
18428
  * @property
18410
18429
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18417,7 +18436,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18417
18436
  return __pyx_r;
18418
18437
  }
18419
18438
 
18420
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":279
18439
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":279
18421
18440
  *
18422
18441
  * @property
18423
18442
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18428,7 +18447,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18428
18447
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
18429
18448
  npy_intp __pyx_r;
18430
18449
 
18431
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":282
18450
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":282
18432
18451
  * """Returns the total size (in number of elements) of the array.
18433
18452
  * """
18434
18453
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -18438,7 +18457,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18438
18457
  __pyx_r = PyArray_SIZE(__pyx_v_self);
18439
18458
  goto __pyx_L0;
18440
18459
 
18441
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":279
18460
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":279
18442
18461
  *
18443
18462
  * @property
18444
18463
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18451,7 +18470,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18451
18470
  return __pyx_r;
18452
18471
  }
18453
18472
 
18454
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":285
18473
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":285
18455
18474
  *
18456
18475
  * @property
18457
18476
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18462,7 +18481,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18462
18481
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
18463
18482
  char *__pyx_r;
18464
18483
 
18465
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":291
18484
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":291
18466
18485
  * of `PyArray_DATA()` instead, which returns a 'void*'.
18467
18486
  * """
18468
18487
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -18472,7 +18491,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18472
18491
  __pyx_r = PyArray_BYTES(__pyx_v_self);
18473
18492
  goto __pyx_L0;
18474
18493
 
18475
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":285
18494
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":285
18476
18495
  *
18477
18496
  * @property
18478
18497
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18485,7 +18504,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18485
18504
  return __pyx_r;
18486
18505
  }
18487
18506
 
18488
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":777
18507
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":777
18489
18508
  * ctypedef npy_cdouble complex_t
18490
18509
  *
18491
18510
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18502,7 +18521,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18502
18521
  int __pyx_clineno = 0;
18503
18522
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
18504
18523
 
18505
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":778
18524
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":778
18506
18525
  *
18507
18526
  * cdef inline object PyArray_MultiIterNew1(a):
18508
18527
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -18516,7 +18535,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18516
18535
  __pyx_t_1 = 0;
18517
18536
  goto __pyx_L0;
18518
18537
 
18519
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":777
18538
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":777
18520
18539
  * ctypedef npy_cdouble complex_t
18521
18540
  *
18522
18541
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18535,7 +18554,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18535
18554
  return __pyx_r;
18536
18555
  }
18537
18556
 
18538
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":780
18557
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":780
18539
18558
  * return PyArray_MultiIterNew(1, <void*>a)
18540
18559
  *
18541
18560
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18552,7 +18571,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18552
18571
  int __pyx_clineno = 0;
18553
18572
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
18554
18573
 
18555
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":781
18574
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":781
18556
18575
  *
18557
18576
  * cdef inline object PyArray_MultiIterNew2(a, b):
18558
18577
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -18566,7 +18585,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18566
18585
  __pyx_t_1 = 0;
18567
18586
  goto __pyx_L0;
18568
18587
 
18569
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":780
18588
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":780
18570
18589
  * return PyArray_MultiIterNew(1, <void*>a)
18571
18590
  *
18572
18591
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18585,7 +18604,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18585
18604
  return __pyx_r;
18586
18605
  }
18587
18606
 
18588
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":783
18607
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":783
18589
18608
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18590
18609
  *
18591
18610
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18602,7 +18621,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18602
18621
  int __pyx_clineno = 0;
18603
18622
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
18604
18623
 
18605
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":784
18624
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":784
18606
18625
  *
18607
18626
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
18608
18627
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -18616,7 +18635,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18616
18635
  __pyx_t_1 = 0;
18617
18636
  goto __pyx_L0;
18618
18637
 
18619
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":783
18638
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":783
18620
18639
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18621
18640
  *
18622
18641
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18635,7 +18654,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18635
18654
  return __pyx_r;
18636
18655
  }
18637
18656
 
18638
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":786
18657
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":786
18639
18658
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18640
18659
  *
18641
18660
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18652,7 +18671,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18652
18671
  int __pyx_clineno = 0;
18653
18672
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
18654
18673
 
18655
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":787
18674
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":787
18656
18675
  *
18657
18676
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
18658
18677
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -18666,7 +18685,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18666
18685
  __pyx_t_1 = 0;
18667
18686
  goto __pyx_L0;
18668
18687
 
18669
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":786
18688
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":786
18670
18689
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18671
18690
  *
18672
18691
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18685,7 +18704,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18685
18704
  return __pyx_r;
18686
18705
  }
18687
18706
 
18688
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":789
18707
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":789
18689
18708
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18690
18709
  *
18691
18710
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18702,7 +18721,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18702
18721
  int __pyx_clineno = 0;
18703
18722
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
18704
18723
 
18705
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":790
18724
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":790
18706
18725
  *
18707
18726
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
18708
18727
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -18716,7 +18735,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18716
18735
  __pyx_t_1 = 0;
18717
18736
  goto __pyx_L0;
18718
18737
 
18719
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":789
18738
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":789
18720
18739
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18721
18740
  *
18722
18741
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18735,7 +18754,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18735
18754
  return __pyx_r;
18736
18755
  }
18737
18756
 
18738
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":792
18757
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":792
18739
18758
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18740
18759
  *
18741
18760
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18749,7 +18768,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18749
18768
  int __pyx_t_1;
18750
18769
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
18751
18770
 
18752
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":793
18771
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":793
18753
18772
  *
18754
18773
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18755
18774
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18759,7 +18778,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18759
18778
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
18760
18779
  if (__pyx_t_1) {
18761
18780
 
18762
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":794
18781
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":794
18763
18782
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18764
18783
  * if PyDataType_HASSUBARRAY(d):
18765
18784
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -18771,7 +18790,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18771
18790
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
18772
18791
  goto __pyx_L0;
18773
18792
 
18774
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":793
18793
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":793
18775
18794
  *
18776
18795
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18777
18796
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18780,7 +18799,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18780
18799
  */
18781
18800
  }
18782
18801
 
18783
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":796
18802
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":796
18784
18803
  * return <tuple>d.subarray.shape
18785
18804
  * else:
18786
18805
  * return () # <<<<<<<<<<<<<<
@@ -18794,7 +18813,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18794
18813
  goto __pyx_L0;
18795
18814
  }
18796
18815
 
18797
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":792
18816
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":792
18798
18817
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18799
18818
  *
18800
18819
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18809,7 +18828,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18809
18828
  return __pyx_r;
18810
18829
  }
18811
18830
 
18812
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":971
18831
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":971
18813
18832
  * int _import_umath() except -1
18814
18833
  *
18815
18834
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -18819,7 +18838,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18819
18838
 
18820
18839
  static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
18821
18840
 
18822
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":972
18841
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":972
18823
18842
  *
18824
18843
  * cdef inline void set_array_base(ndarray arr, object base):
18825
18844
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -18828,7 +18847,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18828
18847
  */
18829
18848
  Py_INCREF(__pyx_v_base);
18830
18849
 
18831
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":973
18850
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":973
18832
18851
  * cdef inline void set_array_base(ndarray arr, object base):
18833
18852
  * Py_INCREF(base) # important to do this before stealing the reference below!
18834
18853
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -18837,7 +18856,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18837
18856
  */
18838
18857
  (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
18839
18858
 
18840
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":971
18859
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":971
18841
18860
  * int _import_umath() except -1
18842
18861
  *
18843
18862
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -18848,7 +18867,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18848
18867
  /* function exit code */
18849
18868
  }
18850
18869
 
18851
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":975
18870
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":975
18852
18871
  * PyArray_SetBaseObject(arr, base)
18853
18872
  *
18854
18873
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -18863,7 +18882,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18863
18882
  int __pyx_t_1;
18864
18883
  __Pyx_RefNannySetupContext("get_array_base", 1);
18865
18884
 
18866
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":976
18885
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":976
18867
18886
  *
18868
18887
  * cdef inline object get_array_base(ndarray arr):
18869
18888
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -18872,7 +18891,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18872
18891
  */
18873
18892
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
18874
18893
 
18875
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":977
18894
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":977
18876
18895
  * cdef inline object get_array_base(ndarray arr):
18877
18896
  * base = PyArray_BASE(arr)
18878
18897
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -18882,7 +18901,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18882
18901
  __pyx_t_1 = (__pyx_v_base == NULL);
18883
18902
  if (__pyx_t_1) {
18884
18903
 
18885
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":978
18904
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":978
18886
18905
  * base = PyArray_BASE(arr)
18887
18906
  * if base is NULL:
18888
18907
  * return None # <<<<<<<<<<<<<<
@@ -18893,7 +18912,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18893
18912
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
18894
18913
  goto __pyx_L0;
18895
18914
 
18896
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":977
18915
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":977
18897
18916
  * cdef inline object get_array_base(ndarray arr):
18898
18917
  * base = PyArray_BASE(arr)
18899
18918
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -18902,7 +18921,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18902
18921
  */
18903
18922
  }
18904
18923
 
18905
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":979
18924
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":979
18906
18925
  * if base is NULL:
18907
18926
  * return None
18908
18927
  * return <object>base # <<<<<<<<<<<<<<
@@ -18914,7 +18933,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18914
18933
  __pyx_r = ((PyObject *)__pyx_v_base);
18915
18934
  goto __pyx_L0;
18916
18935
 
18917
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":975
18936
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":975
18918
18937
  * PyArray_SetBaseObject(arr, base)
18919
18938
  *
18920
18939
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -18929,7 +18948,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18929
18948
  return __pyx_r;
18930
18949
  }
18931
18950
 
18932
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":983
18951
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":983
18933
18952
  * # Versions of the import_* functions which are more suitable for
18934
18953
  * # Cython code.
18935
18954
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -18953,7 +18972,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18953
18972
  int __pyx_clineno = 0;
18954
18973
  __Pyx_RefNannySetupContext("import_array", 1);
18955
18974
 
18956
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
18975
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
18957
18976
  * # Cython code.
18958
18977
  * cdef inline int import_array() except -1:
18959
18978
  * try: # <<<<<<<<<<<<<<
@@ -18969,7 +18988,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18969
18988
  __Pyx_XGOTREF(__pyx_t_3);
18970
18989
  /*try:*/ {
18971
18990
 
18972
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":985
18991
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":985
18973
18992
  * cdef inline int import_array() except -1:
18974
18993
  * try:
18975
18994
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -18978,7 +18997,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18978
18997
  */
18979
18998
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 985, __pyx_L3_error)
18980
18999
 
18981
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
19000
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
18982
19001
  * # Cython code.
18983
19002
  * cdef inline int import_array() except -1:
18984
19003
  * try: # <<<<<<<<<<<<<<
@@ -18992,7 +19011,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18992
19011
  goto __pyx_L8_try_end;
18993
19012
  __pyx_L3_error:;
18994
19013
 
18995
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":986
19014
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":986
18996
19015
  * try:
18997
19016
  * __pyx_import_array()
18998
19017
  * except Exception: # <<<<<<<<<<<<<<
@@ -19007,7 +19026,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19007
19026
  __Pyx_XGOTREF(__pyx_t_6);
19008
19027
  __Pyx_XGOTREF(__pyx_t_7);
19009
19028
 
19010
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
19029
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
19011
19030
  * __pyx_import_array()
19012
19031
  * except Exception:
19013
19032
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -19022,7 +19041,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19022
19041
  }
19023
19042
  goto __pyx_L5_except_error;
19024
19043
 
19025
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
19044
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
19026
19045
  * # Cython code.
19027
19046
  * cdef inline int import_array() except -1:
19028
19047
  * try: # <<<<<<<<<<<<<<
@@ -19038,7 +19057,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19038
19057
  __pyx_L8_try_end:;
19039
19058
  }
19040
19059
 
19041
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":983
19060
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":983
19042
19061
  * # Versions of the import_* functions which are more suitable for
19043
19062
  * # Cython code.
19044
19063
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19061,7 +19080,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19061
19080
  return __pyx_r;
19062
19081
  }
19063
19082
 
19064
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":989
19083
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":989
19065
19084
  * raise ImportError("numpy.core.multiarray failed to import")
19066
19085
  *
19067
19086
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19085,7 +19104,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19085
19104
  int __pyx_clineno = 0;
19086
19105
  __Pyx_RefNannySetupContext("import_umath", 1);
19087
19106
 
19088
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
19107
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
19089
19108
  *
19090
19109
  * cdef inline int import_umath() except -1:
19091
19110
  * try: # <<<<<<<<<<<<<<
@@ -19101,7 +19120,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19101
19120
  __Pyx_XGOTREF(__pyx_t_3);
19102
19121
  /*try:*/ {
19103
19122
 
19104
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":991
19123
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":991
19105
19124
  * cdef inline int import_umath() except -1:
19106
19125
  * try:
19107
19126
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19110,7 +19129,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19110
19129
  */
19111
19130
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 991, __pyx_L3_error)
19112
19131
 
19113
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
19132
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
19114
19133
  *
19115
19134
  * cdef inline int import_umath() except -1:
19116
19135
  * try: # <<<<<<<<<<<<<<
@@ -19124,7 +19143,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19124
19143
  goto __pyx_L8_try_end;
19125
19144
  __pyx_L3_error:;
19126
19145
 
19127
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":992
19146
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":992
19128
19147
  * try:
19129
19148
  * _import_umath()
19130
19149
  * except Exception: # <<<<<<<<<<<<<<
@@ -19139,7 +19158,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19139
19158
  __Pyx_XGOTREF(__pyx_t_6);
19140
19159
  __Pyx_XGOTREF(__pyx_t_7);
19141
19160
 
19142
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
19161
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
19143
19162
  * _import_umath()
19144
19163
  * except Exception:
19145
19164
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19154,7 +19173,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19154
19173
  }
19155
19174
  goto __pyx_L5_except_error;
19156
19175
 
19157
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
19176
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
19158
19177
  *
19159
19178
  * cdef inline int import_umath() except -1:
19160
19179
  * try: # <<<<<<<<<<<<<<
@@ -19170,7 +19189,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19170
19189
  __pyx_L8_try_end:;
19171
19190
  }
19172
19191
 
19173
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":989
19192
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":989
19174
19193
  * raise ImportError("numpy.core.multiarray failed to import")
19175
19194
  *
19176
19195
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19193,7 +19212,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19193
19212
  return __pyx_r;
19194
19213
  }
19195
19214
 
19196
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":995
19215
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":995
19197
19216
  * raise ImportError("numpy.core.umath failed to import")
19198
19217
  *
19199
19218
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19217,7 +19236,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19217
19236
  int __pyx_clineno = 0;
19218
19237
  __Pyx_RefNannySetupContext("import_ufunc", 1);
19219
19238
 
19220
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":996
19239
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":996
19221
19240
  *
19222
19241
  * cdef inline int import_ufunc() except -1:
19223
19242
  * try: # <<<<<<<<<<<<<<
@@ -19233,7 +19252,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19233
19252
  __Pyx_XGOTREF(__pyx_t_3);
19234
19253
  /*try:*/ {
19235
19254
 
19236
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":997
19255
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":997
19237
19256
  * cdef inline int import_ufunc() except -1:
19238
19257
  * try:
19239
19258
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19242,7 +19261,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19242
19261
  */
19243
19262
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 997, __pyx_L3_error)
19244
19263
 
19245
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":996
19264
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":996
19246
19265
  *
19247
19266
  * cdef inline int import_ufunc() except -1:
19248
19267
  * try: # <<<<<<<<<<<<<<
@@ -19256,7 +19275,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19256
19275
  goto __pyx_L8_try_end;
19257
19276
  __pyx_L3_error:;
19258
19277
 
19259
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":998
19278
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":998
19260
19279
  * try:
19261
19280
  * _import_umath()
19262
19281
  * except Exception: # <<<<<<<<<<<<<<
@@ -19271,7 +19290,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19271
19290
  __Pyx_XGOTREF(__pyx_t_6);
19272
19291
  __Pyx_XGOTREF(__pyx_t_7);
19273
19292
 
19274
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":999
19293
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":999
19275
19294
  * _import_umath()
19276
19295
  * except Exception:
19277
19296
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19286,7 +19305,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19286
19305
  }
19287
19306
  goto __pyx_L5_except_error;
19288
19307
 
19289
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":996
19308
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":996
19290
19309
  *
19291
19310
  * cdef inline int import_ufunc() except -1:
19292
19311
  * try: # <<<<<<<<<<<<<<
@@ -19302,7 +19321,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19302
19321
  __pyx_L8_try_end:;
19303
19322
  }
19304
19323
 
19305
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":995
19324
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":995
19306
19325
  * raise ImportError("numpy.core.umath failed to import")
19307
19326
  *
19308
19327
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19325,7 +19344,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19325
19344
  return __pyx_r;
19326
19345
  }
19327
19346
 
19328
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1002
19347
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1002
19329
19348
  *
19330
19349
  *
19331
19350
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19336,7 +19355,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19336
19355
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
19337
19356
  int __pyx_r;
19338
19357
 
19339
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1014
19358
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1014
19340
19359
  * bool
19341
19360
  * """
19342
19361
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -19346,7 +19365,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19346
19365
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
19347
19366
  goto __pyx_L0;
19348
19367
 
19349
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1002
19368
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1002
19350
19369
  *
19351
19370
  *
19352
19371
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19359,7 +19378,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19359
19378
  return __pyx_r;
19360
19379
  }
19361
19380
 
19362
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1017
19381
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1017
19363
19382
  *
19364
19383
  *
19365
19384
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19370,7 +19389,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19370
19389
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
19371
19390
  int __pyx_r;
19372
19391
 
19373
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1029
19392
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1029
19374
19393
  * bool
19375
19394
  * """
19376
19395
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -19380,7 +19399,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19380
19399
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
19381
19400
  goto __pyx_L0;
19382
19401
 
19383
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1017
19402
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1017
19384
19403
  *
19385
19404
  *
19386
19405
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19393,7 +19412,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19393
19412
  return __pyx_r;
19394
19413
  }
19395
19414
 
19396
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1032
19415
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1032
19397
19416
  *
19398
19417
  *
19399
19418
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19404,7 +19423,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19404
19423
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
19405
19424
  npy_datetime __pyx_r;
19406
19425
 
19407
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1039
19426
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1039
19408
19427
  * also needed. That can be found using `get_datetime64_unit`.
19409
19428
  * """
19410
19429
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19414,7 +19433,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19414
19433
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
19415
19434
  goto __pyx_L0;
19416
19435
 
19417
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1032
19436
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1032
19418
19437
  *
19419
19438
  *
19420
19439
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19427,7 +19446,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19427
19446
  return __pyx_r;
19428
19447
  }
19429
19448
 
19430
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1042
19449
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1042
19431
19450
  *
19432
19451
  *
19433
19452
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19438,7 +19457,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19438
19457
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
19439
19458
  npy_timedelta __pyx_r;
19440
19459
 
19441
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1046
19460
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1046
19442
19461
  * returns the int64 value underlying scalar numpy timedelta64 object
19443
19462
  * """
19444
19463
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19448,7 +19467,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19448
19467
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
19449
19468
  goto __pyx_L0;
19450
19469
 
19451
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1042
19470
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1042
19452
19471
  *
19453
19472
  *
19454
19473
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19461,7 +19480,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19461
19480
  return __pyx_r;
19462
19481
  }
19463
19482
 
19464
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1049
19483
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1049
19465
19484
  *
19466
19485
  *
19467
19486
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19472,7 +19491,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19472
19491
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
19473
19492
  NPY_DATETIMEUNIT __pyx_r;
19474
19493
 
19475
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1053
19494
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1053
19476
19495
  * returns the unit part of the dtype for a numpy datetime64 object.
19477
19496
  * """
19478
19497
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -19480,7 +19499,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
19480
19499
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
19481
19500
  goto __pyx_L0;
19482
19501
 
19483
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1049
19502
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1049
19484
19503
  *
19485
19504
  *
19486
19505
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -24919,7 +24938,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
24919
24938
  __Pyx_GOTREF(__pyx_tuple__8);
24920
24939
  __Pyx_GIVEREF(__pyx_tuple__8);
24921
24940
 
24922
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
24941
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
24923
24942
  * __pyx_import_array()
24924
24943
  * except Exception:
24925
24944
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -24930,7 +24949,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
24930
24949
  __Pyx_GOTREF(__pyx_tuple__9);
24931
24950
  __Pyx_GIVEREF(__pyx_tuple__9);
24932
24951
 
24933
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
24952
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
24934
24953
  * _import_umath()
24935
24954
  * except Exception:
24936
24955
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -25369,33 +25388,33 @@ static int __Pyx_modinit_type_import_code(void) {
25369
25388
  /*--- Type import code ---*/
25370
25389
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
25371
25390
  __Pyx_GOTREF(__pyx_t_1);
25372
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
25391
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
25373
25392
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
25374
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
25393
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
25375
25394
  #elif CYTHON_COMPILING_IN_LIMITED_API
25376
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
25395
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
25377
25396
  #else
25378
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
25397
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
25379
25398
  #endif
25380
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
25399
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
25381
25400
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
25382
25401
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 203, __pyx_L1_error)
25383
25402
  __Pyx_GOTREF(__pyx_t_1);
25384
- __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, 203, __pyx_L1_error)
25385
- __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, 226, __pyx_L1_error)
25386
- __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, 230, __pyx_L1_error)
25387
- __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, 239, __pyx_L1_error)
25388
- __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, 813, __pyx_L1_error)
25389
- __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, 815, __pyx_L1_error)
25390
- __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, 817, __pyx_L1_error)
25391
- __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, 819, __pyx_L1_error)
25392
- __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, 821, __pyx_L1_error)
25393
- __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, 823, __pyx_L1_error)
25394
- __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, 825, __pyx_L1_error)
25395
- __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, 827, __pyx_L1_error)
25396
- __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, 829, __pyx_L1_error)
25397
- __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, 831, __pyx_L1_error)
25398
- __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, 869, __pyx_L1_error)
25403
+ __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, 203, __pyx_L1_error)
25404
+ __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, 226, __pyx_L1_error)
25405
+ __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, 230, __pyx_L1_error)
25406
+ __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, 239, __pyx_L1_error)
25407
+ __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, 813, __pyx_L1_error)
25408
+ __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, 815, __pyx_L1_error)
25409
+ __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, 817, __pyx_L1_error)
25410
+ __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, 819, __pyx_L1_error)
25411
+ __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, 821, __pyx_L1_error)
25412
+ __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, 823, __pyx_L1_error)
25413
+ __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, 825, __pyx_L1_error)
25414
+ __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, 827, __pyx_L1_error)
25415
+ __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, 829, __pyx_L1_error)
25416
+ __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, 831, __pyx_L1_error)
25417
+ __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, 869, __pyx_L1_error)
25399
25418
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
25400
25419
  __Pyx_RefNannyFinishContext();
25401
25420
  return 0;
@@ -26760,11 +26779,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
26760
26779
  {
26761
26780
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
26762
26781
  if (unlikely(eq != 0)) {
26763
- if (unlikely(eq < 0)) return NULL; // error
26782
+ if (unlikely(eq < 0)) return NULL;
26764
26783
  return kwvalues[i];
26765
26784
  }
26766
26785
  }
26767
- return NULL; // not found (no exception set)
26786
+ return NULL;
26768
26787
  }
26769
26788
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
26770
26789
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -26877,7 +26896,7 @@ static int __Pyx_ParseOptionalKeywords(
26877
26896
  if (*name) {
26878
26897
  values[name-argnames] = value;
26879
26898
  #if CYTHON_AVOID_BORROWED_REFS
26880
- Py_INCREF(value); // transfer ownership of value to values
26899
+ Py_INCREF(value);
26881
26900
  Py_DECREF(key);
26882
26901
  #endif
26883
26902
  key = NULL;
@@ -26896,7 +26915,7 @@ static int __Pyx_ParseOptionalKeywords(
26896
26915
  && _PyString_Eq(**name, key)) {
26897
26916
  values[name-argnames] = value;
26898
26917
  #if CYTHON_AVOID_BORROWED_REFS
26899
- value = NULL; // ownership transferred to values
26918
+ value = NULL;
26900
26919
  #endif
26901
26920
  break;
26902
26921
  }
@@ -26928,7 +26947,7 @@ static int __Pyx_ParseOptionalKeywords(
26928
26947
  if (cmp == 0) {
26929
26948
  values[name-argnames] = value;
26930
26949
  #if CYTHON_AVOID_BORROWED_REFS
26931
- value = NULL; // ownership transferred to values
26950
+ value = NULL;
26932
26951
  #endif
26933
26952
  break;
26934
26953
  }
@@ -29546,10 +29565,10 @@ __PYX_GOOD:
29546
29565
  #endif
29547
29566
 
29548
29567
  /* TypeImport */
29549
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
29550
- #define __PYX_HAVE_RT_ImportType_3_0_7
29551
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
29552
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
29568
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
29569
+ #define __PYX_HAVE_RT_ImportType_3_0_10
29570
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
29571
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
29553
29572
  {
29554
29573
  PyObject *result = 0;
29555
29574
  char warning[200];
@@ -29603,7 +29622,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
29603
29622
  module_name, class_name, size, basicsize+itemsize);
29604
29623
  goto bad;
29605
29624
  }
29606
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
29625
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
29607
29626
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
29608
29627
  PyErr_Format(PyExc_ValueError,
29609
29628
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -29611,7 +29630,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
29611
29630
  module_name, class_name, size, basicsize, basicsize+itemsize);
29612
29631
  goto bad;
29613
29632
  }
29614
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
29633
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
29615
29634
  PyOS_snprintf(warning, sizeof(warning),
29616
29635
  "%s.%s size changed, may indicate binary incompatibility. "
29617
29636
  "Expected %zd from C header, got %zd from PyObject",
@@ -30611,7 +30630,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
30611
30630
  default:
30612
30631
  return NULL;
30613
30632
  }
30614
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
30633
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
30615
30634
  }
30616
30635
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
30617
30636
  {
@@ -31070,7 +31089,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
31070
31089
  #else
31071
31090
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
31072
31091
  #endif
31073
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
31092
+ Py_XDECREF(py_funcname);
31074
31093
  return py_code;
31075
31094
  bad:
31076
31095
  Py_XDECREF(py_funcname);