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 # <<<<<<<<<<<<<<
@@ -1866,7 +1884,7 @@ struct __pyx_MemviewEnum_obj;
1866
1884
  struct __pyx_memoryview_obj;
1867
1885
  struct __pyx_memoryviewslice_obj;
1868
1886
 
1869
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":771
1887
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":771
1870
1888
  * ctypedef npy_longdouble longdouble_t
1871
1889
  *
1872
1890
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1875,7 +1893,7 @@ struct __pyx_memoryviewslice_obj;
1875
1893
  */
1876
1894
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1877
1895
 
1878
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":772
1896
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":772
1879
1897
  *
1880
1898
  * ctypedef npy_cfloat cfloat_t
1881
1899
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1884,7 +1902,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1884
1902
  */
1885
1903
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1886
1904
 
1887
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":773
1905
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":773
1888
1906
  * ctypedef npy_cfloat cfloat_t
1889
1907
  * ctypedef npy_cdouble cdouble_t
1890
1908
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1893,7 +1911,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1893
1911
  */
1894
1912
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1895
1913
 
1896
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":775
1914
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":775
1897
1915
  * ctypedef npy_clongdouble clongdouble_t
1898
1916
  *
1899
1917
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2243,8 +2261,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2243
2261
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2244
2262
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2245
2263
  #else
2246
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2247
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2264
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2265
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2248
2266
  #endif
2249
2267
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2250
2268
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2260,8 +2278,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2260
2278
  #else
2261
2279
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2262
2280
  #endif
2263
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2264
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2281
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2282
+ to have the same reference counting */
2283
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2265
2284
  #else
2266
2285
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2267
2286
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2748,22 +2767,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2748
2767
  #endif
2749
2768
 
2750
2769
  /* TypeImport.proto */
2751
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2752
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2770
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2771
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2753
2772
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2754
2773
  #include <stdalign.h>
2755
2774
  #endif
2756
2775
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2757
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2776
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2758
2777
  #else
2759
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2778
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2760
2779
  #endif
2761
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2762
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2763
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2764
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2780
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2781
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2782
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2783
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2765
2784
  };
2766
- 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);
2785
+ 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);
2767
2786
  #endif
2768
2787
 
2769
2788
  /* CLineInTraceback.proto */
@@ -17816,7 +17835,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
17816
17835
  return __pyx_r;
17817
17836
  }
17818
17837
 
17819
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":246
17838
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":246
17820
17839
  *
17821
17840
  * @property
17822
17841
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -17827,7 +17846,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
17827
17846
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
17828
17847
  PyObject *__pyx_r;
17829
17848
 
17830
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":249
17849
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":249
17831
17850
  * """Returns a borrowed reference to the object owning the data/memory.
17832
17851
  * """
17833
17852
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -17837,7 +17856,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
17837
17856
  __pyx_r = PyArray_BASE(__pyx_v_self);
17838
17857
  goto __pyx_L0;
17839
17858
 
17840
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":246
17859
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":246
17841
17860
  *
17842
17861
  * @property
17843
17862
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -17850,7 +17869,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
17850
17869
  return __pyx_r;
17851
17870
  }
17852
17871
 
17853
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":252
17872
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":252
17854
17873
  *
17855
17874
  * @property
17856
17875
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -17864,7 +17883,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
17864
17883
  PyArray_Descr *__pyx_t_1;
17865
17884
  __Pyx_RefNannySetupContext("descr", 1);
17866
17885
 
17867
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":255
17886
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":255
17868
17887
  * """Returns an owned reference to the dtype of the array.
17869
17888
  * """
17870
17889
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -17877,7 +17896,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
17877
17896
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
17878
17897
  goto __pyx_L0;
17879
17898
 
17880
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":252
17899
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":252
17881
17900
  *
17882
17901
  * @property
17883
17902
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -17892,7 +17911,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
17892
17911
  return __pyx_r;
17893
17912
  }
17894
17913
 
17895
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":258
17914
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":258
17896
17915
  *
17897
17916
  * @property
17898
17917
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -17903,7 +17922,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
17903
17922
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
17904
17923
  int __pyx_r;
17905
17924
 
17906
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":261
17925
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":261
17907
17926
  * """Returns the number of dimensions in the array.
17908
17927
  * """
17909
17928
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -17913,7 +17932,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
17913
17932
  __pyx_r = PyArray_NDIM(__pyx_v_self);
17914
17933
  goto __pyx_L0;
17915
17934
 
17916
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":258
17935
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":258
17917
17936
  *
17918
17937
  * @property
17919
17938
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -17926,7 +17945,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
17926
17945
  return __pyx_r;
17927
17946
  }
17928
17947
 
17929
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":264
17948
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":264
17930
17949
  *
17931
17950
  * @property
17932
17951
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -17937,7 +17956,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
17937
17956
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
17938
17957
  npy_intp *__pyx_r;
17939
17958
 
17940
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":269
17959
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":269
17941
17960
  * Can return NULL for 0-dimensional arrays.
17942
17961
  * """
17943
17962
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -17947,7 +17966,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
17947
17966
  __pyx_r = PyArray_DIMS(__pyx_v_self);
17948
17967
  goto __pyx_L0;
17949
17968
 
17950
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":264
17969
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":264
17951
17970
  *
17952
17971
  * @property
17953
17972
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -17960,7 +17979,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
17960
17979
  return __pyx_r;
17961
17980
  }
17962
17981
 
17963
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":272
17982
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":272
17964
17983
  *
17965
17984
  * @property
17966
17985
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -17971,7 +17990,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
17971
17990
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
17972
17991
  npy_intp *__pyx_r;
17973
17992
 
17974
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":276
17993
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":276
17975
17994
  * The number of elements matches the number of dimensions of the array (ndim).
17976
17995
  * """
17977
17996
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -17981,7 +18000,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
17981
18000
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
17982
18001
  goto __pyx_L0;
17983
18002
 
17984
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":272
18003
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":272
17985
18004
  *
17986
18005
  * @property
17987
18006
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -17994,7 +18013,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
17994
18013
  return __pyx_r;
17995
18014
  }
17996
18015
 
17997
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":279
18016
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":279
17998
18017
  *
17999
18018
  * @property
18000
18019
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18005,7 +18024,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18005
18024
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
18006
18025
  npy_intp __pyx_r;
18007
18026
 
18008
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":282
18027
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":282
18009
18028
  * """Returns the total size (in number of elements) of the array.
18010
18029
  * """
18011
18030
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -18015,7 +18034,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18015
18034
  __pyx_r = PyArray_SIZE(__pyx_v_self);
18016
18035
  goto __pyx_L0;
18017
18036
 
18018
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":279
18037
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":279
18019
18038
  *
18020
18039
  * @property
18021
18040
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18028,7 +18047,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18028
18047
  return __pyx_r;
18029
18048
  }
18030
18049
 
18031
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":285
18050
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":285
18032
18051
  *
18033
18052
  * @property
18034
18053
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18039,7 +18058,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18039
18058
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
18040
18059
  char *__pyx_r;
18041
18060
 
18042
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":291
18061
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":291
18043
18062
  * of `PyArray_DATA()` instead, which returns a 'void*'.
18044
18063
  * """
18045
18064
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -18049,7 +18068,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18049
18068
  __pyx_r = PyArray_BYTES(__pyx_v_self);
18050
18069
  goto __pyx_L0;
18051
18070
 
18052
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":285
18071
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":285
18053
18072
  *
18054
18073
  * @property
18055
18074
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18062,7 +18081,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18062
18081
  return __pyx_r;
18063
18082
  }
18064
18083
 
18065
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":777
18084
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":777
18066
18085
  * ctypedef npy_cdouble complex_t
18067
18086
  *
18068
18087
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18079,7 +18098,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18079
18098
  int __pyx_clineno = 0;
18080
18099
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
18081
18100
 
18082
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":778
18101
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":778
18083
18102
  *
18084
18103
  * cdef inline object PyArray_MultiIterNew1(a):
18085
18104
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -18093,7 +18112,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18093
18112
  __pyx_t_1 = 0;
18094
18113
  goto __pyx_L0;
18095
18114
 
18096
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":777
18115
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":777
18097
18116
  * ctypedef npy_cdouble complex_t
18098
18117
  *
18099
18118
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18112,7 +18131,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18112
18131
  return __pyx_r;
18113
18132
  }
18114
18133
 
18115
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":780
18134
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":780
18116
18135
  * return PyArray_MultiIterNew(1, <void*>a)
18117
18136
  *
18118
18137
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18129,7 +18148,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18129
18148
  int __pyx_clineno = 0;
18130
18149
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
18131
18150
 
18132
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":781
18151
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":781
18133
18152
  *
18134
18153
  * cdef inline object PyArray_MultiIterNew2(a, b):
18135
18154
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -18143,7 +18162,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18143
18162
  __pyx_t_1 = 0;
18144
18163
  goto __pyx_L0;
18145
18164
 
18146
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":780
18165
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":780
18147
18166
  * return PyArray_MultiIterNew(1, <void*>a)
18148
18167
  *
18149
18168
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18162,7 +18181,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18162
18181
  return __pyx_r;
18163
18182
  }
18164
18183
 
18165
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":783
18184
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":783
18166
18185
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18167
18186
  *
18168
18187
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18179,7 +18198,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18179
18198
  int __pyx_clineno = 0;
18180
18199
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
18181
18200
 
18182
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":784
18201
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":784
18183
18202
  *
18184
18203
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
18185
18204
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -18193,7 +18212,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18193
18212
  __pyx_t_1 = 0;
18194
18213
  goto __pyx_L0;
18195
18214
 
18196
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":783
18215
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":783
18197
18216
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18198
18217
  *
18199
18218
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18212,7 +18231,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18212
18231
  return __pyx_r;
18213
18232
  }
18214
18233
 
18215
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":786
18234
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":786
18216
18235
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18217
18236
  *
18218
18237
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18229,7 +18248,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18229
18248
  int __pyx_clineno = 0;
18230
18249
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
18231
18250
 
18232
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":787
18251
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":787
18233
18252
  *
18234
18253
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
18235
18254
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -18243,7 +18262,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18243
18262
  __pyx_t_1 = 0;
18244
18263
  goto __pyx_L0;
18245
18264
 
18246
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":786
18265
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":786
18247
18266
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18248
18267
  *
18249
18268
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18262,7 +18281,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18262
18281
  return __pyx_r;
18263
18282
  }
18264
18283
 
18265
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":789
18284
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":789
18266
18285
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18267
18286
  *
18268
18287
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18279,7 +18298,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18279
18298
  int __pyx_clineno = 0;
18280
18299
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
18281
18300
 
18282
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":790
18301
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":790
18283
18302
  *
18284
18303
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
18285
18304
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -18293,7 +18312,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18293
18312
  __pyx_t_1 = 0;
18294
18313
  goto __pyx_L0;
18295
18314
 
18296
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":789
18315
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":789
18297
18316
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18298
18317
  *
18299
18318
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18312,7 +18331,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18312
18331
  return __pyx_r;
18313
18332
  }
18314
18333
 
18315
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":792
18334
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":792
18316
18335
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18317
18336
  *
18318
18337
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18326,7 +18345,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18326
18345
  int __pyx_t_1;
18327
18346
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
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":793
18348
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":793
18330
18349
  *
18331
18350
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18332
18351
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18336,7 +18355,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18336
18355
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
18337
18356
  if (__pyx_t_1) {
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":794
18358
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":794
18340
18359
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18341
18360
  * if PyDataType_HASSUBARRAY(d):
18342
18361
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -18348,7 +18367,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18348
18367
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
18349
18368
  goto __pyx_L0;
18350
18369
 
18351
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":793
18370
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":793
18352
18371
  *
18353
18372
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18354
18373
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18357,7 +18376,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18357
18376
  */
18358
18377
  }
18359
18378
 
18360
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":796
18379
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":796
18361
18380
  * return <tuple>d.subarray.shape
18362
18381
  * else:
18363
18382
  * return () # <<<<<<<<<<<<<<
@@ -18371,7 +18390,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18371
18390
  goto __pyx_L0;
18372
18391
  }
18373
18392
 
18374
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":792
18393
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":792
18375
18394
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18376
18395
  *
18377
18396
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18386,7 +18405,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18386
18405
  return __pyx_r;
18387
18406
  }
18388
18407
 
18389
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":971
18408
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":971
18390
18409
  * int _import_umath() except -1
18391
18410
  *
18392
18411
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -18396,7 +18415,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18396
18415
 
18397
18416
  static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
18398
18417
 
18399
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":972
18418
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":972
18400
18419
  *
18401
18420
  * cdef inline void set_array_base(ndarray arr, object base):
18402
18421
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -18405,7 +18424,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18405
18424
  */
18406
18425
  Py_INCREF(__pyx_v_base);
18407
18426
 
18408
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":973
18427
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":973
18409
18428
  * cdef inline void set_array_base(ndarray arr, object base):
18410
18429
  * Py_INCREF(base) # important to do this before stealing the reference below!
18411
18430
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -18414,7 +18433,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18414
18433
  */
18415
18434
  (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
18416
18435
 
18417
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":971
18436
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":971
18418
18437
  * int _import_umath() except -1
18419
18438
  *
18420
18439
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -18425,7 +18444,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18425
18444
  /* function exit code */
18426
18445
  }
18427
18446
 
18428
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":975
18447
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":975
18429
18448
  * PyArray_SetBaseObject(arr, base)
18430
18449
  *
18431
18450
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -18440,7 +18459,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18440
18459
  int __pyx_t_1;
18441
18460
  __Pyx_RefNannySetupContext("get_array_base", 1);
18442
18461
 
18443
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":976
18462
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":976
18444
18463
  *
18445
18464
  * cdef inline object get_array_base(ndarray arr):
18446
18465
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -18449,7 +18468,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18449
18468
  */
18450
18469
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
18451
18470
 
18452
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":977
18471
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":977
18453
18472
  * cdef inline object get_array_base(ndarray arr):
18454
18473
  * base = PyArray_BASE(arr)
18455
18474
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -18459,7 +18478,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18459
18478
  __pyx_t_1 = (__pyx_v_base == NULL);
18460
18479
  if (__pyx_t_1) {
18461
18480
 
18462
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":978
18481
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":978
18463
18482
  * base = PyArray_BASE(arr)
18464
18483
  * if base is NULL:
18465
18484
  * return None # <<<<<<<<<<<<<<
@@ -18470,7 +18489,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18470
18489
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
18471
18490
  goto __pyx_L0;
18472
18491
 
18473
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":977
18492
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":977
18474
18493
  * cdef inline object get_array_base(ndarray arr):
18475
18494
  * base = PyArray_BASE(arr)
18476
18495
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -18479,7 +18498,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18479
18498
  */
18480
18499
  }
18481
18500
 
18482
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":979
18501
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":979
18483
18502
  * if base is NULL:
18484
18503
  * return None
18485
18504
  * return <object>base # <<<<<<<<<<<<<<
@@ -18491,7 +18510,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18491
18510
  __pyx_r = ((PyObject *)__pyx_v_base);
18492
18511
  goto __pyx_L0;
18493
18512
 
18494
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":975
18513
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":975
18495
18514
  * PyArray_SetBaseObject(arr, base)
18496
18515
  *
18497
18516
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -18506,7 +18525,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18506
18525
  return __pyx_r;
18507
18526
  }
18508
18527
 
18509
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":983
18528
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":983
18510
18529
  * # Versions of the import_* functions which are more suitable for
18511
18530
  * # Cython code.
18512
18531
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -18530,7 +18549,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18530
18549
  int __pyx_clineno = 0;
18531
18550
  __Pyx_RefNannySetupContext("import_array", 1);
18532
18551
 
18533
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
18552
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
18534
18553
  * # Cython code.
18535
18554
  * cdef inline int import_array() except -1:
18536
18555
  * try: # <<<<<<<<<<<<<<
@@ -18546,7 +18565,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18546
18565
  __Pyx_XGOTREF(__pyx_t_3);
18547
18566
  /*try:*/ {
18548
18567
 
18549
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":985
18568
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":985
18550
18569
  * cdef inline int import_array() except -1:
18551
18570
  * try:
18552
18571
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -18555,7 +18574,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18555
18574
  */
18556
18575
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 985, __pyx_L3_error)
18557
18576
 
18558
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
18577
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
18559
18578
  * # Cython code.
18560
18579
  * cdef inline int import_array() except -1:
18561
18580
  * try: # <<<<<<<<<<<<<<
@@ -18569,7 +18588,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18569
18588
  goto __pyx_L8_try_end;
18570
18589
  __pyx_L3_error:;
18571
18590
 
18572
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":986
18591
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":986
18573
18592
  * try:
18574
18593
  * __pyx_import_array()
18575
18594
  * except Exception: # <<<<<<<<<<<<<<
@@ -18584,7 +18603,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18584
18603
  __Pyx_XGOTREF(__pyx_t_6);
18585
18604
  __Pyx_XGOTREF(__pyx_t_7);
18586
18605
 
18587
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
18606
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
18588
18607
  * __pyx_import_array()
18589
18608
  * except Exception:
18590
18609
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -18599,7 +18618,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18599
18618
  }
18600
18619
  goto __pyx_L5_except_error;
18601
18620
 
18602
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
18621
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
18603
18622
  * # Cython code.
18604
18623
  * cdef inline int import_array() except -1:
18605
18624
  * try: # <<<<<<<<<<<<<<
@@ -18615,7 +18634,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18615
18634
  __pyx_L8_try_end:;
18616
18635
  }
18617
18636
 
18618
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":983
18637
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":983
18619
18638
  * # Versions of the import_* functions which are more suitable for
18620
18639
  * # Cython code.
18621
18640
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -18638,7 +18657,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18638
18657
  return __pyx_r;
18639
18658
  }
18640
18659
 
18641
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":989
18660
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":989
18642
18661
  * raise ImportError("numpy.core.multiarray failed to import")
18643
18662
  *
18644
18663
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -18662,7 +18681,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
18662
18681
  int __pyx_clineno = 0;
18663
18682
  __Pyx_RefNannySetupContext("import_umath", 1);
18664
18683
 
18665
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
18684
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
18666
18685
  *
18667
18686
  * cdef inline int import_umath() except -1:
18668
18687
  * try: # <<<<<<<<<<<<<<
@@ -18678,7 +18697,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
18678
18697
  __Pyx_XGOTREF(__pyx_t_3);
18679
18698
  /*try:*/ {
18680
18699
 
18681
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":991
18700
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":991
18682
18701
  * cdef inline int import_umath() except -1:
18683
18702
  * try:
18684
18703
  * _import_umath() # <<<<<<<<<<<<<<
@@ -18687,7 +18706,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
18687
18706
  */
18688
18707
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 991, __pyx_L3_error)
18689
18708
 
18690
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
18709
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
18691
18710
  *
18692
18711
  * cdef inline int import_umath() except -1:
18693
18712
  * try: # <<<<<<<<<<<<<<
@@ -18701,7 +18720,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
18701
18720
  goto __pyx_L8_try_end;
18702
18721
  __pyx_L3_error:;
18703
18722
 
18704
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":992
18723
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":992
18705
18724
  * try:
18706
18725
  * _import_umath()
18707
18726
  * except Exception: # <<<<<<<<<<<<<<
@@ -18716,7 +18735,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
18716
18735
  __Pyx_XGOTREF(__pyx_t_6);
18717
18736
  __Pyx_XGOTREF(__pyx_t_7);
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":993
18738
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
18720
18739
  * _import_umath()
18721
18740
  * except Exception:
18722
18741
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -18731,7 +18750,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
18731
18750
  }
18732
18751
  goto __pyx_L5_except_error;
18733
18752
 
18734
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
18753
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
18735
18754
  *
18736
18755
  * cdef inline int import_umath() except -1:
18737
18756
  * try: # <<<<<<<<<<<<<<
@@ -18747,7 +18766,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
18747
18766
  __pyx_L8_try_end:;
18748
18767
  }
18749
18768
 
18750
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":989
18769
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":989
18751
18770
  * raise ImportError("numpy.core.multiarray failed to import")
18752
18771
  *
18753
18772
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -18770,7 +18789,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
18770
18789
  return __pyx_r;
18771
18790
  }
18772
18791
 
18773
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":995
18792
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":995
18774
18793
  * raise ImportError("numpy.core.umath failed to import")
18775
18794
  *
18776
18795
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -18794,7 +18813,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
18794
18813
  int __pyx_clineno = 0;
18795
18814
  __Pyx_RefNannySetupContext("import_ufunc", 1);
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":996
18816
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":996
18798
18817
  *
18799
18818
  * cdef inline int import_ufunc() except -1:
18800
18819
  * try: # <<<<<<<<<<<<<<
@@ -18810,7 +18829,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
18810
18829
  __Pyx_XGOTREF(__pyx_t_3);
18811
18830
  /*try:*/ {
18812
18831
 
18813
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":997
18832
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":997
18814
18833
  * cdef inline int import_ufunc() except -1:
18815
18834
  * try:
18816
18835
  * _import_umath() # <<<<<<<<<<<<<<
@@ -18819,7 +18838,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
18819
18838
  */
18820
18839
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 997, __pyx_L3_error)
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":996
18841
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":996
18823
18842
  *
18824
18843
  * cdef inline int import_ufunc() except -1:
18825
18844
  * try: # <<<<<<<<<<<<<<
@@ -18833,7 +18852,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
18833
18852
  goto __pyx_L8_try_end;
18834
18853
  __pyx_L3_error:;
18835
18854
 
18836
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":998
18855
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":998
18837
18856
  * try:
18838
18857
  * _import_umath()
18839
18858
  * except Exception: # <<<<<<<<<<<<<<
@@ -18848,7 +18867,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
18848
18867
  __Pyx_XGOTREF(__pyx_t_6);
18849
18868
  __Pyx_XGOTREF(__pyx_t_7);
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":999
18870
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":999
18852
18871
  * _import_umath()
18853
18872
  * except Exception:
18854
18873
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -18863,7 +18882,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
18863
18882
  }
18864
18883
  goto __pyx_L5_except_error;
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":996
18885
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":996
18867
18886
  *
18868
18887
  * cdef inline int import_ufunc() except -1:
18869
18888
  * try: # <<<<<<<<<<<<<<
@@ -18879,7 +18898,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
18879
18898
  __pyx_L8_try_end:;
18880
18899
  }
18881
18900
 
18882
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":995
18901
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":995
18883
18902
  * raise ImportError("numpy.core.umath failed to import")
18884
18903
  *
18885
18904
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -18902,7 +18921,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
18902
18921
  return __pyx_r;
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":1002
18924
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1002
18906
18925
  *
18907
18926
  *
18908
18927
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -18913,7 +18932,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
18913
18932
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
18914
18933
  int __pyx_r;
18915
18934
 
18916
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1014
18935
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1014
18917
18936
  * bool
18918
18937
  * """
18919
18938
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -18923,7 +18942,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
18923
18942
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
18924
18943
  goto __pyx_L0;
18925
18944
 
18926
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1002
18945
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1002
18927
18946
  *
18928
18947
  *
18929
18948
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -18936,7 +18955,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
18936
18955
  return __pyx_r;
18937
18956
  }
18938
18957
 
18939
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1017
18958
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1017
18940
18959
  *
18941
18960
  *
18942
18961
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -18947,7 +18966,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
18947
18966
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
18948
18967
  int __pyx_r;
18949
18968
 
18950
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1029
18969
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1029
18951
18970
  * bool
18952
18971
  * """
18953
18972
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -18957,7 +18976,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
18957
18976
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
18958
18977
  goto __pyx_L0;
18959
18978
 
18960
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1017
18979
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1017
18961
18980
  *
18962
18981
  *
18963
18982
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -18970,7 +18989,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
18970
18989
  return __pyx_r;
18971
18990
  }
18972
18991
 
18973
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1032
18992
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1032
18974
18993
  *
18975
18994
  *
18976
18995
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -18981,7 +19000,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
18981
19000
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
18982
19001
  npy_datetime __pyx_r;
18983
19002
 
18984
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1039
19003
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1039
18985
19004
  * also needed. That can be found using `get_datetime64_unit`.
18986
19005
  * """
18987
19006
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -18991,7 +19010,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
18991
19010
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
18992
19011
  goto __pyx_L0;
18993
19012
 
18994
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1032
19013
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1032
18995
19014
  *
18996
19015
  *
18997
19016
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19004,7 +19023,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19004
19023
  return __pyx_r;
19005
19024
  }
19006
19025
 
19007
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1042
19026
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1042
19008
19027
  *
19009
19028
  *
19010
19029
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19015,7 +19034,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19015
19034
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
19016
19035
  npy_timedelta __pyx_r;
19017
19036
 
19018
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1046
19037
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1046
19019
19038
  * returns the int64 value underlying scalar numpy timedelta64 object
19020
19039
  * """
19021
19040
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19025,7 +19044,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19025
19044
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
19026
19045
  goto __pyx_L0;
19027
19046
 
19028
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1042
19047
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1042
19029
19048
  *
19030
19049
  *
19031
19050
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19038,7 +19057,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19038
19057
  return __pyx_r;
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":1049
19060
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1049
19042
19061
  *
19043
19062
  *
19044
19063
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19049,7 +19068,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19049
19068
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
19050
19069
  NPY_DATETIMEUNIT __pyx_r;
19051
19070
 
19052
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1053
19071
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1053
19053
19072
  * returns the unit part of the dtype for a numpy datetime64 object.
19054
19073
  * """
19055
19074
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -19057,7 +19076,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
19057
19076
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
19058
19077
  goto __pyx_L0;
19059
19078
 
19060
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1049
19079
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1049
19061
19080
  *
19062
19081
  *
19063
19082
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -23135,7 +23154,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
23135
23154
  __Pyx_GOTREF(__pyx_tuple__8);
23136
23155
  __Pyx_GIVEREF(__pyx_tuple__8);
23137
23156
 
23138
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
23157
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
23139
23158
  * __pyx_import_array()
23140
23159
  * except Exception:
23141
23160
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -23146,7 +23165,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
23146
23165
  __Pyx_GOTREF(__pyx_tuple__9);
23147
23166
  __Pyx_GIVEREF(__pyx_tuple__9);
23148
23167
 
23149
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-pcdd9myb/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
23168
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
23150
23169
  * _import_umath()
23151
23170
  * except Exception:
23152
23171
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -23537,33 +23556,33 @@ static int __Pyx_modinit_type_import_code(void) {
23537
23556
  /*--- Type import code ---*/
23538
23557
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
23539
23558
  __Pyx_GOTREF(__pyx_t_1);
23540
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
23559
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
23541
23560
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
23542
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
23561
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
23543
23562
  #elif CYTHON_COMPILING_IN_LIMITED_API
23544
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
23563
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
23545
23564
  #else
23546
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
23565
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
23547
23566
  #endif
23548
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
23567
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
23549
23568
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
23550
23569
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 203, __pyx_L1_error)
23551
23570
  __Pyx_GOTREF(__pyx_t_1);
23552
- __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)
23553
- __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)
23554
- __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)
23555
- __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)
23556
- __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)
23557
- __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)
23558
- __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)
23559
- __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)
23560
- __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)
23561
- __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)
23562
- __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)
23563
- __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)
23564
- __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)
23565
- __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)
23566
- __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)
23571
+ __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)
23572
+ __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)
23573
+ __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)
23574
+ __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)
23575
+ __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)
23576
+ __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)
23577
+ __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)
23578
+ __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)
23579
+ __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)
23580
+ __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)
23581
+ __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)
23582
+ __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)
23583
+ __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)
23584
+ __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)
23585
+ __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)
23567
23586
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
23568
23587
  __Pyx_RefNannyFinishContext();
23569
23588
  return 0;
@@ -24866,11 +24885,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
24866
24885
  {
24867
24886
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
24868
24887
  if (unlikely(eq != 0)) {
24869
- if (unlikely(eq < 0)) return NULL; // error
24888
+ if (unlikely(eq < 0)) return NULL;
24870
24889
  return kwvalues[i];
24871
24890
  }
24872
24891
  }
24873
- return NULL; // not found (no exception set)
24892
+ return NULL;
24874
24893
  }
24875
24894
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
24876
24895
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -24983,7 +25002,7 @@ static int __Pyx_ParseOptionalKeywords(
24983
25002
  if (*name) {
24984
25003
  values[name-argnames] = value;
24985
25004
  #if CYTHON_AVOID_BORROWED_REFS
24986
- Py_INCREF(value); // transfer ownership of value to values
25005
+ Py_INCREF(value);
24987
25006
  Py_DECREF(key);
24988
25007
  #endif
24989
25008
  key = NULL;
@@ -25002,7 +25021,7 @@ static int __Pyx_ParseOptionalKeywords(
25002
25021
  && _PyString_Eq(**name, key)) {
25003
25022
  values[name-argnames] = value;
25004
25023
  #if CYTHON_AVOID_BORROWED_REFS
25005
- value = NULL; // ownership transferred to values
25024
+ value = NULL;
25006
25025
  #endif
25007
25026
  break;
25008
25027
  }
@@ -25034,7 +25053,7 @@ static int __Pyx_ParseOptionalKeywords(
25034
25053
  if (cmp == 0) {
25035
25054
  values[name-argnames] = value;
25036
25055
  #if CYTHON_AVOID_BORROWED_REFS
25037
- value = NULL; // ownership transferred to values
25056
+ value = NULL;
25038
25057
  #endif
25039
25058
  break;
25040
25059
  }
@@ -26932,9 +26951,10 @@ static void __Pyx_RaiseBufferIndexError(int axis) {
26932
26951
 
26933
26952
  /* IterFinish */
26934
26953
  static CYTHON_INLINE int __Pyx_IterFinish(void) {
26954
+ PyObject* exc_type;
26935
26955
  __Pyx_PyThreadState_declare
26936
26956
  __Pyx_PyThreadState_assign
26937
- PyObject* exc_type = __Pyx_PyErr_CurrentExceptionType();
26957
+ exc_type = __Pyx_PyErr_CurrentExceptionType();
26938
26958
  if (unlikely(exc_type)) {
26939
26959
  if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
26940
26960
  return -1;
@@ -27644,10 +27664,10 @@ __PYX_GOOD:
27644
27664
  #endif
27645
27665
 
27646
27666
  /* TypeImport */
27647
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
27648
- #define __PYX_HAVE_RT_ImportType_3_0_7
27649
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
27650
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
27667
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
27668
+ #define __PYX_HAVE_RT_ImportType_3_0_10
27669
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
27670
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
27651
27671
  {
27652
27672
  PyObject *result = 0;
27653
27673
  char warning[200];
@@ -27701,7 +27721,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
27701
27721
  module_name, class_name, size, basicsize+itemsize);
27702
27722
  goto bad;
27703
27723
  }
27704
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
27724
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
27705
27725
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
27706
27726
  PyErr_Format(PyExc_ValueError,
27707
27727
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -27709,7 +27729,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
27709
27729
  module_name, class_name, size, basicsize, basicsize+itemsize);
27710
27730
  goto bad;
27711
27731
  }
27712
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
27732
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
27713
27733
  PyOS_snprintf(warning, sizeof(warning),
27714
27734
  "%s.%s size changed, may indicate binary incompatibility. "
27715
27735
  "Expected %zd from C header, got %zd from PyObject",
@@ -27991,7 +28011,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
27991
28011
  #else
27992
28012
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
27993
28013
  #endif
27994
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
28014
+ Py_XDECREF(py_funcname);
27995
28015
  return py_code;
27996
28016
  bad:
27997
28017
  Py_XDECREF(py_funcname);