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
  {
@@ -37,10 +37,10 @@ END: Cython Metadata */
37
37
  #else
38
38
  #define __PYX_EXTRA_ABI_MODULE_NAME ""
39
39
  #endif
40
- #define CYTHON_ABI "3_0_7" __PYX_EXTRA_ABI_MODULE_NAME
40
+ #define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
41
41
  #define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
42
42
  #define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
43
- #define CYTHON_HEX_VERSION 0x030007F0
43
+ #define CYTHON_HEX_VERSION 0x03000AF0
44
44
  #define CYTHON_FUTURE_DIVISION 1
45
45
  #include <stddef.h>
46
46
  #ifndef offsetof
@@ -132,6 +132,8 @@ END: Cython Metadata */
132
132
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
133
133
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
134
134
  #endif
135
+ #undef CYTHON_USE_FREELISTS
136
+ #define CYTHON_USE_FREELISTS 0
135
137
  #elif defined(PYPY_VERSION)
136
138
  #define CYTHON_COMPILING_IN_PYPY 1
137
139
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -193,6 +195,8 @@ END: Cython Metadata */
193
195
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
194
196
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
195
197
  #endif
198
+ #undef CYTHON_USE_FREELISTS
199
+ #define CYTHON_USE_FREELISTS 0
196
200
  #elif defined(CYTHON_LIMITED_API)
197
201
  #ifdef Py_LIMITED_API
198
202
  #undef __PYX_LIMITED_VERSION_HEX
@@ -254,6 +258,8 @@ END: Cython Metadata */
254
258
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
255
259
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
256
260
  #endif
261
+ #undef CYTHON_USE_FREELISTS
262
+ #define CYTHON_USE_FREELISTS 0
257
263
  #elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
258
264
  #define CYTHON_COMPILING_IN_PYPY 0
259
265
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -263,11 +269,17 @@ END: Cython Metadata */
263
269
  #ifndef CYTHON_USE_TYPE_SLOTS
264
270
  #define CYTHON_USE_TYPE_SLOTS 1
265
271
  #endif
272
+ #ifndef CYTHON_USE_TYPE_SPECS
273
+ #define CYTHON_USE_TYPE_SPECS 0
274
+ #endif
266
275
  #undef CYTHON_USE_PYTYPE_LOOKUP
267
276
  #define CYTHON_USE_PYTYPE_LOOKUP 0
268
277
  #ifndef CYTHON_USE_ASYNC_SLOTS
269
278
  #define CYTHON_USE_ASYNC_SLOTS 1
270
279
  #endif
280
+ #ifndef CYTHON_USE_PYLONG_INTERNALS
281
+ #define CYTHON_USE_PYLONG_INTERNALS 0
282
+ #endif
271
283
  #undef CYTHON_USE_PYLIST_INTERNALS
272
284
  #define CYTHON_USE_PYLIST_INTERNALS 0
273
285
  #ifndef CYTHON_USE_UNICODE_INTERNALS
@@ -275,8 +287,6 @@ END: Cython Metadata */
275
287
  #endif
276
288
  #undef CYTHON_USE_UNICODE_WRITER
277
289
  #define CYTHON_USE_UNICODE_WRITER 0
278
- #undef CYTHON_USE_PYLONG_INTERNALS
279
- #define CYTHON_USE_PYLONG_INTERNALS 0
280
290
  #ifndef CYTHON_AVOID_BORROWED_REFS
281
291
  #define CYTHON_AVOID_BORROWED_REFS 0
282
292
  #endif
@@ -288,11 +298,22 @@ END: Cython Metadata */
288
298
  #endif
289
299
  #undef CYTHON_FAST_THREAD_STATE
290
300
  #define CYTHON_FAST_THREAD_STATE 0
301
+ #undef CYTHON_FAST_GIL
302
+ #define CYTHON_FAST_GIL 0
303
+ #ifndef CYTHON_METH_FASTCALL
304
+ #define CYTHON_METH_FASTCALL 1
305
+ #endif
291
306
  #undef CYTHON_FAST_PYCALL
292
307
  #define CYTHON_FAST_PYCALL 0
308
+ #ifndef CYTHON_PEP487_INIT_SUBCLASS
309
+ #define CYTHON_PEP487_INIT_SUBCLASS 1
310
+ #endif
293
311
  #ifndef CYTHON_PEP489_MULTI_PHASE_INIT
294
312
  #define CYTHON_PEP489_MULTI_PHASE_INIT 1
295
313
  #endif
314
+ #ifndef CYTHON_USE_MODULE_STATE
315
+ #define CYTHON_USE_MODULE_STATE 0
316
+ #endif
296
317
  #ifndef CYTHON_USE_TP_FINALIZE
297
318
  #define CYTHON_USE_TP_FINALIZE 1
298
319
  #endif
@@ -300,6 +321,12 @@ END: Cython Metadata */
300
321
  #define CYTHON_USE_DICT_VERSIONS 0
301
322
  #undef CYTHON_USE_EXC_INFO_STACK
302
323
  #define CYTHON_USE_EXC_INFO_STACK 0
324
+ #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
325
+ #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
326
+ #endif
327
+ #ifndef CYTHON_USE_FREELISTS
328
+ #define CYTHON_USE_FREELISTS 0
329
+ #endif
303
330
  #else
304
331
  #define CYTHON_COMPILING_IN_PYPY 0
305
332
  #define CYTHON_COMPILING_IN_CPYTHON 1
@@ -390,6 +417,9 @@ END: Cython Metadata */
390
417
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
391
418
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
392
419
  #endif
420
+ #ifndef CYTHON_USE_FREELISTS
421
+ #define CYTHON_USE_FREELISTS 1
422
+ #endif
393
423
  #endif
394
424
  #if !defined(CYTHON_FAST_PYCCALL)
395
425
  #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
@@ -582,14 +612,14 @@ END: Cython Metadata */
582
612
  PyObject *exception_table = NULL;
583
613
  PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
584
614
  #if __PYX_LIMITED_VERSION_HEX < 0x030B0000
585
- PyObject *version_info; // borrowed
615
+ PyObject *version_info;
586
616
  PyObject *py_minor_version = NULL;
587
617
  #endif
588
618
  long minor_version = 0;
589
619
  PyObject *type, *value, *traceback;
590
620
  PyErr_Fetch(&type, &value, &traceback);
591
621
  #if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
592
- minor_version = 11; // we don't yet need to distinguish between versions > 11
622
+ minor_version = 11;
593
623
  #else
594
624
  if (!(version_info = PySys_GetObject("version_info"))) goto end;
595
625
  if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
@@ -647,7 +677,7 @@ END: Cython Metadata */
647
677
  PyObject *fv, PyObject *cell, PyObject* fn,
648
678
  PyObject *name, int fline, PyObject *lnos) {
649
679
  PyCodeObject *result;
650
- PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0); // we don't have access to __pyx_empty_bytes here
680
+ PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
651
681
  if (!empty_bytes) return NULL;
652
682
  result =
653
683
  #if PY_VERSION_HEX >= 0x030C0000
@@ -733,8 +763,13 @@ END: Cython Metadata */
733
763
  typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
734
764
  Py_ssize_t nargs, PyObject *kwnames);
735
765
  #else
736
- #define __Pyx_PyCFunctionFast _PyCFunctionFast
737
- #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
766
+ #if PY_VERSION_HEX >= 0x030d00A4
767
+ # define __Pyx_PyCFunctionFast PyCFunctionFast
768
+ # define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
769
+ #else
770
+ # define __Pyx_PyCFunctionFast _PyCFunctionFast
771
+ # define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
772
+ #endif
738
773
  #endif
739
774
  #if CYTHON_METH_FASTCALL
740
775
  #define __Pyx_METH_FASTCALL METH_FASTCALL
@@ -1086,7 +1121,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
1086
1121
  #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
1087
1122
  #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
1088
1123
  #endif
1089
- #if PY_VERSION_HEX >= 0x030d00A1
1124
+ #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
1090
1125
  #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
1091
1126
  #else
1092
1127
  static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
@@ -1173,7 +1208,7 @@ static CYTHON_INLINE float __PYX_NAN() {
1173
1208
  #endif
1174
1209
 
1175
1210
  #define __PYX_MARK_ERR_POS(f_index, lineno) \
1176
- { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1211
+ { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1177
1212
  #define __PYX_ERR(f_index, lineno, Ln_error) \
1178
1213
  { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
1179
1214
 
@@ -1288,24 +1323,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1288
1323
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1289
1324
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1290
1325
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1291
- #if CYTHON_COMPILING_IN_LIMITED_API
1292
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1293
- {
1294
- const wchar_t *u_end = u;
1295
- while (*u_end++) ;
1296
- return (size_t)(u_end - u - 1);
1297
- }
1298
- #else
1299
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1300
- {
1301
- const Py_UNICODE *u_end = u;
1302
- while (*u_end++) ;
1303
- return (size_t)(u_end - u - 1);
1304
- }
1305
- #endif
1306
1326
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1307
- #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1308
- #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1309
1327
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1310
1328
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1311
1329
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -1355,7 +1373,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1355
1373
  #endif
1356
1374
  typedef Py_ssize_t __Pyx_compact_pylong;
1357
1375
  typedef size_t __Pyx_compact_upylong;
1358
- #else // Py < 3.12
1376
+ #else
1359
1377
  #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
1360
1378
  #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
1361
1379
  #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
@@ -1645,7 +1663,7 @@ typedef struct {
1645
1663
 
1646
1664
  /* #### Code section: numeric_typedefs ### */
1647
1665
 
1648
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":730
1666
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":730
1649
1667
  * # in Cython to enable them only on the right systems.
1650
1668
  *
1651
1669
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1654,7 +1672,7 @@ typedef struct {
1654
1672
  */
1655
1673
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1656
1674
 
1657
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1675
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1658
1676
  *
1659
1677
  * ctypedef npy_int8 int8_t
1660
1678
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1663,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1663
1681
  */
1664
1682
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1665
1683
 
1666
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1684
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1667
1685
  * ctypedef npy_int8 int8_t
1668
1686
  * ctypedef npy_int16 int16_t
1669
1687
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1672,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1672
1690
  */
1673
1691
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1674
1692
 
1675
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1693
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1676
1694
  * ctypedef npy_int16 int16_t
1677
1695
  * ctypedef npy_int32 int32_t
1678
1696
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1681,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1681
1699
  */
1682
1700
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1683
1701
 
1684
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":737
1702
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":737
1685
1703
  * #ctypedef npy_int128 int128_t
1686
1704
  *
1687
1705
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1690,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1690
1708
  */
1691
1709
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1692
1710
 
1693
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1711
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1694
1712
  *
1695
1713
  * ctypedef npy_uint8 uint8_t
1696
1714
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1699,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1699
1717
  */
1700
1718
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1701
1719
 
1702
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1720
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1703
1721
  * ctypedef npy_uint8 uint8_t
1704
1722
  * ctypedef npy_uint16 uint16_t
1705
1723
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1708,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1708
1726
  */
1709
1727
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1710
1728
 
1711
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1729
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1712
1730
  * ctypedef npy_uint16 uint16_t
1713
1731
  * ctypedef npy_uint32 uint32_t
1714
1732
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1717,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1717
1735
  */
1718
1736
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1719
1737
 
1720
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":744
1738
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":744
1721
1739
  * #ctypedef npy_uint128 uint128_t
1722
1740
  *
1723
1741
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1726,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1726
1744
  */
1727
1745
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1728
1746
 
1729
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1747
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1730
1748
  *
1731
1749
  * ctypedef npy_float32 float32_t
1732
1750
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1735,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1735
1753
  */
1736
1754
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1737
1755
 
1738
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":754
1756
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":754
1739
1757
  * # The int types are mapped a bit surprising --
1740
1758
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1741
1759
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1744,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1744
1762
  */
1745
1763
  typedef npy_long __pyx_t_5numpy_int_t;
1746
1764
 
1747
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1765
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1748
1766
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1749
1767
  * ctypedef npy_long int_t
1750
1768
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1753
1771
  */
1754
1772
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1755
1773
 
1756
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1774
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1757
1775
  * ctypedef npy_longlong longlong_t
1758
1776
  *
1759
1777
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1762
1780
  */
1763
1781
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1764
1782
 
1765
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1783
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1766
1784
  *
1767
1785
  * ctypedef npy_ulong uint_t
1768
1786
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1771,7 +1789,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1771
1789
  */
1772
1790
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1773
1791
 
1774
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1792
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1775
1793
  * ctypedef npy_ulonglong ulonglong_t
1776
1794
  *
1777
1795
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1780,7 +1798,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1780
1798
  */
1781
1799
  typedef npy_intp __pyx_t_5numpy_intp_t;
1782
1800
 
1783
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1801
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1784
1802
  *
1785
1803
  * ctypedef npy_intp intp_t
1786
1804
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1789,7 +1807,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1789
1807
  */
1790
1808
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1791
1809
 
1792
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1810
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1793
1811
  * ctypedef npy_uintp uintp_t
1794
1812
  *
1795
1813
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1798,7 +1816,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1798
1816
  */
1799
1817
  typedef npy_double __pyx_t_5numpy_float_t;
1800
1818
 
1801
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1819
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1802
1820
  *
1803
1821
  * ctypedef npy_double float_t
1804
1822
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1807,7 +1825,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1807
1825
  */
1808
1826
  typedef npy_double __pyx_t_5numpy_double_t;
1809
1827
 
1810
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1828
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1811
1829
  * ctypedef npy_double float_t
1812
1830
  * ctypedef npy_double double_t
1813
1831
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1893,7 +1911,7 @@ struct __pyx_MemviewEnum_obj;
1893
1911
  struct __pyx_memoryview_obj;
1894
1912
  struct __pyx_memoryviewslice_obj;
1895
1913
 
1896
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1914
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1897
1915
  * ctypedef npy_longdouble longdouble_t
1898
1916
  *
1899
1917
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1902,7 +1920,7 @@ struct __pyx_memoryviewslice_obj;
1902
1920
  */
1903
1921
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1904
1922
 
1905
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1923
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1906
1924
  *
1907
1925
  * ctypedef npy_cfloat cfloat_t
1908
1926
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1911,7 +1929,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1911
1929
  */
1912
1930
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1913
1931
 
1914
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1932
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1915
1933
  * ctypedef npy_cfloat cfloat_t
1916
1934
  * ctypedef npy_cdouble cdouble_t
1917
1935
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1920,7 +1938,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1920
1938
  */
1921
1939
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1922
1940
 
1923
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1941
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1924
1942
  * ctypedef npy_clongdouble clongdouble_t
1925
1943
  *
1926
1944
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2236,8 +2254,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2236
2254
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2237
2255
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2238
2256
  #else
2239
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2240
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2257
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2258
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2241
2259
  #endif
2242
2260
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2243
2261
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2253,8 +2271,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2253
2271
  #else
2254
2272
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2255
2273
  #endif
2256
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2257
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2274
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2275
+ to have the same reference counting */
2276
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2258
2277
  #else
2259
2278
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2260
2279
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2892,22 +2911,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2892
2911
  #endif
2893
2912
 
2894
2913
  /* TypeImport.proto */
2895
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2896
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2914
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2915
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2897
2916
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2898
2917
  #include <stdalign.h>
2899
2918
  #endif
2900
2919
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2901
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2920
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2902
2921
  #else
2903
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2922
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2904
2923
  #endif
2905
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2906
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2907
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2908
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2924
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2925
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2926
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2927
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2909
2928
  };
2910
- 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);
2929
+ 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);
2911
2930
  #endif
2912
2931
 
2913
2932
  /* Py3UpdateBases.proto */
@@ -3006,7 +3025,7 @@ typedef struct {
3006
3025
  #endif
3007
3026
  void *defaults;
3008
3027
  int defaults_pyobjects;
3009
- size_t defaults_size; // used by FusedFunction for copying defaults
3028
+ size_t defaults_size;
3010
3029
  int flags;
3011
3030
  PyObject *defaults_tuple;
3012
3031
  PyObject *defaults_kwdict;
@@ -19162,7 +19181,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
19162
19181
  return __pyx_r;
19163
19182
  }
19164
19183
 
19165
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19184
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19166
19185
  *
19167
19186
  * @property
19168
19187
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -19173,7 +19192,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
19173
19192
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
19174
19193
  PyObject *__pyx_r;
19175
19194
 
19176
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
19195
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
19177
19196
  * """Returns a borrowed reference to the object owning the data/memory.
19178
19197
  * """
19179
19198
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -19183,7 +19202,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
19183
19202
  __pyx_r = PyArray_BASE(__pyx_v_self);
19184
19203
  goto __pyx_L0;
19185
19204
 
19186
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19205
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19187
19206
  *
19188
19207
  * @property
19189
19208
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -19196,7 +19215,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
19196
19215
  return __pyx_r;
19197
19216
  }
19198
19217
 
19199
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19218
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19200
19219
  *
19201
19220
  * @property
19202
19221
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -19210,7 +19229,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19210
19229
  PyArray_Descr *__pyx_t_1;
19211
19230
  __Pyx_RefNannySetupContext("descr", 1);
19212
19231
 
19213
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
19232
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
19214
19233
  * """Returns an owned reference to the dtype of the array.
19215
19234
  * """
19216
19235
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -19223,7 +19242,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19223
19242
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
19224
19243
  goto __pyx_L0;
19225
19244
 
19226
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19245
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19227
19246
  *
19228
19247
  * @property
19229
19248
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -19238,7 +19257,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19238
19257
  return __pyx_r;
19239
19258
  }
19240
19259
 
19241
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19260
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19242
19261
  *
19243
19262
  * @property
19244
19263
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -19249,7 +19268,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19249
19268
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
19250
19269
  int __pyx_r;
19251
19270
 
19252
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
19271
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
19253
19272
  * """Returns the number of dimensions in the array.
19254
19273
  * """
19255
19274
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -19259,7 +19278,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19259
19278
  __pyx_r = PyArray_NDIM(__pyx_v_self);
19260
19279
  goto __pyx_L0;
19261
19280
 
19262
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19281
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19263
19282
  *
19264
19283
  * @property
19265
19284
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -19272,7 +19291,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19272
19291
  return __pyx_r;
19273
19292
  }
19274
19293
 
19275
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19294
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19276
19295
  *
19277
19296
  * @property
19278
19297
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -19283,7 +19302,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19283
19302
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
19284
19303
  npy_intp *__pyx_r;
19285
19304
 
19286
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
19305
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
19287
19306
  * Can return NULL for 0-dimensional arrays.
19288
19307
  * """
19289
19308
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -19293,7 +19312,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19293
19312
  __pyx_r = PyArray_DIMS(__pyx_v_self);
19294
19313
  goto __pyx_L0;
19295
19314
 
19296
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19315
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19297
19316
  *
19298
19317
  * @property
19299
19318
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -19306,7 +19325,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19306
19325
  return __pyx_r;
19307
19326
  }
19308
19327
 
19309
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19328
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19310
19329
  *
19311
19330
  * @property
19312
19331
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -19317,7 +19336,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19317
19336
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
19318
19337
  npy_intp *__pyx_r;
19319
19338
 
19320
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
19339
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
19321
19340
  * The number of elements matches the number of dimensions of the array (ndim).
19322
19341
  * """
19323
19342
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -19327,7 +19346,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19327
19346
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
19328
19347
  goto __pyx_L0;
19329
19348
 
19330
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19349
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19331
19350
  *
19332
19351
  * @property
19333
19352
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -19340,7 +19359,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19340
19359
  return __pyx_r;
19341
19360
  }
19342
19361
 
19343
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19362
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19344
19363
  *
19345
19364
  * @property
19346
19365
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -19351,7 +19370,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19351
19370
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
19352
19371
  npy_intp __pyx_r;
19353
19372
 
19354
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
19373
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
19355
19374
  * """Returns the total size (in number of elements) of the array.
19356
19375
  * """
19357
19376
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -19361,7 +19380,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19361
19380
  __pyx_r = PyArray_SIZE(__pyx_v_self);
19362
19381
  goto __pyx_L0;
19363
19382
 
19364
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19383
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19365
19384
  *
19366
19385
  * @property
19367
19386
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -19374,7 +19393,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19374
19393
  return __pyx_r;
19375
19394
  }
19376
19395
 
19377
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19396
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19378
19397
  *
19379
19398
  * @property
19380
19399
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -19385,7 +19404,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19385
19404
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
19386
19405
  char *__pyx_r;
19387
19406
 
19388
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
19407
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
19389
19408
  * of `PyArray_DATA()` instead, which returns a 'void*'.
19390
19409
  * """
19391
19410
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -19395,7 +19414,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
19395
19414
  __pyx_r = PyArray_BYTES(__pyx_v_self);
19396
19415
  goto __pyx_L0;
19397
19416
 
19398
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19417
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19399
19418
  *
19400
19419
  * @property
19401
19420
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -19408,7 +19427,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
19408
19427
  return __pyx_r;
19409
19428
  }
19410
19429
 
19411
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19430
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19412
19431
  * ctypedef npy_cdouble complex_t
19413
19432
  *
19414
19433
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19425,7 +19444,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19425
19444
  int __pyx_clineno = 0;
19426
19445
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
19427
19446
 
19428
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
19447
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
19429
19448
  *
19430
19449
  * cdef inline object PyArray_MultiIterNew1(a):
19431
19450
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -19439,7 +19458,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19439
19458
  __pyx_t_1 = 0;
19440
19459
  goto __pyx_L0;
19441
19460
 
19442
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19461
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19443
19462
  * ctypedef npy_cdouble complex_t
19444
19463
  *
19445
19464
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19458,7 +19477,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19458
19477
  return __pyx_r;
19459
19478
  }
19460
19479
 
19461
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19480
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19462
19481
  * return PyArray_MultiIterNew(1, <void*>a)
19463
19482
  *
19464
19483
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19475,7 +19494,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19475
19494
  int __pyx_clineno = 0;
19476
19495
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
19477
19496
 
19478
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
19497
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
19479
19498
  *
19480
19499
  * cdef inline object PyArray_MultiIterNew2(a, b):
19481
19500
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -19489,7 +19508,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19489
19508
  __pyx_t_1 = 0;
19490
19509
  goto __pyx_L0;
19491
19510
 
19492
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19511
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19493
19512
  * return PyArray_MultiIterNew(1, <void*>a)
19494
19513
  *
19495
19514
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19508,7 +19527,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19508
19527
  return __pyx_r;
19509
19528
  }
19510
19529
 
19511
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19530
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19512
19531
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19513
19532
  *
19514
19533
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19525,7 +19544,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19525
19544
  int __pyx_clineno = 0;
19526
19545
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
19527
19546
 
19528
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
19547
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
19529
19548
  *
19530
19549
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
19531
19550
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -19539,7 +19558,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19539
19558
  __pyx_t_1 = 0;
19540
19559
  goto __pyx_L0;
19541
19560
 
19542
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19561
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19543
19562
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19544
19563
  *
19545
19564
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19558,7 +19577,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19558
19577
  return __pyx_r;
19559
19578
  }
19560
19579
 
19561
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19580
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19562
19581
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19563
19582
  *
19564
19583
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19575,7 +19594,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19575
19594
  int __pyx_clineno = 0;
19576
19595
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
19577
19596
 
19578
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
19597
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
19579
19598
  *
19580
19599
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
19581
19600
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -19589,7 +19608,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19589
19608
  __pyx_t_1 = 0;
19590
19609
  goto __pyx_L0;
19591
19610
 
19592
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19611
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19593
19612
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19594
19613
  *
19595
19614
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19608,7 +19627,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19608
19627
  return __pyx_r;
19609
19628
  }
19610
19629
 
19611
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19630
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19612
19631
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19613
19632
  *
19614
19633
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19625,7 +19644,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19625
19644
  int __pyx_clineno = 0;
19626
19645
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
19627
19646
 
19628
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
19647
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
19629
19648
  *
19630
19649
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
19631
19650
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -19639,7 +19658,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19639
19658
  __pyx_t_1 = 0;
19640
19659
  goto __pyx_L0;
19641
19660
 
19642
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19661
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19643
19662
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19644
19663
  *
19645
19664
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19658,7 +19677,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19658
19677
  return __pyx_r;
19659
19678
  }
19660
19679
 
19661
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19680
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19662
19681
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19663
19682
  *
19664
19683
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19672,7 +19691,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19672
19691
  int __pyx_t_1;
19673
19692
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
19674
19693
 
19675
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19694
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19676
19695
  *
19677
19696
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19678
19697
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19682,7 +19701,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19682
19701
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
19683
19702
  if (__pyx_t_1) {
19684
19703
 
19685
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
19704
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
19686
19705
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19687
19706
  * if PyDataType_HASSUBARRAY(d):
19688
19707
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -19694,7 +19713,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19694
19713
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
19695
19714
  goto __pyx_L0;
19696
19715
 
19697
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19716
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19698
19717
  *
19699
19718
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19700
19719
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19703,7 +19722,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19703
19722
  */
19704
19723
  }
19705
19724
 
19706
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19725
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19707
19726
  * return <tuple>d.subarray.shape
19708
19727
  * else:
19709
19728
  * return () # <<<<<<<<<<<<<<
@@ -19717,7 +19736,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19717
19736
  goto __pyx_L0;
19718
19737
  }
19719
19738
 
19720
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19739
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19721
19740
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19722
19741
  *
19723
19742
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19732,7 +19751,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19732
19751
  return __pyx_r;
19733
19752
  }
19734
19753
 
19735
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19754
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19736
19755
  * int _import_umath() except -1
19737
19756
  *
19738
19757
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19746,7 +19765,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19746
19765
  const char *__pyx_filename = NULL;
19747
19766
  int __pyx_clineno = 0;
19748
19767
 
19749
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
19768
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
19750
19769
  *
19751
19770
  * cdef inline void set_array_base(ndarray arr, object base):
19752
19771
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -19755,7 +19774,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19755
19774
  */
19756
19775
  Py_INCREF(__pyx_v_base);
19757
19776
 
19758
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19777
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19759
19778
  * cdef inline void set_array_base(ndarray arr, object base):
19760
19779
  * Py_INCREF(base) # important to do this before stealing the reference below!
19761
19780
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -19764,7 +19783,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19764
19783
  */
19765
19784
  __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)
19766
19785
 
19767
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19786
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19768
19787
  * int _import_umath() except -1
19769
19788
  *
19770
19789
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19779,7 +19798,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19779
19798
  __pyx_L0:;
19780
19799
  }
19781
19800
 
19782
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19801
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19783
19802
  * PyArray_SetBaseObject(arr, base)
19784
19803
  *
19785
19804
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19794,7 +19813,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19794
19813
  int __pyx_t_1;
19795
19814
  __Pyx_RefNannySetupContext("get_array_base", 1);
19796
19815
 
19797
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
19816
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
19798
19817
  *
19799
19818
  * cdef inline object get_array_base(ndarray arr):
19800
19819
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -19803,7 +19822,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19803
19822
  */
19804
19823
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
19805
19824
 
19806
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19825
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19807
19826
  * cdef inline object get_array_base(ndarray arr):
19808
19827
  * base = PyArray_BASE(arr)
19809
19828
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19813,7 +19832,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19813
19832
  __pyx_t_1 = (__pyx_v_base == NULL);
19814
19833
  if (__pyx_t_1) {
19815
19834
 
19816
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19835
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19817
19836
  * base = PyArray_BASE(arr)
19818
19837
  * if base is NULL:
19819
19838
  * return None # <<<<<<<<<<<<<<
@@ -19824,7 +19843,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19824
19843
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
19825
19844
  goto __pyx_L0;
19826
19845
 
19827
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19846
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19828
19847
  * cdef inline object get_array_base(ndarray arr):
19829
19848
  * base = PyArray_BASE(arr)
19830
19849
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19833,7 +19852,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19833
19852
  */
19834
19853
  }
19835
19854
 
19836
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19855
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19837
19856
  * if base is NULL:
19838
19857
  * return None
19839
19858
  * return <object>base # <<<<<<<<<<<<<<
@@ -19845,7 +19864,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19845
19864
  __pyx_r = ((PyObject *)__pyx_v_base);
19846
19865
  goto __pyx_L0;
19847
19866
 
19848
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19867
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19849
19868
  * PyArray_SetBaseObject(arr, base)
19850
19869
  *
19851
19870
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19860,7 +19879,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19860
19879
  return __pyx_r;
19861
19880
  }
19862
19881
 
19863
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19882
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19864
19883
  * # Versions of the import_* functions which are more suitable for
19865
19884
  * # Cython code.
19866
19885
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19884,7 +19903,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19884
19903
  int __pyx_clineno = 0;
19885
19904
  __Pyx_RefNannySetupContext("import_array", 1);
19886
19905
 
19887
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19906
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19888
19907
  * # Cython code.
19889
19908
  * cdef inline int import_array() except -1:
19890
19909
  * try: # <<<<<<<<<<<<<<
@@ -19900,7 +19919,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19900
19919
  __Pyx_XGOTREF(__pyx_t_3);
19901
19920
  /*try:*/ {
19902
19921
 
19903
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19922
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19904
19923
  * cdef inline int import_array() except -1:
19905
19924
  * try:
19906
19925
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -19909,7 +19928,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19909
19928
  */
19910
19929
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
19911
19930
 
19912
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19931
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19913
19932
  * # Cython code.
19914
19933
  * cdef inline int import_array() except -1:
19915
19934
  * try: # <<<<<<<<<<<<<<
@@ -19923,7 +19942,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19923
19942
  goto __pyx_L8_try_end;
19924
19943
  __pyx_L3_error:;
19925
19944
 
19926
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19945
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19927
19946
  * try:
19928
19947
  * __pyx_import_array()
19929
19948
  * except Exception: # <<<<<<<<<<<<<<
@@ -19938,7 +19957,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19938
19957
  __Pyx_XGOTREF(__pyx_t_6);
19939
19958
  __Pyx_XGOTREF(__pyx_t_7);
19940
19959
 
19941
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19960
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19942
19961
  * __pyx_import_array()
19943
19962
  * except Exception:
19944
19963
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -19953,7 +19972,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19953
19972
  }
19954
19973
  goto __pyx_L5_except_error;
19955
19974
 
19956
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19975
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19957
19976
  * # Cython code.
19958
19977
  * cdef inline int import_array() except -1:
19959
19978
  * try: # <<<<<<<<<<<<<<
@@ -19969,7 +19988,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19969
19988
  __pyx_L8_try_end:;
19970
19989
  }
19971
19990
 
19972
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19991
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19973
19992
  * # Versions of the import_* functions which are more suitable for
19974
19993
  * # Cython code.
19975
19994
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19992,7 +20011,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19992
20011
  return __pyx_r;
19993
20012
  }
19994
20013
 
19995
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
20014
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19996
20015
  * raise ImportError("numpy.core.multiarray failed to import")
19997
20016
  *
19998
20017
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -20016,7 +20035,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20016
20035
  int __pyx_clineno = 0;
20017
20036
  __Pyx_RefNannySetupContext("import_umath", 1);
20018
20037
 
20019
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20038
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20020
20039
  *
20021
20040
  * cdef inline int import_umath() except -1:
20022
20041
  * try: # <<<<<<<<<<<<<<
@@ -20032,7 +20051,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20032
20051
  __Pyx_XGOTREF(__pyx_t_3);
20033
20052
  /*try:*/ {
20034
20053
 
20035
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
20054
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
20036
20055
  * cdef inline int import_umath() except -1:
20037
20056
  * try:
20038
20057
  * _import_umath() # <<<<<<<<<<<<<<
@@ -20041,7 +20060,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20041
20060
  */
20042
20061
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
20043
20062
 
20044
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20063
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20045
20064
  *
20046
20065
  * cdef inline int import_umath() except -1:
20047
20066
  * try: # <<<<<<<<<<<<<<
@@ -20055,7 +20074,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20055
20074
  goto __pyx_L8_try_end;
20056
20075
  __pyx_L3_error:;
20057
20076
 
20058
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
20077
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
20059
20078
  * try:
20060
20079
  * _import_umath()
20061
20080
  * except Exception: # <<<<<<<<<<<<<<
@@ -20070,7 +20089,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20070
20089
  __Pyx_XGOTREF(__pyx_t_6);
20071
20090
  __Pyx_XGOTREF(__pyx_t_7);
20072
20091
 
20073
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
20092
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
20074
20093
  * _import_umath()
20075
20094
  * except Exception:
20076
20095
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -20085,7 +20104,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20085
20104
  }
20086
20105
  goto __pyx_L5_except_error;
20087
20106
 
20088
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20107
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20089
20108
  *
20090
20109
  * cdef inline int import_umath() except -1:
20091
20110
  * try: # <<<<<<<<<<<<<<
@@ -20101,7 +20120,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20101
20120
  __pyx_L8_try_end:;
20102
20121
  }
20103
20122
 
20104
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
20123
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
20105
20124
  * raise ImportError("numpy.core.multiarray failed to import")
20106
20125
  *
20107
20126
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -20124,7 +20143,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20124
20143
  return __pyx_r;
20125
20144
  }
20126
20145
 
20127
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
20146
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
20128
20147
  * raise ImportError("numpy.core.umath failed to import")
20129
20148
  *
20130
20149
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -20148,7 +20167,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20148
20167
  int __pyx_clineno = 0;
20149
20168
  __Pyx_RefNannySetupContext("import_ufunc", 1);
20150
20169
 
20151
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20170
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20152
20171
  *
20153
20172
  * cdef inline int import_ufunc() except -1:
20154
20173
  * try: # <<<<<<<<<<<<<<
@@ -20164,7 +20183,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20164
20183
  __Pyx_XGOTREF(__pyx_t_3);
20165
20184
  /*try:*/ {
20166
20185
 
20167
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
20186
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
20168
20187
  * cdef inline int import_ufunc() except -1:
20169
20188
  * try:
20170
20189
  * _import_umath() # <<<<<<<<<<<<<<
@@ -20173,7 +20192,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20173
20192
  */
20174
20193
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
20175
20194
 
20176
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20195
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20177
20196
  *
20178
20197
  * cdef inline int import_ufunc() except -1:
20179
20198
  * try: # <<<<<<<<<<<<<<
@@ -20187,7 +20206,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20187
20206
  goto __pyx_L8_try_end;
20188
20207
  __pyx_L3_error:;
20189
20208
 
20190
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
20209
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
20191
20210
  * try:
20192
20211
  * _import_umath()
20193
20212
  * except Exception: # <<<<<<<<<<<<<<
@@ -20202,7 +20221,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20202
20221
  __Pyx_XGOTREF(__pyx_t_6);
20203
20222
  __Pyx_XGOTREF(__pyx_t_7);
20204
20223
 
20205
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
20224
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
20206
20225
  * _import_umath()
20207
20226
  * except Exception:
20208
20227
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -20217,7 +20236,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20217
20236
  }
20218
20237
  goto __pyx_L5_except_error;
20219
20238
 
20220
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20239
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20221
20240
  *
20222
20241
  * cdef inline int import_ufunc() except -1:
20223
20242
  * try: # <<<<<<<<<<<<<<
@@ -20233,7 +20252,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20233
20252
  __pyx_L8_try_end:;
20234
20253
  }
20235
20254
 
20236
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
20255
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
20237
20256
  * raise ImportError("numpy.core.umath failed to import")
20238
20257
  *
20239
20258
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -20256,7 +20275,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20256
20275
  return __pyx_r;
20257
20276
  }
20258
20277
 
20259
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
20278
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
20260
20279
  *
20261
20280
  *
20262
20281
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -20267,7 +20286,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20267
20286
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
20268
20287
  int __pyx_r;
20269
20288
 
20270
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
20289
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
20271
20290
  * bool
20272
20291
  * """
20273
20292
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -20277,7 +20296,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20277
20296
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
20278
20297
  goto __pyx_L0;
20279
20298
 
20280
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
20299
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
20281
20300
  *
20282
20301
  *
20283
20302
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -20290,7 +20309,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20290
20309
  return __pyx_r;
20291
20310
  }
20292
20311
 
20293
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
20312
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
20294
20313
  *
20295
20314
  *
20296
20315
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -20301,7 +20320,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20301
20320
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
20302
20321
  int __pyx_r;
20303
20322
 
20304
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
20323
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
20305
20324
  * bool
20306
20325
  * """
20307
20326
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -20311,7 +20330,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20311
20330
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
20312
20331
  goto __pyx_L0;
20313
20332
 
20314
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
20333
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
20315
20334
  *
20316
20335
  *
20317
20336
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -20324,7 +20343,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20324
20343
  return __pyx_r;
20325
20344
  }
20326
20345
 
20327
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
20346
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
20328
20347
  *
20329
20348
  *
20330
20349
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20335,7 +20354,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20335
20354
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
20336
20355
  npy_datetime __pyx_r;
20337
20356
 
20338
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
20357
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
20339
20358
  * also needed. That can be found using `get_datetime64_unit`.
20340
20359
  * """
20341
20360
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -20345,7 +20364,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20345
20364
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
20346
20365
  goto __pyx_L0;
20347
20366
 
20348
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
20367
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
20349
20368
  *
20350
20369
  *
20351
20370
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20358,7 +20377,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20358
20377
  return __pyx_r;
20359
20378
  }
20360
20379
 
20361
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
20380
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
20362
20381
  *
20363
20382
  *
20364
20383
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20369,7 +20388,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20369
20388
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
20370
20389
  npy_timedelta __pyx_r;
20371
20390
 
20372
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
20391
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
20373
20392
  * returns the int64 value underlying scalar numpy timedelta64 object
20374
20393
  * """
20375
20394
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -20379,7 +20398,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20379
20398
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
20380
20399
  goto __pyx_L0;
20381
20400
 
20382
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
20401
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
20383
20402
  *
20384
20403
  *
20385
20404
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20392,7 +20411,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20392
20411
  return __pyx_r;
20393
20412
  }
20394
20413
 
20395
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20414
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20396
20415
  *
20397
20416
  *
20398
20417
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20403,7 +20422,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20403
20422
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
20404
20423
  NPY_DATETIMEUNIT __pyx_r;
20405
20424
 
20406
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
20425
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
20407
20426
  * returns the unit part of the dtype for a numpy datetime64 object.
20408
20427
  * """
20409
20428
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -20411,7 +20430,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
20411
20430
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
20412
20431
  goto __pyx_L0;
20413
20432
 
20414
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20433
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20415
20434
  *
20416
20435
  *
20417
20436
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -24737,10 +24756,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
24737
24756
  Py_ssize_t __pyx_v_itemsize;
24738
24757
  int __pyx_v_dtype_signed;
24739
24758
  Py_UCS4 __pyx_v_kind;
24740
- int __pyx_v__KmerAlphabet___pyx_uint8_is_signed;
24741
- int __pyx_v__KmerAlphabet___pyx_uint16_is_signed;
24742
- int __pyx_v__KmerAlphabet___pyx_uint32_is_signed;
24743
- int __pyx_v__KmerAlphabet___pyx_uint64_is_signed;
24759
+ int __pyx_v___pyx_fused_dtype_uint8_is_signed;
24760
+ int __pyx_v___pyx_fused_dtype_uint16_is_signed;
24761
+ int __pyx_v___pyx_fused_dtype_uint32_is_signed;
24762
+ int __pyx_v___pyx_fused_dtype_uint64_is_signed;
24744
24763
  PyObject *__pyx_v_arg = NULL;
24745
24764
  PyObject *__pyx_v_dtype = NULL;
24746
24765
  PyObject *__pyx_v_arg_base = NULL;
@@ -24808,10 +24827,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
24808
24827
  __pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
24809
24828
  __pyx_t_1 = 0;
24810
24829
  __pyx_v_itemsize = -1L;
24811
- __pyx_v__KmerAlphabet___pyx_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint8)-1L) > 0));
24812
- __pyx_v__KmerAlphabet___pyx_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint16)-1L) > 0));
24813
- __pyx_v__KmerAlphabet___pyx_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint32)-1L) > 0));
24814
- __pyx_v__KmerAlphabet___pyx_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint64)-1L) > 0));
24830
+ __pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint8)-1L) > 0));
24831
+ __pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint16)-1L) > 0));
24832
+ __pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint32)-1L) > 0));
24833
+ __pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint64)-1L) > 0));
24815
24834
  if (unlikely(__pyx_v_args == Py_None)) {
24816
24835
  PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
24817
24836
  __PYX_ERR(0, 439, __pyx_L1_error)
@@ -24953,7 +24972,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
24953
24972
  __pyx_t_2 = __pyx_t_4;
24954
24973
  goto __pyx_L16_bool_binop_done;
24955
24974
  }
24956
- __pyx_t_4 = (!(__pyx_v__KmerAlphabet___pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
24975
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
24957
24976
  __pyx_t_2 = __pyx_t_4;
24958
24977
  __pyx_L16_bool_binop_done:;
24959
24978
  if (__pyx_t_2) {
@@ -24976,7 +24995,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
24976
24995
  __pyx_t_2 = __pyx_t_4;
24977
24996
  goto __pyx_L20_bool_binop_done;
24978
24997
  }
24979
- __pyx_t_4 = (!(__pyx_v__KmerAlphabet___pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
24998
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
24980
24999
  __pyx_t_2 = __pyx_t_4;
24981
25000
  __pyx_L20_bool_binop_done:;
24982
25001
  if (__pyx_t_2) {
@@ -24999,7 +25018,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
24999
25018
  __pyx_t_2 = __pyx_t_4;
25000
25019
  goto __pyx_L24_bool_binop_done;
25001
25020
  }
25002
- __pyx_t_4 = (!(__pyx_v__KmerAlphabet___pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
25021
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
25003
25022
  __pyx_t_2 = __pyx_t_4;
25004
25023
  __pyx_L24_bool_binop_done:;
25005
25024
  if (__pyx_t_2) {
@@ -25022,7 +25041,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
25022
25041
  __pyx_t_2 = __pyx_t_4;
25023
25042
  goto __pyx_L28_bool_binop_done;
25024
25043
  }
25025
- __pyx_t_4 = (!(__pyx_v__KmerAlphabet___pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
25044
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
25026
25045
  __pyx_t_2 = __pyx_t_4;
25027
25046
  __pyx_L28_bool_binop_done:;
25028
25047
  if (__pyx_t_2) {
@@ -28481,10 +28500,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
28481
28500
  Py_ssize_t __pyx_v_itemsize;
28482
28501
  int __pyx_v_dtype_signed;
28483
28502
  Py_UCS4 __pyx_v_kind;
28484
- int __pyx_v__KmerAlphabet___pyx_uint8_is_signed;
28485
- int __pyx_v__KmerAlphabet___pyx_uint16_is_signed;
28486
- int __pyx_v__KmerAlphabet___pyx_uint32_is_signed;
28487
- int __pyx_v__KmerAlphabet___pyx_uint64_is_signed;
28503
+ int __pyx_v___pyx_fused_dtype_uint8_is_signed;
28504
+ int __pyx_v___pyx_fused_dtype_uint16_is_signed;
28505
+ int __pyx_v___pyx_fused_dtype_uint32_is_signed;
28506
+ int __pyx_v___pyx_fused_dtype_uint64_is_signed;
28488
28507
  PyObject *__pyx_v_arg = NULL;
28489
28508
  PyObject *__pyx_v_dtype = NULL;
28490
28509
  PyObject *__pyx_v_arg_base = NULL;
@@ -28552,10 +28571,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
28552
28571
  __pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
28553
28572
  __pyx_t_1 = 0;
28554
28573
  __pyx_v_itemsize = -1L;
28555
- __pyx_v__KmerAlphabet___pyx_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint8)-1L) > 0));
28556
- __pyx_v__KmerAlphabet___pyx_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint16)-1L) > 0));
28557
- __pyx_v__KmerAlphabet___pyx_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint32)-1L) > 0));
28558
- __pyx_v__KmerAlphabet___pyx_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint64)-1L) > 0));
28574
+ __pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint8)-1L) > 0));
28575
+ __pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint16)-1L) > 0));
28576
+ __pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint32)-1L) > 0));
28577
+ __pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint64)-1L) > 0));
28559
28578
  if (unlikely(__pyx_v_args == Py_None)) {
28560
28579
  PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
28561
28580
  __PYX_ERR(0, 496, __pyx_L1_error)
@@ -28697,7 +28716,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
28697
28716
  __pyx_t_2 = __pyx_t_4;
28698
28717
  goto __pyx_L16_bool_binop_done;
28699
28718
  }
28700
- __pyx_t_4 = (!(__pyx_v__KmerAlphabet___pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
28719
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
28701
28720
  __pyx_t_2 = __pyx_t_4;
28702
28721
  __pyx_L16_bool_binop_done:;
28703
28722
  if (__pyx_t_2) {
@@ -28720,7 +28739,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
28720
28739
  __pyx_t_2 = __pyx_t_4;
28721
28740
  goto __pyx_L20_bool_binop_done;
28722
28741
  }
28723
- __pyx_t_4 = (!(__pyx_v__KmerAlphabet___pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
28742
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
28724
28743
  __pyx_t_2 = __pyx_t_4;
28725
28744
  __pyx_L20_bool_binop_done:;
28726
28745
  if (__pyx_t_2) {
@@ -28743,7 +28762,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
28743
28762
  __pyx_t_2 = __pyx_t_4;
28744
28763
  goto __pyx_L24_bool_binop_done;
28745
28764
  }
28746
- __pyx_t_4 = (!(__pyx_v__KmerAlphabet___pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
28765
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
28747
28766
  __pyx_t_2 = __pyx_t_4;
28748
28767
  __pyx_L24_bool_binop_done:;
28749
28768
  if (__pyx_t_2) {
@@ -28766,7 +28785,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
28766
28785
  __pyx_t_2 = __pyx_t_4;
28767
28786
  goto __pyx_L28_bool_binop_done;
28768
28787
  }
28769
- __pyx_t_4 = (!(__pyx_v__KmerAlphabet___pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
28788
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
28770
28789
  __pyx_t_2 = __pyx_t_4;
28771
28790
  __pyx_L28_bool_binop_done:;
28772
28791
  if (__pyx_t_2) {
@@ -34183,7 +34202,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
34183
34202
  __Pyx_GOTREF(__pyx_tuple__8);
34184
34203
  __Pyx_GIVEREF(__pyx_tuple__8);
34185
34204
 
34186
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
34205
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
34187
34206
  * __pyx_import_array()
34188
34207
  * except Exception:
34189
34208
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -34194,7 +34213,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
34194
34213
  __Pyx_GOTREF(__pyx_tuple__9);
34195
34214
  __Pyx_GIVEREF(__pyx_tuple__9);
34196
34215
 
34197
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
34216
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
34198
34217
  * _import_umath()
34199
34218
  * except Exception:
34200
34219
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -34876,33 +34895,33 @@ static int __Pyx_modinit_type_import_code(void) {
34876
34895
  /*--- Type import code ---*/
34877
34896
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
34878
34897
  __Pyx_GOTREF(__pyx_t_1);
34879
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
34898
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
34880
34899
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
34881
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
34900
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
34882
34901
  #elif CYTHON_COMPILING_IN_LIMITED_API
34883
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
34902
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
34884
34903
  #else
34885
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
34904
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
34886
34905
  #endif
34887
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
34906
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
34888
34907
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
34889
34908
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
34890
34909
  __Pyx_GOTREF(__pyx_t_1);
34891
- __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)
34892
- __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)
34893
- __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)
34894
- __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)
34895
- __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)
34896
- __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)
34897
- __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)
34898
- __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)
34899
- __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)
34900
- __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)
34901
- __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)
34902
- __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)
34903
- __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)
34904
- __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)
34905
- __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)
34910
+ __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)
34911
+ __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)
34912
+ __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)
34913
+ __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)
34914
+ __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)
34915
+ __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)
34916
+ __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)
34917
+ __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)
34918
+ __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)
34919
+ __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)
34920
+ __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)
34921
+ __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)
34922
+ __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)
34923
+ __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)
34924
+ __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)
34906
34925
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
34907
34926
  __Pyx_RefNannyFinishContext();
34908
34927
  return 0;
@@ -36606,11 +36625,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
36606
36625
  {
36607
36626
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
36608
36627
  if (unlikely(eq != 0)) {
36609
- if (unlikely(eq < 0)) return NULL; // error
36628
+ if (unlikely(eq < 0)) return NULL;
36610
36629
  return kwvalues[i];
36611
36630
  }
36612
36631
  }
36613
- return NULL; // not found (no exception set)
36632
+ return NULL;
36614
36633
  }
36615
36634
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
36616
36635
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -36723,7 +36742,7 @@ static int __Pyx_ParseOptionalKeywords(
36723
36742
  if (*name) {
36724
36743
  values[name-argnames] = value;
36725
36744
  #if CYTHON_AVOID_BORROWED_REFS
36726
- Py_INCREF(value); // transfer ownership of value to values
36745
+ Py_INCREF(value);
36727
36746
  Py_DECREF(key);
36728
36747
  #endif
36729
36748
  key = NULL;
@@ -36742,7 +36761,7 @@ static int __Pyx_ParseOptionalKeywords(
36742
36761
  && _PyString_Eq(**name, key)) {
36743
36762
  values[name-argnames] = value;
36744
36763
  #if CYTHON_AVOID_BORROWED_REFS
36745
- value = NULL; // ownership transferred to values
36764
+ value = NULL;
36746
36765
  #endif
36747
36766
  break;
36748
36767
  }
@@ -36774,7 +36793,7 @@ static int __Pyx_ParseOptionalKeywords(
36774
36793
  if (cmp == 0) {
36775
36794
  values[name-argnames] = value;
36776
36795
  #if CYTHON_AVOID_BORROWED_REFS
36777
- value = NULL; // ownership transferred to values
36796
+ value = NULL;
36778
36797
  #endif
36779
36798
  break;
36780
36799
  }
@@ -39040,9 +39059,10 @@ static int __Pyx_PyMemoryView_Get_ndim(PyObject *obj) {
39040
39059
 
39041
39060
  /* IterFinish */
39042
39061
  static CYTHON_INLINE int __Pyx_IterFinish(void) {
39062
+ PyObject* exc_type;
39043
39063
  __Pyx_PyThreadState_declare
39044
39064
  __Pyx_PyThreadState_assign
39045
- PyObject* exc_type = __Pyx_PyErr_CurrentExceptionType();
39065
+ exc_type = __Pyx_PyErr_CurrentExceptionType();
39046
39066
  if (unlikely(exc_type)) {
39047
39067
  if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
39048
39068
  return -1;
@@ -39366,9 +39386,10 @@ static CYTHON_INLINE int __Pyx_dict_iter_next(
39366
39386
 
39367
39387
  /* UnpackUnboundCMethod */
39368
39388
  static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *args, PyObject *kwargs) {
39389
+ PyObject *result;
39369
39390
  PyObject *selfless_args = PyTuple_GetSlice(args, 1, PyTuple_Size(args));
39370
39391
  if (unlikely(!selfless_args)) return NULL;
39371
- PyObject *result = PyObject_Call(method, selfless_args, kwargs);
39392
+ result = PyObject_Call(method, selfless_args, kwargs);
39372
39393
  Py_DECREF(selfless_args);
39373
39394
  return result;
39374
39395
  }
@@ -40085,10 +40106,10 @@ __PYX_GOOD:
40085
40106
  #endif
40086
40107
 
40087
40108
  /* TypeImport */
40088
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
40089
- #define __PYX_HAVE_RT_ImportType_3_0_7
40090
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
40091
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
40109
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
40110
+ #define __PYX_HAVE_RT_ImportType_3_0_10
40111
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
40112
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
40092
40113
  {
40093
40114
  PyObject *result = 0;
40094
40115
  char warning[200];
@@ -40142,7 +40163,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
40142
40163
  module_name, class_name, size, basicsize+itemsize);
40143
40164
  goto bad;
40144
40165
  }
40145
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
40166
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
40146
40167
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
40147
40168
  PyErr_Format(PyExc_ValueError,
40148
40169
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -40150,7 +40171,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
40150
40171
  module_name, class_name, size, basicsize, basicsize+itemsize);
40151
40172
  goto bad;
40152
40173
  }
40153
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
40174
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
40154
40175
  PyOS_snprintf(warning, sizeof(warning),
40155
40176
  "%s.%s size changed, may indicate binary incompatibility. "
40156
40177
  "Expected %zd from C header, got %zd from PyObject",
@@ -41268,7 +41289,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
41268
41289
  default:
41269
41290
  return NULL;
41270
41291
  }
41271
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
41292
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
41272
41293
  }
41273
41294
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
41274
41295
  {
@@ -42322,7 +42343,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
42322
42343
  #else
42323
42344
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
42324
42345
  #endif
42325
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
42346
+ Py_XDECREF(py_funcname);
42326
42347
  return py_code;
42327
42348
  bad:
42328
42349
  Py_XDECREF(py_funcname);