biotite 0.39.0__cp312-cp312-win_amd64.whl → 0.41.0__cp312-cp312-win_amd64.whl

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

Potentially problematic release.


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

Files changed (121) hide show
  1. biotite/__init__.py +3 -3
  2. biotite/application/dssp/app.py +18 -18
  3. biotite/database/pubchem/download.py +23 -23
  4. biotite/database/pubchem/query.py +7 -7
  5. biotite/database/rcsb/download.py +19 -14
  6. biotite/file.py +17 -9
  7. biotite/sequence/align/banded.c +256 -235
  8. biotite/sequence/align/banded.cp312-win_amd64.pyd +0 -0
  9. biotite/sequence/align/cigar.py +60 -15
  10. biotite/sequence/align/kmeralphabet.c +241 -220
  11. biotite/sequence/align/kmeralphabet.cp312-win_amd64.pyd +0 -0
  12. biotite/sequence/align/kmersimilarity.c +213 -194
  13. biotite/sequence/align/kmersimilarity.cp312-win_amd64.pyd +0 -0
  14. biotite/sequence/align/kmertable.cp312-win_amd64.pyd +0 -0
  15. biotite/sequence/align/kmertable.cpp +231 -203
  16. biotite/sequence/align/localgapped.c +256 -235
  17. biotite/sequence/align/localgapped.cp312-win_amd64.pyd +0 -0
  18. biotite/sequence/align/localungapped.c +233 -212
  19. biotite/sequence/align/localungapped.cp312-win_amd64.pyd +0 -0
  20. biotite/sequence/align/multiple.c +253 -232
  21. biotite/sequence/align/multiple.cp312-win_amd64.pyd +0 -0
  22. biotite/sequence/align/pairwise.c +272 -251
  23. biotite/sequence/align/pairwise.cp312-win_amd64.pyd +0 -0
  24. biotite/sequence/align/permutation.c +213 -194
  25. biotite/sequence/align/permutation.cp312-win_amd64.pyd +0 -0
  26. biotite/sequence/align/selector.c +215 -195
  27. biotite/sequence/align/selector.cp312-win_amd64.pyd +0 -0
  28. biotite/sequence/align/tracetable.c +213 -193
  29. biotite/sequence/align/tracetable.cp312-win_amd64.pyd +0 -0
  30. biotite/sequence/annotation.py +2 -2
  31. biotite/sequence/codec.c +233 -212
  32. biotite/sequence/codec.cp312-win_amd64.pyd +0 -0
  33. biotite/sequence/io/fasta/convert.py +27 -24
  34. biotite/sequence/phylo/nj.c +213 -194
  35. biotite/sequence/phylo/nj.cp312-win_amd64.pyd +0 -0
  36. biotite/sequence/phylo/tree.c +225 -200
  37. biotite/sequence/phylo/tree.cp312-win_amd64.pyd +0 -0
  38. biotite/sequence/phylo/upgma.c +213 -194
  39. biotite/sequence/phylo/upgma.cp312-win_amd64.pyd +0 -0
  40. biotite/structure/__init__.py +2 -0
  41. biotite/structure/basepairs.py +7 -12
  42. biotite/structure/bonds.c +1435 -1277
  43. biotite/structure/bonds.cp312-win_amd64.pyd +0 -0
  44. biotite/structure/celllist.c +215 -195
  45. biotite/structure/celllist.cp312-win_amd64.pyd +0 -0
  46. biotite/structure/charges.c +1050 -1099
  47. biotite/structure/charges.cp312-win_amd64.pyd +0 -0
  48. biotite/structure/dotbracket.py +2 -0
  49. biotite/structure/filter.py +30 -37
  50. biotite/structure/info/__init__.py +5 -8
  51. biotite/structure/info/atoms.py +31 -68
  52. biotite/structure/info/bonds.py +47 -101
  53. biotite/structure/info/ccd/README.rst +8 -0
  54. biotite/structure/info/ccd/amino_acids.txt +1663 -0
  55. biotite/structure/info/ccd/carbohydrates.txt +1135 -0
  56. biotite/structure/info/ccd/components.bcif +0 -0
  57. biotite/structure/info/ccd/nucleotides.txt +798 -0
  58. biotite/structure/info/ccd.py +95 -0
  59. biotite/structure/info/groups.py +90 -0
  60. biotite/structure/info/masses.py +21 -20
  61. biotite/structure/info/misc.py +78 -25
  62. biotite/structure/info/standardize.py +17 -12
  63. biotite/structure/integrity.py +19 -70
  64. biotite/structure/io/__init__.py +2 -4
  65. biotite/structure/io/ctab.py +12 -106
  66. biotite/structure/io/general.py +167 -181
  67. biotite/structure/io/gro/file.py +16 -16
  68. biotite/structure/io/mmtf/__init__.py +3 -0
  69. biotite/structure/io/mmtf/convertarray.c +217 -196
  70. biotite/structure/io/mmtf/convertarray.cp312-win_amd64.pyd +0 -0
  71. biotite/structure/io/mmtf/convertfile.c +215 -195
  72. biotite/structure/io/mmtf/convertfile.cp312-win_amd64.pyd +0 -0
  73. biotite/structure/io/mmtf/decode.c +223 -202
  74. biotite/structure/io/mmtf/decode.cp312-win_amd64.pyd +0 -0
  75. biotite/structure/io/mmtf/encode.c +213 -194
  76. biotite/structure/io/mmtf/encode.cp312-win_amd64.pyd +0 -0
  77. biotite/structure/io/mmtf/file.py +34 -26
  78. biotite/structure/io/mol/__init__.py +4 -2
  79. biotite/structure/io/mol/convert.py +71 -7
  80. biotite/structure/io/mol/ctab.py +414 -0
  81. biotite/structure/io/mol/header.py +116 -0
  82. biotite/structure/io/mol/{file.py → mol.py} +69 -82
  83. biotite/structure/io/mol/sdf.py +909 -0
  84. biotite/structure/io/npz/__init__.py +3 -0
  85. biotite/structure/io/npz/file.py +21 -18
  86. biotite/structure/io/pdb/__init__.py +3 -3
  87. biotite/structure/io/pdb/file.py +89 -34
  88. biotite/structure/io/pdb/hybrid36.c +63 -43
  89. biotite/structure/io/pdb/hybrid36.cp312-win_amd64.pyd +0 -0
  90. biotite/structure/io/pdbqt/file.py +32 -32
  91. biotite/structure/io/pdbx/__init__.py +12 -6
  92. biotite/structure/io/pdbx/bcif.py +648 -0
  93. biotite/structure/io/pdbx/cif.py +1032 -0
  94. biotite/structure/io/pdbx/component.py +246 -0
  95. biotite/structure/io/pdbx/convert.py +858 -386
  96. biotite/structure/io/pdbx/encoding.c +112803 -0
  97. biotite/structure/io/pdbx/encoding.cp312-win_amd64.pyd +0 -0
  98. biotite/structure/io/pdbx/legacy.py +267 -0
  99. biotite/structure/molecules.py +151 -151
  100. biotite/structure/repair.py +253 -0
  101. biotite/structure/sasa.c +213 -194
  102. biotite/structure/sasa.cp312-win_amd64.pyd +0 -0
  103. biotite/structure/sequence.py +112 -0
  104. biotite/structure/superimpose.py +618 -116
  105. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/METADATA +3 -3
  106. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/RECORD +109 -103
  107. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/WHEEL +1 -1
  108. biotite/structure/info/amino_acids.json +0 -1556
  109. biotite/structure/info/amino_acids.py +0 -42
  110. biotite/structure/info/carbohydrates.json +0 -1122
  111. biotite/structure/info/carbohydrates.py +0 -39
  112. biotite/structure/info/intra_bonds.msgpack +0 -0
  113. biotite/structure/info/link_types.msgpack +0 -1
  114. biotite/structure/info/nucleotides.json +0 -772
  115. biotite/structure/info/nucleotides.py +0 -39
  116. biotite/structure/info/residue_masses.msgpack +0 -0
  117. biotite/structure/info/residue_names.msgpack +0 -3
  118. biotite/structure/info/residues.msgpack +0 -0
  119. biotite/structure/io/pdbx/file.py +0 -652
  120. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/LICENSE.rst +0 -0
  121. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.0.7 */
1
+ /* Generated by Cython 3.0.10 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -38,10 +38,10 @@ END: Cython Metadata */
38
38
  #else
39
39
  #define __PYX_EXTRA_ABI_MODULE_NAME ""
40
40
  #endif
41
- #define CYTHON_ABI "3_0_7" __PYX_EXTRA_ABI_MODULE_NAME
41
+ #define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
42
42
  #define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
43
43
  #define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
44
- #define CYTHON_HEX_VERSION 0x030007F0
44
+ #define CYTHON_HEX_VERSION 0x03000AF0
45
45
  #define CYTHON_FUTURE_DIVISION 1
46
46
  #include <stddef.h>
47
47
  #ifndef offsetof
@@ -133,6 +133,8 @@ END: Cython Metadata */
133
133
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
134
134
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
135
135
  #endif
136
+ #undef CYTHON_USE_FREELISTS
137
+ #define CYTHON_USE_FREELISTS 0
136
138
  #elif defined(PYPY_VERSION)
137
139
  #define CYTHON_COMPILING_IN_PYPY 1
138
140
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -194,6 +196,8 @@ END: Cython Metadata */
194
196
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
195
197
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
196
198
  #endif
199
+ #undef CYTHON_USE_FREELISTS
200
+ #define CYTHON_USE_FREELISTS 0
197
201
  #elif defined(CYTHON_LIMITED_API)
198
202
  #ifdef Py_LIMITED_API
199
203
  #undef __PYX_LIMITED_VERSION_HEX
@@ -255,6 +259,8 @@ END: Cython Metadata */
255
259
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
256
260
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
257
261
  #endif
262
+ #undef CYTHON_USE_FREELISTS
263
+ #define CYTHON_USE_FREELISTS 0
258
264
  #elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
259
265
  #define CYTHON_COMPILING_IN_PYPY 0
260
266
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -264,11 +270,17 @@ END: Cython Metadata */
264
270
  #ifndef CYTHON_USE_TYPE_SLOTS
265
271
  #define CYTHON_USE_TYPE_SLOTS 1
266
272
  #endif
273
+ #ifndef CYTHON_USE_TYPE_SPECS
274
+ #define CYTHON_USE_TYPE_SPECS 0
275
+ #endif
267
276
  #undef CYTHON_USE_PYTYPE_LOOKUP
268
277
  #define CYTHON_USE_PYTYPE_LOOKUP 0
269
278
  #ifndef CYTHON_USE_ASYNC_SLOTS
270
279
  #define CYTHON_USE_ASYNC_SLOTS 1
271
280
  #endif
281
+ #ifndef CYTHON_USE_PYLONG_INTERNALS
282
+ #define CYTHON_USE_PYLONG_INTERNALS 0
283
+ #endif
272
284
  #undef CYTHON_USE_PYLIST_INTERNALS
273
285
  #define CYTHON_USE_PYLIST_INTERNALS 0
274
286
  #ifndef CYTHON_USE_UNICODE_INTERNALS
@@ -276,8 +288,6 @@ END: Cython Metadata */
276
288
  #endif
277
289
  #undef CYTHON_USE_UNICODE_WRITER
278
290
  #define CYTHON_USE_UNICODE_WRITER 0
279
- #undef CYTHON_USE_PYLONG_INTERNALS
280
- #define CYTHON_USE_PYLONG_INTERNALS 0
281
291
  #ifndef CYTHON_AVOID_BORROWED_REFS
282
292
  #define CYTHON_AVOID_BORROWED_REFS 0
283
293
  #endif
@@ -289,11 +299,22 @@ END: Cython Metadata */
289
299
  #endif
290
300
  #undef CYTHON_FAST_THREAD_STATE
291
301
  #define CYTHON_FAST_THREAD_STATE 0
302
+ #undef CYTHON_FAST_GIL
303
+ #define CYTHON_FAST_GIL 0
304
+ #ifndef CYTHON_METH_FASTCALL
305
+ #define CYTHON_METH_FASTCALL 1
306
+ #endif
292
307
  #undef CYTHON_FAST_PYCALL
293
308
  #define CYTHON_FAST_PYCALL 0
309
+ #ifndef CYTHON_PEP487_INIT_SUBCLASS
310
+ #define CYTHON_PEP487_INIT_SUBCLASS 1
311
+ #endif
294
312
  #ifndef CYTHON_PEP489_MULTI_PHASE_INIT
295
313
  #define CYTHON_PEP489_MULTI_PHASE_INIT 1
296
314
  #endif
315
+ #ifndef CYTHON_USE_MODULE_STATE
316
+ #define CYTHON_USE_MODULE_STATE 0
317
+ #endif
297
318
  #ifndef CYTHON_USE_TP_FINALIZE
298
319
  #define CYTHON_USE_TP_FINALIZE 1
299
320
  #endif
@@ -301,6 +322,12 @@ END: Cython Metadata */
301
322
  #define CYTHON_USE_DICT_VERSIONS 0
302
323
  #undef CYTHON_USE_EXC_INFO_STACK
303
324
  #define CYTHON_USE_EXC_INFO_STACK 0
325
+ #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
326
+ #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
327
+ #endif
328
+ #ifndef CYTHON_USE_FREELISTS
329
+ #define CYTHON_USE_FREELISTS 0
330
+ #endif
304
331
  #else
305
332
  #define CYTHON_COMPILING_IN_PYPY 0
306
333
  #define CYTHON_COMPILING_IN_CPYTHON 1
@@ -391,6 +418,9 @@ END: Cython Metadata */
391
418
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
392
419
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
393
420
  #endif
421
+ #ifndef CYTHON_USE_FREELISTS
422
+ #define CYTHON_USE_FREELISTS 1
423
+ #endif
394
424
  #endif
395
425
  #if !defined(CYTHON_FAST_PYCCALL)
396
426
  #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
@@ -599,14 +629,14 @@ class __Pyx_FakeReference {
599
629
  PyObject *exception_table = NULL;
600
630
  PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
601
631
  #if __PYX_LIMITED_VERSION_HEX < 0x030B0000
602
- PyObject *version_info; // borrowed
632
+ PyObject *version_info;
603
633
  PyObject *py_minor_version = NULL;
604
634
  #endif
605
635
  long minor_version = 0;
606
636
  PyObject *type, *value, *traceback;
607
637
  PyErr_Fetch(&type, &value, &traceback);
608
638
  #if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
609
- minor_version = 11; // we don't yet need to distinguish between versions > 11
639
+ minor_version = 11;
610
640
  #else
611
641
  if (!(version_info = PySys_GetObject("version_info"))) goto end;
612
642
  if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
@@ -664,7 +694,7 @@ class __Pyx_FakeReference {
664
694
  PyObject *fv, PyObject *cell, PyObject* fn,
665
695
  PyObject *name, int fline, PyObject *lnos) {
666
696
  PyCodeObject *result;
667
- PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0); // we don't have access to __pyx_empty_bytes here
697
+ PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
668
698
  if (!empty_bytes) return NULL;
669
699
  result =
670
700
  #if PY_VERSION_HEX >= 0x030C0000
@@ -750,8 +780,13 @@ class __Pyx_FakeReference {
750
780
  typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
751
781
  Py_ssize_t nargs, PyObject *kwnames);
752
782
  #else
753
- #define __Pyx_PyCFunctionFast _PyCFunctionFast
754
- #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
783
+ #if PY_VERSION_HEX >= 0x030d00A4
784
+ # define __Pyx_PyCFunctionFast PyCFunctionFast
785
+ # define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
786
+ #else
787
+ # define __Pyx_PyCFunctionFast _PyCFunctionFast
788
+ # define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
789
+ #endif
755
790
  #endif
756
791
  #if CYTHON_METH_FASTCALL
757
792
  #define __Pyx_METH_FASTCALL METH_FASTCALL
@@ -1103,7 +1138,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
1103
1138
  #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
1104
1139
  #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
1105
1140
  #endif
1106
- #if PY_VERSION_HEX >= 0x030d00A1
1141
+ #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
1107
1142
  #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
1108
1143
  #else
1109
1144
  static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
@@ -1190,7 +1225,7 @@ static CYTHON_INLINE float __PYX_NAN() {
1190
1225
  #endif
1191
1226
 
1192
1227
  #define __PYX_MARK_ERR_POS(f_index, lineno) \
1193
- { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1228
+ { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1194
1229
  #define __PYX_ERR(f_index, lineno, Ln_error) \
1195
1230
  { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
1196
1231
 
@@ -1319,24 +1354,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1319
1354
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1320
1355
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1321
1356
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1322
- #if CYTHON_COMPILING_IN_LIMITED_API
1323
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1324
- {
1325
- const wchar_t *u_end = u;
1326
- while (*u_end++) ;
1327
- return (size_t)(u_end - u - 1);
1328
- }
1329
- #else
1330
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1331
- {
1332
- const Py_UNICODE *u_end = u;
1333
- while (*u_end++) ;
1334
- return (size_t)(u_end - u - 1);
1335
- }
1336
- #endif
1337
1357
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1338
- #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1339
- #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1340
1358
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1341
1359
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1342
1360
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -1386,7 +1404,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1386
1404
  #endif
1387
1405
  typedef Py_ssize_t __Pyx_compact_pylong;
1388
1406
  typedef size_t __Pyx_compact_upylong;
1389
- #else // Py < 3.12
1407
+ #else
1390
1408
  #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
1391
1409
  #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
1392
1410
  #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
@@ -1676,7 +1694,7 @@ typedef struct {
1676
1694
 
1677
1695
  /* #### Code section: numeric_typedefs ### */
1678
1696
 
1679
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":730
1697
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":730
1680
1698
  * # in Cython to enable them only on the right systems.
1681
1699
  *
1682
1700
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1685,7 +1703,7 @@ typedef struct {
1685
1703
  */
1686
1704
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1687
1705
 
1688
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1706
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1689
1707
  *
1690
1708
  * ctypedef npy_int8 int8_t
1691
1709
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1694,7 +1712,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1694
1712
  */
1695
1713
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1696
1714
 
1697
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1715
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1698
1716
  * ctypedef npy_int8 int8_t
1699
1717
  * ctypedef npy_int16 int16_t
1700
1718
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1703,7 +1721,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1703
1721
  */
1704
1722
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1705
1723
 
1706
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1724
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1707
1725
  * ctypedef npy_int16 int16_t
1708
1726
  * ctypedef npy_int32 int32_t
1709
1727
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1712,7 +1730,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1712
1730
  */
1713
1731
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1714
1732
 
1715
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":737
1733
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":737
1716
1734
  * #ctypedef npy_int128 int128_t
1717
1735
  *
1718
1736
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1721,7 +1739,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1721
1739
  */
1722
1740
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1723
1741
 
1724
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1742
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1725
1743
  *
1726
1744
  * ctypedef npy_uint8 uint8_t
1727
1745
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1730,7 +1748,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1730
1748
  */
1731
1749
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1732
1750
 
1733
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1751
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1734
1752
  * ctypedef npy_uint8 uint8_t
1735
1753
  * ctypedef npy_uint16 uint16_t
1736
1754
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1739,7 +1757,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1739
1757
  */
1740
1758
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1741
1759
 
1742
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1760
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1743
1761
  * ctypedef npy_uint16 uint16_t
1744
1762
  * ctypedef npy_uint32 uint32_t
1745
1763
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1748,7 +1766,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1748
1766
  */
1749
1767
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1750
1768
 
1751
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":744
1769
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":744
1752
1770
  * #ctypedef npy_uint128 uint128_t
1753
1771
  *
1754
1772
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1757,7 +1775,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1757
1775
  */
1758
1776
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1759
1777
 
1760
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1778
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1761
1779
  *
1762
1780
  * ctypedef npy_float32 float32_t
1763
1781
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1766,7 +1784,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1766
1784
  */
1767
1785
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1768
1786
 
1769
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":754
1787
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":754
1770
1788
  * # The int types are mapped a bit surprising --
1771
1789
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1772
1790
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1775,7 +1793,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1775
1793
  */
1776
1794
  typedef npy_long __pyx_t_5numpy_int_t;
1777
1795
 
1778
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1796
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1779
1797
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1780
1798
  * ctypedef npy_long int_t
1781
1799
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1784,7 +1802,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1784
1802
  */
1785
1803
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1786
1804
 
1787
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1805
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1788
1806
  * ctypedef npy_longlong longlong_t
1789
1807
  *
1790
1808
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1793,7 +1811,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1793
1811
  */
1794
1812
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1795
1813
 
1796
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1814
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1797
1815
  *
1798
1816
  * ctypedef npy_ulong uint_t
1799
1817
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1802,7 +1820,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1802
1820
  */
1803
1821
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1804
1822
 
1805
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1823
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1806
1824
  * ctypedef npy_ulonglong ulonglong_t
1807
1825
  *
1808
1826
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1811,7 +1829,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1811
1829
  */
1812
1830
  typedef npy_intp __pyx_t_5numpy_intp_t;
1813
1831
 
1814
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1832
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1815
1833
  *
1816
1834
  * ctypedef npy_intp intp_t
1817
1835
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1820,7 +1838,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1820
1838
  */
1821
1839
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1822
1840
 
1823
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1841
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1824
1842
  * ctypedef npy_uintp uintp_t
1825
1843
  *
1826
1844
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1829,7 +1847,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1829
1847
  */
1830
1848
  typedef npy_double __pyx_t_5numpy_float_t;
1831
1849
 
1832
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1850
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1833
1851
  *
1834
1852
  * ctypedef npy_double float_t
1835
1853
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1838,7 +1856,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1838
1856
  */
1839
1857
  typedef npy_double __pyx_t_5numpy_double_t;
1840
1858
 
1841
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1859
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1842
1860
  * ctypedef npy_double float_t
1843
1861
  * ctypedef npy_double double_t
1844
1862
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1930,7 +1948,7 @@ struct __pyx_MemviewEnum_obj;
1930
1948
  struct __pyx_memoryview_obj;
1931
1949
  struct __pyx_memoryviewslice_obj;
1932
1950
 
1933
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1951
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1934
1952
  * ctypedef npy_longdouble longdouble_t
1935
1953
  *
1936
1954
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1939,7 +1957,7 @@ struct __pyx_memoryviewslice_obj;
1939
1957
  */
1940
1958
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1941
1959
 
1942
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1960
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1943
1961
  *
1944
1962
  * ctypedef npy_cfloat cfloat_t
1945
1963
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1948,7 +1966,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1948
1966
  */
1949
1967
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1950
1968
 
1951
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1969
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1952
1970
  * ctypedef npy_cfloat cfloat_t
1953
1971
  * ctypedef npy_cdouble cdouble_t
1954
1972
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1957,7 +1975,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1957
1975
  */
1958
1976
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1959
1977
 
1960
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1978
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1961
1979
  * ctypedef npy_clongdouble clongdouble_t
1962
1980
  *
1963
1981
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2406,8 +2424,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2406
2424
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2407
2425
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2408
2426
  #else
2409
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2410
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2427
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2428
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2411
2429
  #endif
2412
2430
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2413
2431
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2423,8 +2441,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2423
2441
  #else
2424
2442
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2425
2443
  #endif
2426
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2427
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2444
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2445
+ to have the same reference counting */
2446
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2428
2447
  #else
2429
2448
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2430
2449
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2961,22 +2980,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2961
2980
  #endif
2962
2981
 
2963
2982
  /* TypeImport.proto */
2964
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2965
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2983
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2984
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2966
2985
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2967
2986
  #include <stdalign.h>
2968
2987
  #endif
2969
2988
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2970
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2989
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2971
2990
  #else
2972
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2991
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2973
2992
  #endif
2974
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2975
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2976
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2977
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2993
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2994
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2995
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2996
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2978
2997
  };
2979
- 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);
2998
+ 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);
2980
2999
  #endif
2981
3000
 
2982
3001
  /* FetchSharedCythonModule.proto */
@@ -3069,7 +3088,7 @@ typedef struct {
3069
3088
  #endif
3070
3089
  void *defaults;
3071
3090
  int defaults_pyobjects;
3072
- size_t defaults_size; // used by FusedFunction for copying defaults
3091
+ size_t defaults_size;
3073
3092
  int flags;
3074
3093
  PyObject *defaults_tuple;
3075
3094
  PyObject *defaults_kwdict;
@@ -20384,7 +20403,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
20384
20403
  return __pyx_r;
20385
20404
  }
20386
20405
 
20387
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
20406
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
20388
20407
  *
20389
20408
  * @property
20390
20409
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -20395,7 +20414,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
20395
20414
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
20396
20415
  PyObject *__pyx_r;
20397
20416
 
20398
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
20417
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
20399
20418
  * """Returns a borrowed reference to the object owning the data/memory.
20400
20419
  * """
20401
20420
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -20405,7 +20424,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
20405
20424
  __pyx_r = PyArray_BASE(__pyx_v_self);
20406
20425
  goto __pyx_L0;
20407
20426
 
20408
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
20427
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
20409
20428
  *
20410
20429
  * @property
20411
20430
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -20418,7 +20437,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
20418
20437
  return __pyx_r;
20419
20438
  }
20420
20439
 
20421
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
20440
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
20422
20441
  *
20423
20442
  * @property
20424
20443
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -20432,7 +20451,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
20432
20451
  PyArray_Descr *__pyx_t_1;
20433
20452
  __Pyx_RefNannySetupContext("descr", 1);
20434
20453
 
20435
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
20454
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
20436
20455
  * """Returns an owned reference to the dtype of the array.
20437
20456
  * """
20438
20457
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -20445,7 +20464,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
20445
20464
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
20446
20465
  goto __pyx_L0;
20447
20466
 
20448
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
20467
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
20449
20468
  *
20450
20469
  * @property
20451
20470
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -20460,7 +20479,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
20460
20479
  return __pyx_r;
20461
20480
  }
20462
20481
 
20463
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
20482
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
20464
20483
  *
20465
20484
  * @property
20466
20485
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -20471,7 +20490,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
20471
20490
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
20472
20491
  int __pyx_r;
20473
20492
 
20474
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
20493
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
20475
20494
  * """Returns the number of dimensions in the array.
20476
20495
  * """
20477
20496
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -20481,7 +20500,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
20481
20500
  __pyx_r = PyArray_NDIM(__pyx_v_self);
20482
20501
  goto __pyx_L0;
20483
20502
 
20484
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
20503
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
20485
20504
  *
20486
20505
  * @property
20487
20506
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -20494,7 +20513,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
20494
20513
  return __pyx_r;
20495
20514
  }
20496
20515
 
20497
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
20516
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
20498
20517
  *
20499
20518
  * @property
20500
20519
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -20505,7 +20524,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
20505
20524
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
20506
20525
  npy_intp *__pyx_r;
20507
20526
 
20508
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
20527
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
20509
20528
  * Can return NULL for 0-dimensional arrays.
20510
20529
  * """
20511
20530
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -20515,7 +20534,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
20515
20534
  __pyx_r = PyArray_DIMS(__pyx_v_self);
20516
20535
  goto __pyx_L0;
20517
20536
 
20518
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
20537
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
20519
20538
  *
20520
20539
  * @property
20521
20540
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -20528,7 +20547,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
20528
20547
  return __pyx_r;
20529
20548
  }
20530
20549
 
20531
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
20550
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
20532
20551
  *
20533
20552
  * @property
20534
20553
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -20539,7 +20558,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
20539
20558
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
20540
20559
  npy_intp *__pyx_r;
20541
20560
 
20542
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
20561
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
20543
20562
  * The number of elements matches the number of dimensions of the array (ndim).
20544
20563
  * """
20545
20564
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -20549,7 +20568,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
20549
20568
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
20550
20569
  goto __pyx_L0;
20551
20570
 
20552
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
20571
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
20553
20572
  *
20554
20573
  * @property
20555
20574
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -20562,7 +20581,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
20562
20581
  return __pyx_r;
20563
20582
  }
20564
20583
 
20565
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
20584
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
20566
20585
  *
20567
20586
  * @property
20568
20587
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -20573,7 +20592,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
20573
20592
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
20574
20593
  npy_intp __pyx_r;
20575
20594
 
20576
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
20595
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
20577
20596
  * """Returns the total size (in number of elements) of the array.
20578
20597
  * """
20579
20598
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -20583,7 +20602,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
20583
20602
  __pyx_r = PyArray_SIZE(__pyx_v_self);
20584
20603
  goto __pyx_L0;
20585
20604
 
20586
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
20605
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
20587
20606
  *
20588
20607
  * @property
20589
20608
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -20596,7 +20615,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
20596
20615
  return __pyx_r;
20597
20616
  }
20598
20617
 
20599
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
20618
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
20600
20619
  *
20601
20620
  * @property
20602
20621
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -20607,7 +20626,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
20607
20626
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
20608
20627
  char *__pyx_r;
20609
20628
 
20610
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
20629
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
20611
20630
  * of `PyArray_DATA()` instead, which returns a 'void*'.
20612
20631
  * """
20613
20632
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -20617,7 +20636,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
20617
20636
  __pyx_r = PyArray_BYTES(__pyx_v_self);
20618
20637
  goto __pyx_L0;
20619
20638
 
20620
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
20639
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
20621
20640
  *
20622
20641
  * @property
20623
20642
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -20630,7 +20649,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
20630
20649
  return __pyx_r;
20631
20650
  }
20632
20651
 
20633
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
20652
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
20634
20653
  * ctypedef npy_cdouble complex_t
20635
20654
  *
20636
20655
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -20647,7 +20666,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
20647
20666
  int __pyx_clineno = 0;
20648
20667
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
20649
20668
 
20650
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
20669
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
20651
20670
  *
20652
20671
  * cdef inline object PyArray_MultiIterNew1(a):
20653
20672
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -20661,7 +20680,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
20661
20680
  __pyx_t_1 = 0;
20662
20681
  goto __pyx_L0;
20663
20682
 
20664
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
20683
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
20665
20684
  * ctypedef npy_cdouble complex_t
20666
20685
  *
20667
20686
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -20680,7 +20699,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
20680
20699
  return __pyx_r;
20681
20700
  }
20682
20701
 
20683
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
20702
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
20684
20703
  * return PyArray_MultiIterNew(1, <void*>a)
20685
20704
  *
20686
20705
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -20697,7 +20716,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
20697
20716
  int __pyx_clineno = 0;
20698
20717
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
20699
20718
 
20700
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
20719
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
20701
20720
  *
20702
20721
  * cdef inline object PyArray_MultiIterNew2(a, b):
20703
20722
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -20711,7 +20730,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
20711
20730
  __pyx_t_1 = 0;
20712
20731
  goto __pyx_L0;
20713
20732
 
20714
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
20733
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
20715
20734
  * return PyArray_MultiIterNew(1, <void*>a)
20716
20735
  *
20717
20736
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -20730,7 +20749,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
20730
20749
  return __pyx_r;
20731
20750
  }
20732
20751
 
20733
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
20752
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
20734
20753
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
20735
20754
  *
20736
20755
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -20747,7 +20766,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
20747
20766
  int __pyx_clineno = 0;
20748
20767
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
20749
20768
 
20750
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
20769
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
20751
20770
  *
20752
20771
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
20753
20772
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -20761,7 +20780,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
20761
20780
  __pyx_t_1 = 0;
20762
20781
  goto __pyx_L0;
20763
20782
 
20764
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
20783
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
20765
20784
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
20766
20785
  *
20767
20786
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -20780,7 +20799,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
20780
20799
  return __pyx_r;
20781
20800
  }
20782
20801
 
20783
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
20802
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
20784
20803
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
20785
20804
  *
20786
20805
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -20797,7 +20816,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
20797
20816
  int __pyx_clineno = 0;
20798
20817
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
20799
20818
 
20800
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
20819
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
20801
20820
  *
20802
20821
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
20803
20822
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -20811,7 +20830,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
20811
20830
  __pyx_t_1 = 0;
20812
20831
  goto __pyx_L0;
20813
20832
 
20814
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
20833
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
20815
20834
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
20816
20835
  *
20817
20836
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -20830,7 +20849,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
20830
20849
  return __pyx_r;
20831
20850
  }
20832
20851
 
20833
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
20852
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
20834
20853
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
20835
20854
  *
20836
20855
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -20847,7 +20866,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
20847
20866
  int __pyx_clineno = 0;
20848
20867
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
20849
20868
 
20850
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
20869
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
20851
20870
  *
20852
20871
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
20853
20872
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -20861,7 +20880,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
20861
20880
  __pyx_t_1 = 0;
20862
20881
  goto __pyx_L0;
20863
20882
 
20864
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
20883
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
20865
20884
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
20866
20885
  *
20867
20886
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -20880,7 +20899,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
20880
20899
  return __pyx_r;
20881
20900
  }
20882
20901
 
20883
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
20902
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
20884
20903
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
20885
20904
  *
20886
20905
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -20894,7 +20913,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20894
20913
  int __pyx_t_1;
20895
20914
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
20896
20915
 
20897
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
20916
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
20898
20917
  *
20899
20918
  * cdef inline tuple PyDataType_SHAPE(dtype d):
20900
20919
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -20904,7 +20923,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20904
20923
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
20905
20924
  if (__pyx_t_1) {
20906
20925
 
20907
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
20926
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
20908
20927
  * cdef inline tuple PyDataType_SHAPE(dtype d):
20909
20928
  * if PyDataType_HASSUBARRAY(d):
20910
20929
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -20916,7 +20935,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20916
20935
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
20917
20936
  goto __pyx_L0;
20918
20937
 
20919
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
20938
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
20920
20939
  *
20921
20940
  * cdef inline tuple PyDataType_SHAPE(dtype d):
20922
20941
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -20925,7 +20944,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20925
20944
  */
20926
20945
  }
20927
20946
 
20928
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
20947
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
20929
20948
  * return <tuple>d.subarray.shape
20930
20949
  * else:
20931
20950
  * return () # <<<<<<<<<<<<<<
@@ -20939,7 +20958,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20939
20958
  goto __pyx_L0;
20940
20959
  }
20941
20960
 
20942
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
20961
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
20943
20962
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
20944
20963
  *
20945
20964
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -20954,7 +20973,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
20954
20973
  return __pyx_r;
20955
20974
  }
20956
20975
 
20957
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
20976
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
20958
20977
  * int _import_umath() except -1
20959
20978
  *
20960
20979
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -20968,7 +20987,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
20968
20987
  const char *__pyx_filename = NULL;
20969
20988
  int __pyx_clineno = 0;
20970
20989
 
20971
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
20990
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
20972
20991
  *
20973
20992
  * cdef inline void set_array_base(ndarray arr, object base):
20974
20993
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -20977,7 +20996,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
20977
20996
  */
20978
20997
  Py_INCREF(__pyx_v_base);
20979
20998
 
20980
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
20999
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
20981
21000
  * cdef inline void set_array_base(ndarray arr, object base):
20982
21001
  * Py_INCREF(base) # important to do this before stealing the reference below!
20983
21002
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -20986,7 +21005,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
20986
21005
  */
20987
21006
  __pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(2, 970, __pyx_L1_error)
20988
21007
 
20989
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
21008
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
20990
21009
  * int _import_umath() except -1
20991
21010
  *
20992
21011
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -21001,7 +21020,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
21001
21020
  __pyx_L0:;
21002
21021
  }
21003
21022
 
21004
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
21023
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
21005
21024
  * PyArray_SetBaseObject(arr, base)
21006
21025
  *
21007
21026
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -21016,7 +21035,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21016
21035
  int __pyx_t_1;
21017
21036
  __Pyx_RefNannySetupContext("get_array_base", 1);
21018
21037
 
21019
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
21038
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
21020
21039
  *
21021
21040
  * cdef inline object get_array_base(ndarray arr):
21022
21041
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -21025,7 +21044,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21025
21044
  */
21026
21045
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
21027
21046
 
21028
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
21047
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
21029
21048
  * cdef inline object get_array_base(ndarray arr):
21030
21049
  * base = PyArray_BASE(arr)
21031
21050
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -21035,7 +21054,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21035
21054
  __pyx_t_1 = (__pyx_v_base == NULL);
21036
21055
  if (__pyx_t_1) {
21037
21056
 
21038
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
21057
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
21039
21058
  * base = PyArray_BASE(arr)
21040
21059
  * if base is NULL:
21041
21060
  * return None # <<<<<<<<<<<<<<
@@ -21046,7 +21065,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21046
21065
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
21047
21066
  goto __pyx_L0;
21048
21067
 
21049
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
21068
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
21050
21069
  * cdef inline object get_array_base(ndarray arr):
21051
21070
  * base = PyArray_BASE(arr)
21052
21071
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -21055,7 +21074,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21055
21074
  */
21056
21075
  }
21057
21076
 
21058
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
21077
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
21059
21078
  * if base is NULL:
21060
21079
  * return None
21061
21080
  * return <object>base # <<<<<<<<<<<<<<
@@ -21067,7 +21086,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21067
21086
  __pyx_r = ((PyObject *)__pyx_v_base);
21068
21087
  goto __pyx_L0;
21069
21088
 
21070
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
21089
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
21071
21090
  * PyArray_SetBaseObject(arr, base)
21072
21091
  *
21073
21092
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -21082,7 +21101,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
21082
21101
  return __pyx_r;
21083
21102
  }
21084
21103
 
21085
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
21104
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
21086
21105
  * # Versions of the import_* functions which are more suitable for
21087
21106
  * # Cython code.
21088
21107
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -21106,7 +21125,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21106
21125
  int __pyx_clineno = 0;
21107
21126
  __Pyx_RefNannySetupContext("import_array", 1);
21108
21127
 
21109
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
21128
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
21110
21129
  * # Cython code.
21111
21130
  * cdef inline int import_array() except -1:
21112
21131
  * try: # <<<<<<<<<<<<<<
@@ -21122,7 +21141,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21122
21141
  __Pyx_XGOTREF(__pyx_t_3);
21123
21142
  /*try:*/ {
21124
21143
 
21125
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
21144
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
21126
21145
  * cdef inline int import_array() except -1:
21127
21146
  * try:
21128
21147
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -21131,7 +21150,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21131
21150
  */
21132
21151
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
21133
21152
 
21134
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
21153
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
21135
21154
  * # Cython code.
21136
21155
  * cdef inline int import_array() except -1:
21137
21156
  * try: # <<<<<<<<<<<<<<
@@ -21145,7 +21164,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21145
21164
  goto __pyx_L8_try_end;
21146
21165
  __pyx_L3_error:;
21147
21166
 
21148
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
21167
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
21149
21168
  * try:
21150
21169
  * __pyx_import_array()
21151
21170
  * except Exception: # <<<<<<<<<<<<<<
@@ -21160,7 +21179,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21160
21179
  __Pyx_XGOTREF(__pyx_t_6);
21161
21180
  __Pyx_XGOTREF(__pyx_t_7);
21162
21181
 
21163
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
21182
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
21164
21183
  * __pyx_import_array()
21165
21184
  * except Exception:
21166
21185
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -21175,7 +21194,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21175
21194
  }
21176
21195
  goto __pyx_L5_except_error;
21177
21196
 
21178
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
21197
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
21179
21198
  * # Cython code.
21180
21199
  * cdef inline int import_array() except -1:
21181
21200
  * try: # <<<<<<<<<<<<<<
@@ -21191,7 +21210,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21191
21210
  __pyx_L8_try_end:;
21192
21211
  }
21193
21212
 
21194
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
21213
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
21195
21214
  * # Versions of the import_* functions which are more suitable for
21196
21215
  * # Cython code.
21197
21216
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -21214,7 +21233,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
21214
21233
  return __pyx_r;
21215
21234
  }
21216
21235
 
21217
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
21236
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
21218
21237
  * raise ImportError("numpy.core.multiarray failed to import")
21219
21238
  *
21220
21239
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -21238,7 +21257,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21238
21257
  int __pyx_clineno = 0;
21239
21258
  __Pyx_RefNannySetupContext("import_umath", 1);
21240
21259
 
21241
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
21260
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
21242
21261
  *
21243
21262
  * cdef inline int import_umath() except -1:
21244
21263
  * try: # <<<<<<<<<<<<<<
@@ -21254,7 +21273,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21254
21273
  __Pyx_XGOTREF(__pyx_t_3);
21255
21274
  /*try:*/ {
21256
21275
 
21257
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
21276
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
21258
21277
  * cdef inline int import_umath() except -1:
21259
21278
  * try:
21260
21279
  * _import_umath() # <<<<<<<<<<<<<<
@@ -21263,7 +21282,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21263
21282
  */
21264
21283
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
21265
21284
 
21266
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
21285
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
21267
21286
  *
21268
21287
  * cdef inline int import_umath() except -1:
21269
21288
  * try: # <<<<<<<<<<<<<<
@@ -21277,7 +21296,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21277
21296
  goto __pyx_L8_try_end;
21278
21297
  __pyx_L3_error:;
21279
21298
 
21280
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
21299
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
21281
21300
  * try:
21282
21301
  * _import_umath()
21283
21302
  * except Exception: # <<<<<<<<<<<<<<
@@ -21292,7 +21311,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21292
21311
  __Pyx_XGOTREF(__pyx_t_6);
21293
21312
  __Pyx_XGOTREF(__pyx_t_7);
21294
21313
 
21295
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
21314
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
21296
21315
  * _import_umath()
21297
21316
  * except Exception:
21298
21317
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -21307,7 +21326,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21307
21326
  }
21308
21327
  goto __pyx_L5_except_error;
21309
21328
 
21310
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
21329
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
21311
21330
  *
21312
21331
  * cdef inline int import_umath() except -1:
21313
21332
  * try: # <<<<<<<<<<<<<<
@@ -21323,7 +21342,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21323
21342
  __pyx_L8_try_end:;
21324
21343
  }
21325
21344
 
21326
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
21345
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
21327
21346
  * raise ImportError("numpy.core.multiarray failed to import")
21328
21347
  *
21329
21348
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -21346,7 +21365,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
21346
21365
  return __pyx_r;
21347
21366
  }
21348
21367
 
21349
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
21368
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
21350
21369
  * raise ImportError("numpy.core.umath failed to import")
21351
21370
  *
21352
21371
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -21370,7 +21389,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21370
21389
  int __pyx_clineno = 0;
21371
21390
  __Pyx_RefNannySetupContext("import_ufunc", 1);
21372
21391
 
21373
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
21392
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
21374
21393
  *
21375
21394
  * cdef inline int import_ufunc() except -1:
21376
21395
  * try: # <<<<<<<<<<<<<<
@@ -21386,7 +21405,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21386
21405
  __Pyx_XGOTREF(__pyx_t_3);
21387
21406
  /*try:*/ {
21388
21407
 
21389
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
21408
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
21390
21409
  * cdef inline int import_ufunc() except -1:
21391
21410
  * try:
21392
21411
  * _import_umath() # <<<<<<<<<<<<<<
@@ -21395,7 +21414,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21395
21414
  */
21396
21415
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
21397
21416
 
21398
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
21417
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
21399
21418
  *
21400
21419
  * cdef inline int import_ufunc() except -1:
21401
21420
  * try: # <<<<<<<<<<<<<<
@@ -21409,7 +21428,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21409
21428
  goto __pyx_L8_try_end;
21410
21429
  __pyx_L3_error:;
21411
21430
 
21412
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
21431
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
21413
21432
  * try:
21414
21433
  * _import_umath()
21415
21434
  * except Exception: # <<<<<<<<<<<<<<
@@ -21424,7 +21443,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21424
21443
  __Pyx_XGOTREF(__pyx_t_6);
21425
21444
  __Pyx_XGOTREF(__pyx_t_7);
21426
21445
 
21427
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
21446
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
21428
21447
  * _import_umath()
21429
21448
  * except Exception:
21430
21449
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -21439,7 +21458,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21439
21458
  }
21440
21459
  goto __pyx_L5_except_error;
21441
21460
 
21442
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
21461
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
21443
21462
  *
21444
21463
  * cdef inline int import_ufunc() except -1:
21445
21464
  * try: # <<<<<<<<<<<<<<
@@ -21455,7 +21474,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21455
21474
  __pyx_L8_try_end:;
21456
21475
  }
21457
21476
 
21458
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
21477
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
21459
21478
  * raise ImportError("numpy.core.umath failed to import")
21460
21479
  *
21461
21480
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -21478,7 +21497,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21478
21497
  return __pyx_r;
21479
21498
  }
21480
21499
 
21481
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
21500
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
21482
21501
  *
21483
21502
  *
21484
21503
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -21489,7 +21508,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
21489
21508
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
21490
21509
  int __pyx_r;
21491
21510
 
21492
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
21511
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
21493
21512
  * bool
21494
21513
  * """
21495
21514
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -21499,7 +21518,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
21499
21518
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
21500
21519
  goto __pyx_L0;
21501
21520
 
21502
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
21521
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
21503
21522
  *
21504
21523
  *
21505
21524
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -21512,7 +21531,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
21512
21531
  return __pyx_r;
21513
21532
  }
21514
21533
 
21515
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
21534
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
21516
21535
  *
21517
21536
  *
21518
21537
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -21523,7 +21542,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
21523
21542
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
21524
21543
  int __pyx_r;
21525
21544
 
21526
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
21545
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
21527
21546
  * bool
21528
21547
  * """
21529
21548
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -21533,7 +21552,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
21533
21552
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
21534
21553
  goto __pyx_L0;
21535
21554
 
21536
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
21555
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
21537
21556
  *
21538
21557
  *
21539
21558
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -21546,7 +21565,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
21546
21565
  return __pyx_r;
21547
21566
  }
21548
21567
 
21549
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
21568
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
21550
21569
  *
21551
21570
  *
21552
21571
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -21557,7 +21576,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
21557
21576
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
21558
21577
  npy_datetime __pyx_r;
21559
21578
 
21560
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
21579
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
21561
21580
  * also needed. That can be found using `get_datetime64_unit`.
21562
21581
  * """
21563
21582
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -21567,7 +21586,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
21567
21586
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
21568
21587
  goto __pyx_L0;
21569
21588
 
21570
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
21589
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
21571
21590
  *
21572
21591
  *
21573
21592
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -21580,7 +21599,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
21580
21599
  return __pyx_r;
21581
21600
  }
21582
21601
 
21583
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
21602
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
21584
21603
  *
21585
21604
  *
21586
21605
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -21591,7 +21610,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
21591
21610
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
21592
21611
  npy_timedelta __pyx_r;
21593
21612
 
21594
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
21613
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
21595
21614
  * returns the int64 value underlying scalar numpy timedelta64 object
21596
21615
  * """
21597
21616
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -21601,7 +21620,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
21601
21620
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
21602
21621
  goto __pyx_L0;
21603
21622
 
21604
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
21623
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
21605
21624
  *
21606
21625
  *
21607
21626
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -21614,7 +21633,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
21614
21633
  return __pyx_r;
21615
21634
  }
21616
21635
 
21617
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
21636
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
21618
21637
  *
21619
21638
  *
21620
21639
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -21625,7 +21644,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
21625
21644
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
21626
21645
  NPY_DATETIMEUNIT __pyx_r;
21627
21646
 
21628
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
21647
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
21629
21648
  * returns the unit part of the dtype for a numpy datetime64 object.
21630
21649
  * """
21631
21650
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -21633,7 +21652,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
21633
21652
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
21634
21653
  goto __pyx_L0;
21635
21654
 
21636
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
21655
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
21637
21656
  *
21638
21657
  *
21639
21658
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -52484,8 +52503,10 @@ static PyTypeObject __pyx_type_7biotite_8sequence_5align_9kmertable_BucketKmerTa
52484
52503
  };
52485
52504
  #endif
52486
52505
 
52506
+ #if CYTHON_USE_FREELISTS
52487
52507
  static struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr *__pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr[8];
52488
52508
  static int __pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr = 0;
52509
+ #endif
52489
52510
 
52490
52511
  static PyObject *__pyx_tp_new_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr(PyTypeObject *t, CYTHON_UNUSED PyObject *a, CYTHON_UNUSED PyObject *k) {
52491
52512
  PyObject *o;
@@ -52493,7 +52514,7 @@ static PyObject *__pyx_tp_new_7biotite_8sequence_5align_9kmertable___pyx_scope_s
52493
52514
  allocfunc alloc_func = (allocfunc)PyType_GetSlot(t, Py_tp_alloc);
52494
52515
  o = alloc_func(t, 0);
52495
52516
  #else
52496
- #if CYTHON_COMPILING_IN_CPYTHON
52517
+ #if CYTHON_USE_FREELISTS
52497
52518
  if (likely((int)(__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr > 0) & (int)(t->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr)))) {
52498
52519
  o = (PyObject*)__pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr[--__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr];
52499
52520
  memset(o, 0, sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr));
@@ -52522,7 +52543,7 @@ static void __pyx_tp_dealloc_7biotite_8sequence_5align_9kmertable___pyx_scope_st
52522
52543
  Py_CLEAR(p->__pyx_genexpr_arg_0);
52523
52544
  Py_CLEAR(p->__pyx_v_sequence);
52524
52545
  Py_CLEAR(p->__pyx_t_0);
52525
- #if CYTHON_COMPILING_IN_CPYTHON
52546
+ #if CYTHON_USE_FREELISTS
52526
52547
  if (((int)(__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr < 8) & (int)(Py_TYPE(o)->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr)))) {
52527
52548
  __pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr[__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr++] = ((struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct__genexpr *)o);
52528
52549
  } else
@@ -52651,8 +52672,10 @@ static PyTypeObject __pyx_type_7biotite_8sequence_5align_9kmertable___pyx_scope_
52651
52672
  };
52652
52673
  #endif
52653
52674
 
52675
+ #if CYTHON_USE_FREELISTS
52654
52676
  static struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr *__pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr[8];
52655
52677
  static int __pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr = 0;
52678
+ #endif
52656
52679
 
52657
52680
  static PyObject *__pyx_tp_new_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr(PyTypeObject *t, CYTHON_UNUSED PyObject *a, CYTHON_UNUSED PyObject *k) {
52658
52681
  PyObject *o;
@@ -52660,7 +52683,7 @@ static PyObject *__pyx_tp_new_7biotite_8sequence_5align_9kmertable___pyx_scope_s
52660
52683
  allocfunc alloc_func = (allocfunc)PyType_GetSlot(t, Py_tp_alloc);
52661
52684
  o = alloc_func(t, 0);
52662
52685
  #else
52663
- #if CYTHON_COMPILING_IN_CPYTHON
52686
+ #if CYTHON_USE_FREELISTS
52664
52687
  if (likely((int)(__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr > 0) & (int)(t->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr)))) {
52665
52688
  o = (PyObject*)__pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr[--__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr];
52666
52689
  memset(o, 0, sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr));
@@ -52689,7 +52712,7 @@ static void __pyx_tp_dealloc_7biotite_8sequence_5align_9kmertable___pyx_scope_st
52689
52712
  Py_CLEAR(p->__pyx_genexpr_arg_0);
52690
52713
  Py_CLEAR(p->__pyx_v_sequence);
52691
52714
  Py_CLEAR(p->__pyx_t_0);
52692
- #if CYTHON_COMPILING_IN_CPYTHON
52715
+ #if CYTHON_USE_FREELISTS
52693
52716
  if (((int)(__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr < 8) & (int)(Py_TYPE(o)->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr)))) {
52694
52717
  __pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr[__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr++] = ((struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_1_genexpr *)o);
52695
52718
  } else
@@ -52818,8 +52841,10 @@ static PyTypeObject __pyx_type_7biotite_8sequence_5align_9kmertable___pyx_scope_
52818
52841
  };
52819
52842
  #endif
52820
52843
 
52844
+ #if CYTHON_USE_FREELISTS
52821
52845
  static struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr *__pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr[8];
52822
52846
  static int __pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr = 0;
52847
+ #endif
52823
52848
 
52824
52849
  static PyObject *__pyx_tp_new_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr(PyTypeObject *t, CYTHON_UNUSED PyObject *a, CYTHON_UNUSED PyObject *k) {
52825
52850
  PyObject *o;
@@ -52827,7 +52852,7 @@ static PyObject *__pyx_tp_new_7biotite_8sequence_5align_9kmertable___pyx_scope_s
52827
52852
  allocfunc alloc_func = (allocfunc)PyType_GetSlot(t, Py_tp_alloc);
52828
52853
  o = alloc_func(t, 0);
52829
52854
  #else
52830
- #if CYTHON_COMPILING_IN_CPYTHON
52855
+ #if CYTHON_USE_FREELISTS
52831
52856
  if (likely((int)(__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr > 0) & (int)(t->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr)))) {
52832
52857
  o = (PyObject*)__pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr[--__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr];
52833
52858
  memset(o, 0, sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr));
@@ -52856,7 +52881,7 @@ static void __pyx_tp_dealloc_7biotite_8sequence_5align_9kmertable___pyx_scope_st
52856
52881
  Py_CLEAR(p->__pyx_genexpr_arg_0);
52857
52882
  Py_CLEAR(p->__pyx_v_table);
52858
52883
  Py_CLEAR(p->__pyx_t_0);
52859
- #if CYTHON_COMPILING_IN_CPYTHON
52884
+ #if CYTHON_USE_FREELISTS
52860
52885
  if (((int)(__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr < 8) & (int)(Py_TYPE(o)->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr)))) {
52861
52886
  __pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr[__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr++] = ((struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_2_genexpr *)o);
52862
52887
  } else
@@ -52985,8 +53010,10 @@ static PyTypeObject __pyx_type_7biotite_8sequence_5align_9kmertable___pyx_scope_
52985
53010
  };
52986
53011
  #endif
52987
53012
 
53013
+ #if CYTHON_USE_FREELISTS
52988
53014
  static struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr *__pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr[8];
52989
53015
  static int __pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr = 0;
53016
+ #endif
52990
53017
 
52991
53018
  static PyObject *__pyx_tp_new_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr(PyTypeObject *t, CYTHON_UNUSED PyObject *a, CYTHON_UNUSED PyObject *k) {
52992
53019
  PyObject *o;
@@ -52994,7 +53021,7 @@ static PyObject *__pyx_tp_new_7biotite_8sequence_5align_9kmertable___pyx_scope_s
52994
53021
  allocfunc alloc_func = (allocfunc)PyType_GetSlot(t, Py_tp_alloc);
52995
53022
  o = alloc_func(t, 0);
52996
53023
  #else
52997
- #if CYTHON_COMPILING_IN_CPYTHON
53024
+ #if CYTHON_USE_FREELISTS
52998
53025
  if (likely((int)(__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr > 0) & (int)(t->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr)))) {
52999
53026
  o = (PyObject*)__pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr[--__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr];
53000
53027
  memset(o, 0, sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr));
@@ -53023,7 +53050,7 @@ static void __pyx_tp_dealloc_7biotite_8sequence_5align_9kmertable___pyx_scope_st
53023
53050
  Py_CLEAR(p->__pyx_genexpr_arg_0);
53024
53051
  Py_CLEAR(p->__pyx_v_table);
53025
53052
  Py_CLEAR(p->__pyx_t_0);
53026
- #if CYTHON_COMPILING_IN_CPYTHON
53053
+ #if CYTHON_USE_FREELISTS
53027
53054
  if (((int)(__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr < 8) & (int)(Py_TYPE(o)->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr)))) {
53028
53055
  __pyx_freelist_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr[__pyx_freecount_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr++] = ((struct __pyx_obj_7biotite_8sequence_5align_9kmertable___pyx_scope_struct_3_genexpr *)o);
53029
53056
  } else
@@ -54591,7 +54618,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
54591
54618
  __Pyx_GOTREF(__pyx_tuple__8);
54592
54619
  __Pyx_GIVEREF(__pyx_tuple__8);
54593
54620
 
54594
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
54621
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
54595
54622
  * __pyx_import_array()
54596
54623
  * except Exception:
54597
54624
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -54602,7 +54629,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
54602
54629
  __Pyx_GOTREF(__pyx_tuple__9);
54603
54630
  __Pyx_GIVEREF(__pyx_tuple__9);
54604
54631
 
54605
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
54632
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
54606
54633
  * _import_umath()
54607
54634
  * except Exception:
54608
54635
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -55874,33 +55901,33 @@ static int __Pyx_modinit_type_import_code(void) {
55874
55901
  /*--- Type import code ---*/
55875
55902
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
55876
55903
  __Pyx_GOTREF(__pyx_t_1);
55877
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
55904
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
55878
55905
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
55879
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
55906
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
55880
55907
  #elif CYTHON_COMPILING_IN_LIMITED_API
55881
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
55908
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
55882
55909
  #else
55883
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
55910
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
55884
55911
  #endif
55885
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
55912
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
55886
55913
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
55887
55914
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
55888
55915
  __Pyx_GOTREF(__pyx_t_1);
55889
- __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
55890
- __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
55891
- __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
55892
- __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
55893
- __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 809, __pyx_L1_error)
55894
- __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 811, __pyx_L1_error)
55895
- __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 813, __pyx_L1_error)
55896
- __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 815, __pyx_L1_error)
55897
- __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 817, __pyx_L1_error)
55898
- __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 819, __pyx_L1_error)
55899
- __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 821, __pyx_L1_error)
55900
- __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 823, __pyx_L1_error)
55901
- __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 825, __pyx_L1_error)
55902
- __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 827, __pyx_L1_error)
55903
- __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 866, __pyx_L1_error)
55916
+ __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
55917
+ __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
55918
+ __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
55919
+ __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
55920
+ __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 809, __pyx_L1_error)
55921
+ __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 811, __pyx_L1_error)
55922
+ __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 813, __pyx_L1_error)
55923
+ __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 815, __pyx_L1_error)
55924
+ __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 817, __pyx_L1_error)
55925
+ __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 819, __pyx_L1_error)
55926
+ __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 821, __pyx_L1_error)
55927
+ __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 823, __pyx_L1_error)
55928
+ __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 825, __pyx_L1_error)
55929
+ __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 827, __pyx_L1_error)
55930
+ __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 866, __pyx_L1_error)
55904
55931
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
55905
55932
  __Pyx_RefNannyFinishContext();
55906
55933
  return 0;
@@ -58096,11 +58123,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
58096
58123
  {
58097
58124
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
58098
58125
  if (unlikely(eq != 0)) {
58099
- if (unlikely(eq < 0)) return NULL; // error
58126
+ if (unlikely(eq < 0)) return NULL;
58100
58127
  return kwvalues[i];
58101
58128
  }
58102
58129
  }
58103
- return NULL; // not found (no exception set)
58130
+ return NULL;
58104
58131
  }
58105
58132
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
58106
58133
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -58213,7 +58240,7 @@ static int __Pyx_ParseOptionalKeywords(
58213
58240
  if (*name) {
58214
58241
  values[name-argnames] = value;
58215
58242
  #if CYTHON_AVOID_BORROWED_REFS
58216
- Py_INCREF(value); // transfer ownership of value to values
58243
+ Py_INCREF(value);
58217
58244
  Py_DECREF(key);
58218
58245
  #endif
58219
58246
  key = NULL;
@@ -58232,7 +58259,7 @@ static int __Pyx_ParseOptionalKeywords(
58232
58259
  && _PyString_Eq(**name, key)) {
58233
58260
  values[name-argnames] = value;
58234
58261
  #if CYTHON_AVOID_BORROWED_REFS
58235
- value = NULL; // ownership transferred to values
58262
+ value = NULL;
58236
58263
  #endif
58237
58264
  break;
58238
58265
  }
@@ -58264,7 +58291,7 @@ static int __Pyx_ParseOptionalKeywords(
58264
58291
  if (cmp == 0) {
58265
58292
  values[name-argnames] = value;
58266
58293
  #if CYTHON_AVOID_BORROWED_REFS
58267
- value = NULL; // ownership transferred to values
58294
+ value = NULL;
58268
58295
  #endif
58269
58296
  break;
58270
58297
  }
@@ -60186,9 +60213,10 @@ static void __Pyx_Generator_Replace_StopIteration(int in_async_gen) {
60186
60213
 
60187
60214
  /* IterFinish */
60188
60215
  static CYTHON_INLINE int __Pyx_IterFinish(void) {
60216
+ PyObject* exc_type;
60189
60217
  __Pyx_PyThreadState_declare
60190
60218
  __Pyx_PyThreadState_assign
60191
- PyObject* exc_type = __Pyx_PyErr_CurrentExceptionType();
60219
+ exc_type = __Pyx_PyErr_CurrentExceptionType();
60192
60220
  if (unlikely(exc_type)) {
60193
60221
  if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
60194
60222
  return -1;
@@ -61372,10 +61400,10 @@ __PYX_GOOD:
61372
61400
  #endif
61373
61401
 
61374
61402
  /* TypeImport */
61375
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
61376
- #define __PYX_HAVE_RT_ImportType_3_0_7
61377
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
61378
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
61403
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
61404
+ #define __PYX_HAVE_RT_ImportType_3_0_10
61405
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
61406
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
61379
61407
  {
61380
61408
  PyObject *result = 0;
61381
61409
  char warning[200];
@@ -61429,7 +61457,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
61429
61457
  module_name, class_name, size, basicsize+itemsize);
61430
61458
  goto bad;
61431
61459
  }
61432
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
61460
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
61433
61461
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
61434
61462
  PyErr_Format(PyExc_ValueError,
61435
61463
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -61437,7 +61465,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
61437
61465
  module_name, class_name, size, basicsize, basicsize+itemsize);
61438
61466
  goto bad;
61439
61467
  }
61440
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
61468
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
61441
61469
  PyOS_snprintf(warning, sizeof(warning),
61442
61470
  "%s.%s size changed, may indicate binary incompatibility. "
61443
61471
  "Expected %zd from C header, got %zd from PyObject",
@@ -62437,7 +62465,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
62437
62465
  default:
62438
62466
  return NULL;
62439
62467
  }
62440
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
62468
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
62441
62469
  }
62442
62470
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
62443
62471
  {
@@ -62919,7 +62947,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
62919
62947
  #else
62920
62948
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
62921
62949
  #endif
62922
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
62950
+ Py_XDECREF(py_funcname);
62923
62951
  return py_code;
62924
62952
  bad:
62925
62953
  Py_XDECREF(py_funcname);