biotite 0.39.0__cp311-cp311-win_amd64.whl → 0.41.0__cp311-cp311-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 +258 -237
  8. biotite/sequence/align/banded.cp311-win_amd64.pyd +0 -0
  9. biotite/sequence/align/cigar.py +60 -15
  10. biotite/sequence/align/kmeralphabet.c +243 -222
  11. biotite/sequence/align/kmeralphabet.cp311-win_amd64.pyd +0 -0
  12. biotite/sequence/align/kmersimilarity.c +215 -196
  13. biotite/sequence/align/kmersimilarity.cp311-win_amd64.pyd +0 -0
  14. biotite/sequence/align/kmertable.cp311-win_amd64.pyd +0 -0
  15. biotite/sequence/align/kmertable.cpp +233 -205
  16. biotite/sequence/align/localgapped.c +258 -237
  17. biotite/sequence/align/localgapped.cp311-win_amd64.pyd +0 -0
  18. biotite/sequence/align/localungapped.c +235 -214
  19. biotite/sequence/align/localungapped.cp311-win_amd64.pyd +0 -0
  20. biotite/sequence/align/multiple.c +255 -234
  21. biotite/sequence/align/multiple.cp311-win_amd64.pyd +0 -0
  22. biotite/sequence/align/pairwise.c +274 -253
  23. biotite/sequence/align/pairwise.cp311-win_amd64.pyd +0 -0
  24. biotite/sequence/align/permutation.c +215 -196
  25. biotite/sequence/align/permutation.cp311-win_amd64.pyd +0 -0
  26. biotite/sequence/align/selector.c +217 -197
  27. biotite/sequence/align/selector.cp311-win_amd64.pyd +0 -0
  28. biotite/sequence/align/tracetable.c +215 -195
  29. biotite/sequence/align/tracetable.cp311-win_amd64.pyd +0 -0
  30. biotite/sequence/annotation.py +2 -2
  31. biotite/sequence/codec.c +235 -214
  32. biotite/sequence/codec.cp311-win_amd64.pyd +0 -0
  33. biotite/sequence/io/fasta/convert.py +27 -24
  34. biotite/sequence/phylo/nj.c +215 -196
  35. biotite/sequence/phylo/nj.cp311-win_amd64.pyd +0 -0
  36. biotite/sequence/phylo/tree.c +227 -202
  37. biotite/sequence/phylo/tree.cp311-win_amd64.pyd +0 -0
  38. biotite/sequence/phylo/upgma.c +215 -196
  39. biotite/sequence/phylo/upgma.cp311-win_amd64.pyd +0 -0
  40. biotite/structure/__init__.py +2 -0
  41. biotite/structure/basepairs.py +7 -12
  42. biotite/structure/bonds.c +1437 -1279
  43. biotite/structure/bonds.cp311-win_amd64.pyd +0 -0
  44. biotite/structure/celllist.c +217 -197
  45. biotite/structure/celllist.cp311-win_amd64.pyd +0 -0
  46. biotite/structure/charges.c +1052 -1101
  47. biotite/structure/charges.cp311-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 +219 -198
  70. biotite/structure/io/mmtf/convertarray.cp311-win_amd64.pyd +0 -0
  71. biotite/structure/io/mmtf/convertfile.c +217 -197
  72. biotite/structure/io/mmtf/convertfile.cp311-win_amd64.pyd +0 -0
  73. biotite/structure/io/mmtf/decode.c +225 -204
  74. biotite/structure/io/mmtf/decode.cp311-win_amd64.pyd +0 -0
  75. biotite/structure/io/mmtf/encode.c +215 -196
  76. biotite/structure/io/mmtf/encode.cp311-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.cp311-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 +112813 -0
  97. biotite/structure/io/pdbx/encoding.cp311-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 +215 -196
  102. biotite/structure/sasa.cp311-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-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1666
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
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-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1675
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
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-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1684
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
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-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
1693
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
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-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1702
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
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-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1711
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
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-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1720
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
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-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
1729
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
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-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1738
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
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-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
1747
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
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-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1756
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
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-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
1765
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
1748
1766
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1749
1767
  * ctypedef npy_long int_t
1750
1768
  * ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1753
1771
  */
1754
1772
  typedef npy_longlong __pyx_t_5numpy_long_t;
1755
1773
 
1756
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1774
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1757
1775
  * ctypedef npy_long int_t
1758
1776
  * ctypedef npy_longlong long_t
1759
1777
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
1762
1780
  */
1763
1781
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1764
1782
 
1765
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":759
1783
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":759
1766
1784
  * ctypedef npy_longlong longlong_t
1767
1785
  *
1768
1786
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1771,7 +1789,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1771
1789
  */
1772
1790
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1773
1791
 
1774
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1792
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1775
1793
  *
1776
1794
  * ctypedef npy_ulong uint_t
1777
1795
  * ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
@@ -1780,7 +1798,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1780
1798
  */
1781
1799
  typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1782
1800
 
1783
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1801
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1784
1802
  * ctypedef npy_ulong uint_t
1785
1803
  * ctypedef npy_ulonglong ulong_t
1786
1804
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1789,7 +1807,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1789
1807
  */
1790
1808
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1791
1809
 
1792
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1810
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1793
1811
  * ctypedef npy_ulonglong ulonglong_t
1794
1812
  *
1795
1813
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1798,7 +1816,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1798
1816
  */
1799
1817
  typedef npy_intp __pyx_t_5numpy_intp_t;
1800
1818
 
1801
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1819
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1802
1820
  *
1803
1821
  * ctypedef npy_intp intp_t
1804
1822
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1807,7 +1825,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1807
1825
  */
1808
1826
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1809
1827
 
1810
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":766
1828
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":766
1811
1829
  * ctypedef npy_uintp uintp_t
1812
1830
  *
1813
1831
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1816,7 +1834,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1816
1834
  */
1817
1835
  typedef npy_double __pyx_t_5numpy_float_t;
1818
1836
 
1819
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1837
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1820
1838
  *
1821
1839
  * ctypedef npy_double float_t
1822
1840
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1825,7 +1843,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1825
1843
  */
1826
1844
  typedef npy_double __pyx_t_5numpy_double_t;
1827
1845
 
1828
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1846
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1829
1847
  * ctypedef npy_double float_t
1830
1848
  * ctypedef npy_double double_t
1831
1849
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1938,7 +1956,7 @@ struct __pyx_MemviewEnum_obj;
1938
1956
  struct __pyx_memoryview_obj;
1939
1957
  struct __pyx_memoryviewslice_obj;
1940
1958
 
1941
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
1959
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
1942
1960
  * ctypedef npy_longdouble longdouble_t
1943
1961
  *
1944
1962
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1947,7 +1965,7 @@ struct __pyx_memoryviewslice_obj;
1947
1965
  */
1948
1966
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1949
1967
 
1950
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1968
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1951
1969
  *
1952
1970
  * ctypedef npy_cfloat cfloat_t
1953
1971
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1956,7 +1974,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1956
1974
  */
1957
1975
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1958
1976
 
1959
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1977
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1960
1978
  * ctypedef npy_cfloat cfloat_t
1961
1979
  * ctypedef npy_cdouble cdouble_t
1962
1980
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1965,7 +1983,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1965
1983
  */
1966
1984
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1967
1985
 
1968
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
1986
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
1969
1987
  * ctypedef npy_clongdouble clongdouble_t
1970
1988
  *
1971
1989
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2276,8 +2294,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2276
2294
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2277
2295
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2278
2296
  #else
2279
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2280
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2297
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2298
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2281
2299
  #endif
2282
2300
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2283
2301
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2293,8 +2311,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2293
2311
  #else
2294
2312
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2295
2313
  #endif
2296
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2297
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2314
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2315
+ to have the same reference counting */
2316
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2298
2317
  #else
2299
2318
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2300
2319
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2912,22 +2931,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2912
2931
  #endif
2913
2932
 
2914
2933
  /* TypeImport.proto */
2915
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2916
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2934
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2935
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2917
2936
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2918
2937
  #include <stdalign.h>
2919
2938
  #endif
2920
2939
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2921
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2940
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2922
2941
  #else
2923
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2942
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2924
2943
  #endif
2925
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2926
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2927
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2928
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2944
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2945
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2946
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2947
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2929
2948
  };
2930
- 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);
2949
+ 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);
2931
2950
  #endif
2932
2951
 
2933
2952
  /* FetchSharedCythonModule.proto */
@@ -3020,7 +3039,7 @@ typedef struct {
3020
3039
  #endif
3021
3040
  void *defaults;
3022
3041
  int defaults_pyobjects;
3023
- size_t defaults_size; // used by FusedFunction for copying defaults
3042
+ size_t defaults_size;
3024
3043
  int flags;
3025
3044
  PyObject *defaults_tuple;
3026
3045
  PyObject *defaults_kwdict;
@@ -18496,7 +18515,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18496
18515
  return __pyx_r;
18497
18516
  }
18498
18517
 
18499
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18518
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18500
18519
  *
18501
18520
  * @property
18502
18521
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18507,7 +18526,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18507
18526
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
18508
18527
  PyObject *__pyx_r;
18509
18528
 
18510
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
18529
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
18511
18530
  * """Returns a borrowed reference to the object owning the data/memory.
18512
18531
  * """
18513
18532
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -18517,7 +18536,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18517
18536
  __pyx_r = PyArray_BASE(__pyx_v_self);
18518
18537
  goto __pyx_L0;
18519
18538
 
18520
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18539
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18521
18540
  *
18522
18541
  * @property
18523
18542
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18530,7 +18549,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18530
18549
  return __pyx_r;
18531
18550
  }
18532
18551
 
18533
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18552
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18534
18553
  *
18535
18554
  * @property
18536
18555
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18544,7 +18563,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18544
18563
  PyArray_Descr *__pyx_t_1;
18545
18564
  __Pyx_RefNannySetupContext("descr", 1);
18546
18565
 
18547
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
18566
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
18548
18567
  * """Returns an owned reference to the dtype of the array.
18549
18568
  * """
18550
18569
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -18557,7 +18576,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18557
18576
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
18558
18577
  goto __pyx_L0;
18559
18578
 
18560
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18579
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18561
18580
  *
18562
18581
  * @property
18563
18582
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18572,7 +18591,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18572
18591
  return __pyx_r;
18573
18592
  }
18574
18593
 
18575
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18594
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18576
18595
  *
18577
18596
  * @property
18578
18597
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18583,7 +18602,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18583
18602
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
18584
18603
  int __pyx_r;
18585
18604
 
18586
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
18605
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
18587
18606
  * """Returns the number of dimensions in the array.
18588
18607
  * """
18589
18608
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -18593,7 +18612,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18593
18612
  __pyx_r = PyArray_NDIM(__pyx_v_self);
18594
18613
  goto __pyx_L0;
18595
18614
 
18596
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18615
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18597
18616
  *
18598
18617
  * @property
18599
18618
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18606,7 +18625,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18606
18625
  return __pyx_r;
18607
18626
  }
18608
18627
 
18609
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18628
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18610
18629
  *
18611
18630
  * @property
18612
18631
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18617,7 +18636,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18617
18636
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
18618
18637
  npy_intp *__pyx_r;
18619
18638
 
18620
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
18639
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
18621
18640
  * Can return NULL for 0-dimensional arrays.
18622
18641
  * """
18623
18642
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -18627,7 +18646,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18627
18646
  __pyx_r = PyArray_DIMS(__pyx_v_self);
18628
18647
  goto __pyx_L0;
18629
18648
 
18630
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18649
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18631
18650
  *
18632
18651
  * @property
18633
18652
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18640,7 +18659,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18640
18659
  return __pyx_r;
18641
18660
  }
18642
18661
 
18643
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18662
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18644
18663
  *
18645
18664
  * @property
18646
18665
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18651,7 +18670,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18651
18670
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
18652
18671
  npy_intp *__pyx_r;
18653
18672
 
18654
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
18673
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
18655
18674
  * The number of elements matches the number of dimensions of the array (ndim).
18656
18675
  * """
18657
18676
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -18661,7 +18680,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18661
18680
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
18662
18681
  goto __pyx_L0;
18663
18682
 
18664
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18683
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18665
18684
  *
18666
18685
  * @property
18667
18686
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18674,7 +18693,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18674
18693
  return __pyx_r;
18675
18694
  }
18676
18695
 
18677
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18696
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18678
18697
  *
18679
18698
  * @property
18680
18699
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18685,7 +18704,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18685
18704
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
18686
18705
  npy_intp __pyx_r;
18687
18706
 
18688
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
18707
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
18689
18708
  * """Returns the total size (in number of elements) of the array.
18690
18709
  * """
18691
18710
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -18695,7 +18714,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18695
18714
  __pyx_r = PyArray_SIZE(__pyx_v_self);
18696
18715
  goto __pyx_L0;
18697
18716
 
18698
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18717
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18699
18718
  *
18700
18719
  * @property
18701
18720
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18708,7 +18727,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18708
18727
  return __pyx_r;
18709
18728
  }
18710
18729
 
18711
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18730
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18712
18731
  *
18713
18732
  * @property
18714
18733
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18719,7 +18738,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18719
18738
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
18720
18739
  char *__pyx_r;
18721
18740
 
18722
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
18741
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
18723
18742
  * of `PyArray_DATA()` instead, which returns a 'void*'.
18724
18743
  * """
18725
18744
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -18729,7 +18748,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18729
18748
  __pyx_r = PyArray_BYTES(__pyx_v_self);
18730
18749
  goto __pyx_L0;
18731
18750
 
18732
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18751
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18733
18752
  *
18734
18753
  * @property
18735
18754
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18742,7 +18761,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18742
18761
  return __pyx_r;
18743
18762
  }
18744
18763
 
18745
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18764
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18746
18765
  * ctypedef npy_cdouble complex_t
18747
18766
  *
18748
18767
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18759,7 +18778,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18759
18778
  int __pyx_clineno = 0;
18760
18779
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
18761
18780
 
18762
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18781
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18763
18782
  *
18764
18783
  * cdef inline object PyArray_MultiIterNew1(a):
18765
18784
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -18773,7 +18792,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18773
18792
  __pyx_t_1 = 0;
18774
18793
  goto __pyx_L0;
18775
18794
 
18776
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18795
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18777
18796
  * ctypedef npy_cdouble complex_t
18778
18797
  *
18779
18798
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18792,7 +18811,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18792
18811
  return __pyx_r;
18793
18812
  }
18794
18813
 
18795
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18814
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18796
18815
  * return PyArray_MultiIterNew(1, <void*>a)
18797
18816
  *
18798
18817
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18809,7 +18828,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18809
18828
  int __pyx_clineno = 0;
18810
18829
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
18811
18830
 
18812
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18831
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18813
18832
  *
18814
18833
  * cdef inline object PyArray_MultiIterNew2(a, b):
18815
18834
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -18823,7 +18842,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18823
18842
  __pyx_t_1 = 0;
18824
18843
  goto __pyx_L0;
18825
18844
 
18826
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18845
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18827
18846
  * return PyArray_MultiIterNew(1, <void*>a)
18828
18847
  *
18829
18848
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18842,7 +18861,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18842
18861
  return __pyx_r;
18843
18862
  }
18844
18863
 
18845
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18864
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18846
18865
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18847
18866
  *
18848
18867
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18859,7 +18878,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18859
18878
  int __pyx_clineno = 0;
18860
18879
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
18861
18880
 
18862
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18881
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18863
18882
  *
18864
18883
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
18865
18884
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -18873,7 +18892,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18873
18892
  __pyx_t_1 = 0;
18874
18893
  goto __pyx_L0;
18875
18894
 
18876
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18895
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18877
18896
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18878
18897
  *
18879
18898
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18892,7 +18911,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18892
18911
  return __pyx_r;
18893
18912
  }
18894
18913
 
18895
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18914
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18896
18915
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18897
18916
  *
18898
18917
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18909,7 +18928,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18909
18928
  int __pyx_clineno = 0;
18910
18929
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
18911
18930
 
18912
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18931
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18913
18932
  *
18914
18933
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
18915
18934
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -18923,7 +18942,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18923
18942
  __pyx_t_1 = 0;
18924
18943
  goto __pyx_L0;
18925
18944
 
18926
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18945
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18927
18946
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18928
18947
  *
18929
18948
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18942,7 +18961,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18942
18961
  return __pyx_r;
18943
18962
  }
18944
18963
 
18945
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18964
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18946
18965
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18947
18966
  *
18948
18967
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18959,7 +18978,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18959
18978
  int __pyx_clineno = 0;
18960
18979
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
18961
18980
 
18962
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18981
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18963
18982
  *
18964
18983
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
18965
18984
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -18973,7 +18992,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18973
18992
  __pyx_t_1 = 0;
18974
18993
  goto __pyx_L0;
18975
18994
 
18976
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18995
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18977
18996
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18978
18997
  *
18979
18998
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18992,7 +19011,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18992
19011
  return __pyx_r;
18993
19012
  }
18994
19013
 
18995
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
19014
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
18996
19015
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18997
19016
  *
18998
19017
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19006,7 +19025,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19006
19025
  int __pyx_t_1;
19007
19026
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
19008
19027
 
19009
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19028
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19010
19029
  *
19011
19030
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19012
19031
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19016,7 +19035,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19016
19035
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
19017
19036
  if (__pyx_t_1) {
19018
19037
 
19019
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
19038
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
19020
19039
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19021
19040
  * if PyDataType_HASSUBARRAY(d):
19022
19041
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -19028,7 +19047,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19028
19047
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
19029
19048
  goto __pyx_L0;
19030
19049
 
19031
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19050
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19032
19051
  *
19033
19052
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19034
19053
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19037,7 +19056,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19037
19056
  */
19038
19057
  }
19039
19058
 
19040
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
19059
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
19041
19060
  * return <tuple>d.subarray.shape
19042
19061
  * else:
19043
19062
  * return () # <<<<<<<<<<<<<<
@@ -19051,7 +19070,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19051
19070
  goto __pyx_L0;
19052
19071
  }
19053
19072
 
19054
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
19073
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
19055
19074
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19056
19075
  *
19057
19076
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19066,7 +19085,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19066
19085
  return __pyx_r;
19067
19086
  }
19068
19087
 
19069
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19088
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19070
19089
  * int _import_umath() except -1
19071
19090
  *
19072
19091
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19076,7 +19095,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19076
19095
 
19077
19096
  static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
19078
19097
 
19079
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
19098
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
19080
19099
  *
19081
19100
  * cdef inline void set_array_base(ndarray arr, object base):
19082
19101
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -19085,7 +19104,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19085
19104
  */
19086
19105
  Py_INCREF(__pyx_v_base);
19087
19106
 
19088
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19107
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19089
19108
  * cdef inline void set_array_base(ndarray arr, object base):
19090
19109
  * Py_INCREF(base) # important to do this before stealing the reference below!
19091
19110
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -19094,7 +19113,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19094
19113
  */
19095
19114
  (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
19096
19115
 
19097
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19116
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19098
19117
  * int _import_umath() except -1
19099
19118
  *
19100
19119
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19105,7 +19124,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19105
19124
  /* function exit code */
19106
19125
  }
19107
19126
 
19108
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19127
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19109
19128
  * PyArray_SetBaseObject(arr, base)
19110
19129
  *
19111
19130
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19120,7 +19139,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19120
19139
  int __pyx_t_1;
19121
19140
  __Pyx_RefNannySetupContext("get_array_base", 1);
19122
19141
 
19123
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19142
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19124
19143
  *
19125
19144
  * cdef inline object get_array_base(ndarray arr):
19126
19145
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -19129,7 +19148,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19129
19148
  */
19130
19149
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
19131
19150
 
19132
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19151
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19133
19152
  * cdef inline object get_array_base(ndarray arr):
19134
19153
  * base = PyArray_BASE(arr)
19135
19154
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19139,7 +19158,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19139
19158
  __pyx_t_1 = (__pyx_v_base == NULL);
19140
19159
  if (__pyx_t_1) {
19141
19160
 
19142
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
19161
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
19143
19162
  * base = PyArray_BASE(arr)
19144
19163
  * if base is NULL:
19145
19164
  * return None # <<<<<<<<<<<<<<
@@ -19150,7 +19169,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19150
19169
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
19151
19170
  goto __pyx_L0;
19152
19171
 
19153
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19172
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19154
19173
  * cdef inline object get_array_base(ndarray arr):
19155
19174
  * base = PyArray_BASE(arr)
19156
19175
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19159,7 +19178,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19159
19178
  */
19160
19179
  }
19161
19180
 
19162
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
19181
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
19163
19182
  * if base is NULL:
19164
19183
  * return None
19165
19184
  * return <object>base # <<<<<<<<<<<<<<
@@ -19171,7 +19190,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19171
19190
  __pyx_r = ((PyObject *)__pyx_v_base);
19172
19191
  goto __pyx_L0;
19173
19192
 
19174
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19193
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19175
19194
  * PyArray_SetBaseObject(arr, base)
19176
19195
  *
19177
19196
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19186,7 +19205,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19186
19205
  return __pyx_r;
19187
19206
  }
19188
19207
 
19189
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19208
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19190
19209
  * # Versions of the import_* functions which are more suitable for
19191
19210
  * # Cython code.
19192
19211
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19210,7 +19229,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19210
19229
  int __pyx_clineno = 0;
19211
19230
  __Pyx_RefNannySetupContext("import_array", 1);
19212
19231
 
19213
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19232
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19214
19233
  * # Cython code.
19215
19234
  * cdef inline int import_array() except -1:
19216
19235
  * try: # <<<<<<<<<<<<<<
@@ -19226,7 +19245,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19226
19245
  __Pyx_XGOTREF(__pyx_t_3);
19227
19246
  /*try:*/ {
19228
19247
 
19229
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19248
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19230
19249
  * cdef inline int import_array() except -1:
19231
19250
  * try:
19232
19251
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -19235,7 +19254,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19235
19254
  */
19236
19255
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 984, __pyx_L3_error)
19237
19256
 
19238
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19257
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19239
19258
  * # Cython code.
19240
19259
  * cdef inline int import_array() except -1:
19241
19260
  * try: # <<<<<<<<<<<<<<
@@ -19249,7 +19268,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19249
19268
  goto __pyx_L8_try_end;
19250
19269
  __pyx_L3_error:;
19251
19270
 
19252
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
19271
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
19253
19272
  * try:
19254
19273
  * __pyx_import_array()
19255
19274
  * except Exception: # <<<<<<<<<<<<<<
@@ -19264,7 +19283,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19264
19283
  __Pyx_XGOTREF(__pyx_t_6);
19265
19284
  __Pyx_XGOTREF(__pyx_t_7);
19266
19285
 
19267
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19286
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19268
19287
  * __pyx_import_array()
19269
19288
  * except Exception:
19270
19289
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -19279,7 +19298,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19279
19298
  }
19280
19299
  goto __pyx_L5_except_error;
19281
19300
 
19282
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19301
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19283
19302
  * # Cython code.
19284
19303
  * cdef inline int import_array() except -1:
19285
19304
  * try: # <<<<<<<<<<<<<<
@@ -19295,7 +19314,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19295
19314
  __pyx_L8_try_end:;
19296
19315
  }
19297
19316
 
19298
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19317
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19299
19318
  * # Versions of the import_* functions which are more suitable for
19300
19319
  * # Cython code.
19301
19320
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19318,7 +19337,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19318
19337
  return __pyx_r;
19319
19338
  }
19320
19339
 
19321
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19340
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19322
19341
  * raise ImportError("numpy.core.multiarray failed to import")
19323
19342
  *
19324
19343
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19342,7 +19361,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19342
19361
  int __pyx_clineno = 0;
19343
19362
  __Pyx_RefNannySetupContext("import_umath", 1);
19344
19363
 
19345
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19364
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19346
19365
  *
19347
19366
  * cdef inline int import_umath() except -1:
19348
19367
  * try: # <<<<<<<<<<<<<<
@@ -19358,7 +19377,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19358
19377
  __Pyx_XGOTREF(__pyx_t_3);
19359
19378
  /*try:*/ {
19360
19379
 
19361
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19380
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19362
19381
  * cdef inline int import_umath() except -1:
19363
19382
  * try:
19364
19383
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19367,7 +19386,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19367
19386
  */
19368
19387
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 990, __pyx_L3_error)
19369
19388
 
19370
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19389
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19371
19390
  *
19372
19391
  * cdef inline int import_umath() except -1:
19373
19392
  * try: # <<<<<<<<<<<<<<
@@ -19381,7 +19400,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19381
19400
  goto __pyx_L8_try_end;
19382
19401
  __pyx_L3_error:;
19383
19402
 
19384
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
19403
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
19385
19404
  * try:
19386
19405
  * _import_umath()
19387
19406
  * except Exception: # <<<<<<<<<<<<<<
@@ -19396,7 +19415,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19396
19415
  __Pyx_XGOTREF(__pyx_t_6);
19397
19416
  __Pyx_XGOTREF(__pyx_t_7);
19398
19417
 
19399
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19418
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19400
19419
  * _import_umath()
19401
19420
  * except Exception:
19402
19421
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19411,7 +19430,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19411
19430
  }
19412
19431
  goto __pyx_L5_except_error;
19413
19432
 
19414
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19433
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19415
19434
  *
19416
19435
  * cdef inline int import_umath() except -1:
19417
19436
  * try: # <<<<<<<<<<<<<<
@@ -19427,7 +19446,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19427
19446
  __pyx_L8_try_end:;
19428
19447
  }
19429
19448
 
19430
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19449
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19431
19450
  * raise ImportError("numpy.core.multiarray failed to import")
19432
19451
  *
19433
19452
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19450,7 +19469,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19450
19469
  return __pyx_r;
19451
19470
  }
19452
19471
 
19453
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19472
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19454
19473
  * raise ImportError("numpy.core.umath failed to import")
19455
19474
  *
19456
19475
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19474,7 +19493,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19474
19493
  int __pyx_clineno = 0;
19475
19494
  __Pyx_RefNannySetupContext("import_ufunc", 1);
19476
19495
 
19477
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19496
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19478
19497
  *
19479
19498
  * cdef inline int import_ufunc() except -1:
19480
19499
  * try: # <<<<<<<<<<<<<<
@@ -19490,7 +19509,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19490
19509
  __Pyx_XGOTREF(__pyx_t_3);
19491
19510
  /*try:*/ {
19492
19511
 
19493
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19512
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19494
19513
  * cdef inline int import_ufunc() except -1:
19495
19514
  * try:
19496
19515
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19499,7 +19518,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19499
19518
  */
19500
19519
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 996, __pyx_L3_error)
19501
19520
 
19502
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19521
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19503
19522
  *
19504
19523
  * cdef inline int import_ufunc() except -1:
19505
19524
  * try: # <<<<<<<<<<<<<<
@@ -19513,7 +19532,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19513
19532
  goto __pyx_L8_try_end;
19514
19533
  __pyx_L3_error:;
19515
19534
 
19516
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
19535
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
19517
19536
  * try:
19518
19537
  * _import_umath()
19519
19538
  * except Exception: # <<<<<<<<<<<<<<
@@ -19528,7 +19547,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19528
19547
  __Pyx_XGOTREF(__pyx_t_6);
19529
19548
  __Pyx_XGOTREF(__pyx_t_7);
19530
19549
 
19531
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
19550
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
19532
19551
  * _import_umath()
19533
19552
  * except Exception:
19534
19553
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19543,7 +19562,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19543
19562
  }
19544
19563
  goto __pyx_L5_except_error;
19545
19564
 
19546
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19565
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19547
19566
  *
19548
19567
  * cdef inline int import_ufunc() except -1:
19549
19568
  * try: # <<<<<<<<<<<<<<
@@ -19559,7 +19578,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19559
19578
  __pyx_L8_try_end:;
19560
19579
  }
19561
19580
 
19562
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19581
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19563
19582
  * raise ImportError("numpy.core.umath failed to import")
19564
19583
  *
19565
19584
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19582,7 +19601,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19582
19601
  return __pyx_r;
19583
19602
  }
19584
19603
 
19585
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
19604
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
19586
19605
  *
19587
19606
  *
19588
19607
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19593,7 +19612,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19593
19612
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
19594
19613
  int __pyx_r;
19595
19614
 
19596
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
19615
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
19597
19616
  * bool
19598
19617
  * """
19599
19618
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -19603,7 +19622,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19603
19622
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
19604
19623
  goto __pyx_L0;
19605
19624
 
19606
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
19625
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
19607
19626
  *
19608
19627
  *
19609
19628
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19616,7 +19635,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19616
19635
  return __pyx_r;
19617
19636
  }
19618
19637
 
19619
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
19638
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
19620
19639
  *
19621
19640
  *
19622
19641
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19627,7 +19646,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19627
19646
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
19628
19647
  int __pyx_r;
19629
19648
 
19630
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
19649
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
19631
19650
  * bool
19632
19651
  * """
19633
19652
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -19637,7 +19656,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19637
19656
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
19638
19657
  goto __pyx_L0;
19639
19658
 
19640
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
19659
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
19641
19660
  *
19642
19661
  *
19643
19662
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19650,7 +19669,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19650
19669
  return __pyx_r;
19651
19670
  }
19652
19671
 
19653
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
19672
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
19654
19673
  *
19655
19674
  *
19656
19675
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19661,7 +19680,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19661
19680
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
19662
19681
  npy_datetime __pyx_r;
19663
19682
 
19664
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
19683
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
19665
19684
  * also needed. That can be found using `get_datetime64_unit`.
19666
19685
  * """
19667
19686
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19671,7 +19690,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19671
19690
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
19672
19691
  goto __pyx_L0;
19673
19692
 
19674
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
19693
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
19675
19694
  *
19676
19695
  *
19677
19696
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19684,7 +19703,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19684
19703
  return __pyx_r;
19685
19704
  }
19686
19705
 
19687
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
19706
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
19688
19707
  *
19689
19708
  *
19690
19709
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19695,7 +19714,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19695
19714
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
19696
19715
  npy_timedelta __pyx_r;
19697
19716
 
19698
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1045
19717
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1045
19699
19718
  * returns the int64 value underlying scalar numpy timedelta64 object
19700
19719
  * """
19701
19720
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19705,7 +19724,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19705
19724
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
19706
19725
  goto __pyx_L0;
19707
19726
 
19708
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
19727
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
19709
19728
  *
19710
19729
  *
19711
19730
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19718,7 +19737,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19718
19737
  return __pyx_r;
19719
19738
  }
19720
19739
 
19721
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
19740
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
19722
19741
  *
19723
19742
  *
19724
19743
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19729,7 +19748,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19729
19748
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
19730
19749
  NPY_DATETIMEUNIT __pyx_r;
19731
19750
 
19732
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1052
19751
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1052
19733
19752
  * returns the unit part of the dtype for a numpy datetime64 object.
19734
19753
  * """
19735
19754
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -19737,7 +19756,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
19737
19756
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
19738
19757
  goto __pyx_L0;
19739
19758
 
19740
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
19759
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
19741
19760
  *
19742
19761
  *
19743
19762
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -22419,8 +22438,8 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_6decode_6_decode_packed(
22419
22438
  Py_ssize_t __pyx_v_itemsize;
22420
22439
  int __pyx_v_dtype_signed;
22421
22440
  Py_UCS4 __pyx_v_kind;
22422
- int __pyx_v____pyx_int8_is_signed;
22423
- int __pyx_v____pyx_int16_is_signed;
22441
+ int __pyx_v___pyx_fused_dtype_int8_is_signed;
22442
+ int __pyx_v___pyx_fused_dtype_int16_is_signed;
22424
22443
  PyObject *__pyx_v_arg = NULL;
22425
22444
  PyObject *__pyx_v_dtype = NULL;
22426
22445
  PyObject *__pyx_v_arg_base = NULL;
@@ -22488,8 +22507,8 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_6decode_6_decode_packed(
22488
22507
  __pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
22489
22508
  __pyx_t_1 = 0;
22490
22509
  __pyx_v_itemsize = -1L;
22491
- __pyx_v____pyx_int8_is_signed = (!(((__pyx_t_7biotite_9structure_2io_4mmtf_6decode_int8)-1L) > 0));
22492
- __pyx_v____pyx_int16_is_signed = (!(((__pyx_t_7biotite_9structure_2io_4mmtf_6decode_int16)-1L) > 0));
22510
+ __pyx_v___pyx_fused_dtype_int8_is_signed = (!(((__pyx_t_7biotite_9structure_2io_4mmtf_6decode_int8)-1L) > 0));
22511
+ __pyx_v___pyx_fused_dtype_int16_is_signed = (!(((__pyx_t_7biotite_9structure_2io_4mmtf_6decode_int16)-1L) > 0));
22493
22512
  if (unlikely(__pyx_v_args == Py_None)) {
22494
22513
  PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
22495
22514
  __PYX_ERR(0, 122, __pyx_L1_error)
@@ -22631,7 +22650,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_6decode_6_decode_packed(
22631
22650
  __pyx_t_2 = __pyx_t_4;
22632
22651
  goto __pyx_L16_bool_binop_done;
22633
22652
  }
22634
- __pyx_t_4 = (!(__pyx_v____pyx_int8_is_signed ^ __pyx_v_dtype_signed));
22653
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_int8_is_signed ^ __pyx_v_dtype_signed));
22635
22654
  __pyx_t_2 = __pyx_t_4;
22636
22655
  __pyx_L16_bool_binop_done:;
22637
22656
  if (__pyx_t_2) {
@@ -22654,7 +22673,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_6decode_6_decode_packed(
22654
22673
  __pyx_t_2 = __pyx_t_4;
22655
22674
  goto __pyx_L20_bool_binop_done;
22656
22675
  }
22657
- __pyx_t_4 = (!(__pyx_v____pyx_int16_is_signed ^ __pyx_v_dtype_signed));
22676
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_int16_is_signed ^ __pyx_v_dtype_signed));
22658
22677
  __pyx_t_2 = __pyx_t_4;
22659
22678
  __pyx_L20_bool_binop_done:;
22660
22679
  if (__pyx_t_2) {
@@ -25569,7 +25588,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
25569
25588
  __Pyx_GOTREF(__pyx_tuple__8);
25570
25589
  __Pyx_GIVEREF(__pyx_tuple__8);
25571
25590
 
25572
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
25591
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
25573
25592
  * __pyx_import_array()
25574
25593
  * except Exception:
25575
25594
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -25580,7 +25599,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
25580
25599
  __Pyx_GOTREF(__pyx_tuple__9);
25581
25600
  __Pyx_GIVEREF(__pyx_tuple__9);
25582
25601
 
25583
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
25602
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
25584
25603
  * _import_umath()
25585
25604
  * except Exception:
25586
25605
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -26037,33 +26056,33 @@ static int __Pyx_modinit_type_import_code(void) {
26037
26056
  /*--- Type import code ---*/
26038
26057
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
26039
26058
  __Pyx_GOTREF(__pyx_t_1);
26040
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
26059
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
26041
26060
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
26042
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
26061
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
26043
26062
  #elif CYTHON_COMPILING_IN_LIMITED_API
26044
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
26063
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
26045
26064
  #else
26046
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
26065
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
26047
26066
  #endif
26048
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
26067
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
26049
26068
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
26050
26069
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
26051
26070
  __Pyx_GOTREF(__pyx_t_1);
26052
- __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)
26053
- __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)
26054
- __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)
26055
- __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)
26056
- __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 812, __pyx_L1_error)
26057
- __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 814, __pyx_L1_error)
26058
- __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 816, __pyx_L1_error)
26059
- __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 818, __pyx_L1_error)
26060
- __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 820, __pyx_L1_error)
26061
- __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 822, __pyx_L1_error)
26062
- __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 824, __pyx_L1_error)
26063
- __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 826, __pyx_L1_error)
26064
- __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 828, __pyx_L1_error)
26065
- __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 830, __pyx_L1_error)
26066
- __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 868, __pyx_L1_error)
26071
+ __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)
26072
+ __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)
26073
+ __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)
26074
+ __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)
26075
+ __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 812, __pyx_L1_error)
26076
+ __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 814, __pyx_L1_error)
26077
+ __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 816, __pyx_L1_error)
26078
+ __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 818, __pyx_L1_error)
26079
+ __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 820, __pyx_L1_error)
26080
+ __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 822, __pyx_L1_error)
26081
+ __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 824, __pyx_L1_error)
26082
+ __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 826, __pyx_L1_error)
26083
+ __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 828, __pyx_L1_error)
26084
+ __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 830, __pyx_L1_error)
26085
+ __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 868, __pyx_L1_error)
26067
26086
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
26068
26087
  __Pyx_RefNannyFinishContext();
26069
26088
  return 0;
@@ -27450,11 +27469,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
27450
27469
  {
27451
27470
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
27452
27471
  if (unlikely(eq != 0)) {
27453
- if (unlikely(eq < 0)) return NULL; // error
27472
+ if (unlikely(eq < 0)) return NULL;
27454
27473
  return kwvalues[i];
27455
27474
  }
27456
27475
  }
27457
- return NULL; // not found (no exception set)
27476
+ return NULL;
27458
27477
  }
27459
27478
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
27460
27479
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -27567,7 +27586,7 @@ static int __Pyx_ParseOptionalKeywords(
27567
27586
  if (*name) {
27568
27587
  values[name-argnames] = value;
27569
27588
  #if CYTHON_AVOID_BORROWED_REFS
27570
- Py_INCREF(value); // transfer ownership of value to values
27589
+ Py_INCREF(value);
27571
27590
  Py_DECREF(key);
27572
27591
  #endif
27573
27592
  key = NULL;
@@ -27586,7 +27605,7 @@ static int __Pyx_ParseOptionalKeywords(
27586
27605
  && _PyString_Eq(**name, key)) {
27587
27606
  values[name-argnames] = value;
27588
27607
  #if CYTHON_AVOID_BORROWED_REFS
27589
- value = NULL; // ownership transferred to values
27608
+ value = NULL;
27590
27609
  #endif
27591
27610
  break;
27592
27611
  }
@@ -27618,7 +27637,7 @@ static int __Pyx_ParseOptionalKeywords(
27618
27637
  if (cmp == 0) {
27619
27638
  values[name-argnames] = value;
27620
27639
  #if CYTHON_AVOID_BORROWED_REFS
27621
- value = NULL; // ownership transferred to values
27640
+ value = NULL;
27622
27641
  #endif
27623
27642
  break;
27624
27643
  }
@@ -29639,9 +29658,10 @@ static int __Pyx_PyMemoryView_Get_ndim(PyObject *obj) {
29639
29658
 
29640
29659
  /* IterFinish */
29641
29660
  static CYTHON_INLINE int __Pyx_IterFinish(void) {
29661
+ PyObject* exc_type;
29642
29662
  __Pyx_PyThreadState_declare
29643
29663
  __Pyx_PyThreadState_assign
29644
- PyObject* exc_type = __Pyx_PyErr_CurrentExceptionType();
29664
+ exc_type = __Pyx_PyErr_CurrentExceptionType();
29645
29665
  if (unlikely(exc_type)) {
29646
29666
  if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
29647
29667
  return -1;
@@ -29965,9 +29985,10 @@ static CYTHON_INLINE int __Pyx_dict_iter_next(
29965
29985
 
29966
29986
  /* UnpackUnboundCMethod */
29967
29987
  static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *args, PyObject *kwargs) {
29988
+ PyObject *result;
29968
29989
  PyObject *selfless_args = PyTuple_GetSlice(args, 1, PyTuple_Size(args));
29969
29990
  if (unlikely(!selfless_args)) return NULL;
29970
- PyObject *result = PyObject_Call(method, selfless_args, kwargs);
29991
+ result = PyObject_Call(method, selfless_args, kwargs);
29971
29992
  Py_DECREF(selfless_args);
29972
29993
  return result;
29973
29994
  }
@@ -30684,10 +30705,10 @@ __PYX_GOOD:
30684
30705
  #endif
30685
30706
 
30686
30707
  /* TypeImport */
30687
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
30688
- #define __PYX_HAVE_RT_ImportType_3_0_7
30689
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
30690
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
30708
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
30709
+ #define __PYX_HAVE_RT_ImportType_3_0_10
30710
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
30711
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
30691
30712
  {
30692
30713
  PyObject *result = 0;
30693
30714
  char warning[200];
@@ -30741,7 +30762,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
30741
30762
  module_name, class_name, size, basicsize+itemsize);
30742
30763
  goto bad;
30743
30764
  }
30744
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
30765
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
30745
30766
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
30746
30767
  PyErr_Format(PyExc_ValueError,
30747
30768
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -30749,7 +30770,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
30749
30770
  module_name, class_name, size, basicsize, basicsize+itemsize);
30750
30771
  goto bad;
30751
30772
  }
30752
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
30773
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
30753
30774
  PyOS_snprintf(warning, sizeof(warning),
30754
30775
  "%s.%s size changed, may indicate binary incompatibility. "
30755
30776
  "Expected %zd from C header, got %zd from PyObject",
@@ -31749,7 +31770,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
31749
31770
  default:
31750
31771
  return NULL;
31751
31772
  }
31752
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
31773
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
31753
31774
  }
31754
31775
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
31755
31776
  {
@@ -32566,7 +32587,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
32566
32587
  #else
32567
32588
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
32568
32589
  #endif
32569
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
32590
+ Py_XDECREF(py_funcname);
32570
32591
  return py_code;
32571
32592
  bad:
32572
32593
  Py_XDECREF(py_funcname);