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

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

Potentially problematic release.


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

Files changed (121) hide show
  1. biotite/__init__.py +3 -3
  2. biotite/application/dssp/app.py +18 -18
  3. biotite/database/pubchem/download.py +23 -23
  4. biotite/database/pubchem/query.py +7 -7
  5. biotite/database/rcsb/download.py +19 -14
  6. biotite/file.py +17 -9
  7. biotite/sequence/align/banded.c +256 -235
  8. biotite/sequence/align/banded.cp312-win_amd64.pyd +0 -0
  9. biotite/sequence/align/cigar.py +60 -15
  10. biotite/sequence/align/kmeralphabet.c +241 -220
  11. biotite/sequence/align/kmeralphabet.cp312-win_amd64.pyd +0 -0
  12. biotite/sequence/align/kmersimilarity.c +213 -194
  13. biotite/sequence/align/kmersimilarity.cp312-win_amd64.pyd +0 -0
  14. biotite/sequence/align/kmertable.cp312-win_amd64.pyd +0 -0
  15. biotite/sequence/align/kmertable.cpp +231 -203
  16. biotite/sequence/align/localgapped.c +256 -235
  17. biotite/sequence/align/localgapped.cp312-win_amd64.pyd +0 -0
  18. biotite/sequence/align/localungapped.c +233 -212
  19. biotite/sequence/align/localungapped.cp312-win_amd64.pyd +0 -0
  20. biotite/sequence/align/multiple.c +253 -232
  21. biotite/sequence/align/multiple.cp312-win_amd64.pyd +0 -0
  22. biotite/sequence/align/pairwise.c +272 -251
  23. biotite/sequence/align/pairwise.cp312-win_amd64.pyd +0 -0
  24. biotite/sequence/align/permutation.c +213 -194
  25. biotite/sequence/align/permutation.cp312-win_amd64.pyd +0 -0
  26. biotite/sequence/align/selector.c +215 -195
  27. biotite/sequence/align/selector.cp312-win_amd64.pyd +0 -0
  28. biotite/sequence/align/tracetable.c +213 -193
  29. biotite/sequence/align/tracetable.cp312-win_amd64.pyd +0 -0
  30. biotite/sequence/annotation.py +2 -2
  31. biotite/sequence/codec.c +233 -212
  32. biotite/sequence/codec.cp312-win_amd64.pyd +0 -0
  33. biotite/sequence/io/fasta/convert.py +27 -24
  34. biotite/sequence/phylo/nj.c +213 -194
  35. biotite/sequence/phylo/nj.cp312-win_amd64.pyd +0 -0
  36. biotite/sequence/phylo/tree.c +225 -200
  37. biotite/sequence/phylo/tree.cp312-win_amd64.pyd +0 -0
  38. biotite/sequence/phylo/upgma.c +213 -194
  39. biotite/sequence/phylo/upgma.cp312-win_amd64.pyd +0 -0
  40. biotite/structure/__init__.py +2 -0
  41. biotite/structure/basepairs.py +7 -12
  42. biotite/structure/bonds.c +1435 -1277
  43. biotite/structure/bonds.cp312-win_amd64.pyd +0 -0
  44. biotite/structure/celllist.c +215 -195
  45. biotite/structure/celllist.cp312-win_amd64.pyd +0 -0
  46. biotite/structure/charges.c +1050 -1099
  47. biotite/structure/charges.cp312-win_amd64.pyd +0 -0
  48. biotite/structure/dotbracket.py +2 -0
  49. biotite/structure/filter.py +30 -37
  50. biotite/structure/info/__init__.py +5 -8
  51. biotite/structure/info/atoms.py +31 -68
  52. biotite/structure/info/bonds.py +47 -101
  53. biotite/structure/info/ccd/README.rst +8 -0
  54. biotite/structure/info/ccd/amino_acids.txt +1663 -0
  55. biotite/structure/info/ccd/carbohydrates.txt +1135 -0
  56. biotite/structure/info/ccd/components.bcif +0 -0
  57. biotite/structure/info/ccd/nucleotides.txt +798 -0
  58. biotite/structure/info/ccd.py +95 -0
  59. biotite/structure/info/groups.py +90 -0
  60. biotite/structure/info/masses.py +21 -20
  61. biotite/structure/info/misc.py +78 -25
  62. biotite/structure/info/standardize.py +17 -12
  63. biotite/structure/integrity.py +19 -70
  64. biotite/structure/io/__init__.py +2 -4
  65. biotite/structure/io/ctab.py +12 -106
  66. biotite/structure/io/general.py +167 -181
  67. biotite/structure/io/gro/file.py +16 -16
  68. biotite/structure/io/mmtf/__init__.py +3 -0
  69. biotite/structure/io/mmtf/convertarray.c +217 -196
  70. biotite/structure/io/mmtf/convertarray.cp312-win_amd64.pyd +0 -0
  71. biotite/structure/io/mmtf/convertfile.c +215 -195
  72. biotite/structure/io/mmtf/convertfile.cp312-win_amd64.pyd +0 -0
  73. biotite/structure/io/mmtf/decode.c +223 -202
  74. biotite/structure/io/mmtf/decode.cp312-win_amd64.pyd +0 -0
  75. biotite/structure/io/mmtf/encode.c +213 -194
  76. biotite/structure/io/mmtf/encode.cp312-win_amd64.pyd +0 -0
  77. biotite/structure/io/mmtf/file.py +34 -26
  78. biotite/structure/io/mol/__init__.py +4 -2
  79. biotite/structure/io/mol/convert.py +71 -7
  80. biotite/structure/io/mol/ctab.py +414 -0
  81. biotite/structure/io/mol/header.py +116 -0
  82. biotite/structure/io/mol/{file.py → mol.py} +69 -82
  83. biotite/structure/io/mol/sdf.py +909 -0
  84. biotite/structure/io/npz/__init__.py +3 -0
  85. biotite/structure/io/npz/file.py +21 -18
  86. biotite/structure/io/pdb/__init__.py +3 -3
  87. biotite/structure/io/pdb/file.py +89 -34
  88. biotite/structure/io/pdb/hybrid36.c +63 -43
  89. biotite/structure/io/pdb/hybrid36.cp312-win_amd64.pyd +0 -0
  90. biotite/structure/io/pdbqt/file.py +32 -32
  91. biotite/structure/io/pdbx/__init__.py +12 -6
  92. biotite/structure/io/pdbx/bcif.py +648 -0
  93. biotite/structure/io/pdbx/cif.py +1032 -0
  94. biotite/structure/io/pdbx/component.py +246 -0
  95. biotite/structure/io/pdbx/convert.py +858 -386
  96. biotite/structure/io/pdbx/encoding.c +112803 -0
  97. biotite/structure/io/pdbx/encoding.cp312-win_amd64.pyd +0 -0
  98. biotite/structure/io/pdbx/legacy.py +267 -0
  99. biotite/structure/molecules.py +151 -151
  100. biotite/structure/repair.py +253 -0
  101. biotite/structure/sasa.c +213 -194
  102. biotite/structure/sasa.cp312-win_amd64.pyd +0 -0
  103. biotite/structure/sequence.py +112 -0
  104. biotite/structure/superimpose.py +618 -116
  105. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/METADATA +3 -3
  106. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/RECORD +109 -103
  107. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/WHEEL +1 -1
  108. biotite/structure/info/amino_acids.json +0 -1556
  109. biotite/structure/info/amino_acids.py +0 -42
  110. biotite/structure/info/carbohydrates.json +0 -1122
  111. biotite/structure/info/carbohydrates.py +0 -39
  112. biotite/structure/info/intra_bonds.msgpack +0 -0
  113. biotite/structure/info/link_types.msgpack +0 -1
  114. biotite/structure/info/nucleotides.json +0 -772
  115. biotite/structure/info/nucleotides.py +0 -39
  116. biotite/structure/info/residue_masses.msgpack +0 -0
  117. biotite/structure/info/residue_names.msgpack +0 -3
  118. biotite/structure/info/residues.msgpack +0 -0
  119. biotite/structure/io/pdbx/file.py +0 -652
  120. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/LICENSE.rst +0 -0
  121. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.0.7 */
1
+ /* Generated by Cython 3.0.10 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -37,10 +37,10 @@ END: Cython Metadata */
37
37
  #else
38
38
  #define __PYX_EXTRA_ABI_MODULE_NAME ""
39
39
  #endif
40
- #define CYTHON_ABI "3_0_7" __PYX_EXTRA_ABI_MODULE_NAME
40
+ #define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
41
41
  #define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
42
42
  #define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
43
- #define CYTHON_HEX_VERSION 0x030007F0
43
+ #define CYTHON_HEX_VERSION 0x03000AF0
44
44
  #define CYTHON_FUTURE_DIVISION 1
45
45
  #include <stddef.h>
46
46
  #ifndef offsetof
@@ -132,6 +132,8 @@ END: Cython Metadata */
132
132
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
133
133
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
134
134
  #endif
135
+ #undef CYTHON_USE_FREELISTS
136
+ #define CYTHON_USE_FREELISTS 0
135
137
  #elif defined(PYPY_VERSION)
136
138
  #define CYTHON_COMPILING_IN_PYPY 1
137
139
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -193,6 +195,8 @@ END: Cython Metadata */
193
195
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
194
196
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
195
197
  #endif
198
+ #undef CYTHON_USE_FREELISTS
199
+ #define CYTHON_USE_FREELISTS 0
196
200
  #elif defined(CYTHON_LIMITED_API)
197
201
  #ifdef Py_LIMITED_API
198
202
  #undef __PYX_LIMITED_VERSION_HEX
@@ -254,6 +258,8 @@ END: Cython Metadata */
254
258
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
255
259
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
256
260
  #endif
261
+ #undef CYTHON_USE_FREELISTS
262
+ #define CYTHON_USE_FREELISTS 0
257
263
  #elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
258
264
  #define CYTHON_COMPILING_IN_PYPY 0
259
265
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -263,11 +269,17 @@ END: Cython Metadata */
263
269
  #ifndef CYTHON_USE_TYPE_SLOTS
264
270
  #define CYTHON_USE_TYPE_SLOTS 1
265
271
  #endif
272
+ #ifndef CYTHON_USE_TYPE_SPECS
273
+ #define CYTHON_USE_TYPE_SPECS 0
274
+ #endif
266
275
  #undef CYTHON_USE_PYTYPE_LOOKUP
267
276
  #define CYTHON_USE_PYTYPE_LOOKUP 0
268
277
  #ifndef CYTHON_USE_ASYNC_SLOTS
269
278
  #define CYTHON_USE_ASYNC_SLOTS 1
270
279
  #endif
280
+ #ifndef CYTHON_USE_PYLONG_INTERNALS
281
+ #define CYTHON_USE_PYLONG_INTERNALS 0
282
+ #endif
271
283
  #undef CYTHON_USE_PYLIST_INTERNALS
272
284
  #define CYTHON_USE_PYLIST_INTERNALS 0
273
285
  #ifndef CYTHON_USE_UNICODE_INTERNALS
@@ -275,8 +287,6 @@ END: Cython Metadata */
275
287
  #endif
276
288
  #undef CYTHON_USE_UNICODE_WRITER
277
289
  #define CYTHON_USE_UNICODE_WRITER 0
278
- #undef CYTHON_USE_PYLONG_INTERNALS
279
- #define CYTHON_USE_PYLONG_INTERNALS 0
280
290
  #ifndef CYTHON_AVOID_BORROWED_REFS
281
291
  #define CYTHON_AVOID_BORROWED_REFS 0
282
292
  #endif
@@ -288,11 +298,22 @@ END: Cython Metadata */
288
298
  #endif
289
299
  #undef CYTHON_FAST_THREAD_STATE
290
300
  #define CYTHON_FAST_THREAD_STATE 0
301
+ #undef CYTHON_FAST_GIL
302
+ #define CYTHON_FAST_GIL 0
303
+ #ifndef CYTHON_METH_FASTCALL
304
+ #define CYTHON_METH_FASTCALL 1
305
+ #endif
291
306
  #undef CYTHON_FAST_PYCALL
292
307
  #define CYTHON_FAST_PYCALL 0
308
+ #ifndef CYTHON_PEP487_INIT_SUBCLASS
309
+ #define CYTHON_PEP487_INIT_SUBCLASS 1
310
+ #endif
293
311
  #ifndef CYTHON_PEP489_MULTI_PHASE_INIT
294
312
  #define CYTHON_PEP489_MULTI_PHASE_INIT 1
295
313
  #endif
314
+ #ifndef CYTHON_USE_MODULE_STATE
315
+ #define CYTHON_USE_MODULE_STATE 0
316
+ #endif
296
317
  #ifndef CYTHON_USE_TP_FINALIZE
297
318
  #define CYTHON_USE_TP_FINALIZE 1
298
319
  #endif
@@ -300,6 +321,12 @@ END: Cython Metadata */
300
321
  #define CYTHON_USE_DICT_VERSIONS 0
301
322
  #undef CYTHON_USE_EXC_INFO_STACK
302
323
  #define CYTHON_USE_EXC_INFO_STACK 0
324
+ #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
325
+ #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
326
+ #endif
327
+ #ifndef CYTHON_USE_FREELISTS
328
+ #define CYTHON_USE_FREELISTS 0
329
+ #endif
303
330
  #else
304
331
  #define CYTHON_COMPILING_IN_PYPY 0
305
332
  #define CYTHON_COMPILING_IN_CPYTHON 1
@@ -390,6 +417,9 @@ END: Cython Metadata */
390
417
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
391
418
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
392
419
  #endif
420
+ #ifndef CYTHON_USE_FREELISTS
421
+ #define CYTHON_USE_FREELISTS 1
422
+ #endif
393
423
  #endif
394
424
  #if !defined(CYTHON_FAST_PYCCALL)
395
425
  #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
@@ -582,14 +612,14 @@ END: Cython Metadata */
582
612
  PyObject *exception_table = NULL;
583
613
  PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
584
614
  #if __PYX_LIMITED_VERSION_HEX < 0x030B0000
585
- PyObject *version_info; // borrowed
615
+ PyObject *version_info;
586
616
  PyObject *py_minor_version = NULL;
587
617
  #endif
588
618
  long minor_version = 0;
589
619
  PyObject *type, *value, *traceback;
590
620
  PyErr_Fetch(&type, &value, &traceback);
591
621
  #if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
592
- minor_version = 11; // we don't yet need to distinguish between versions > 11
622
+ minor_version = 11;
593
623
  #else
594
624
  if (!(version_info = PySys_GetObject("version_info"))) goto end;
595
625
  if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
@@ -647,7 +677,7 @@ END: Cython Metadata */
647
677
  PyObject *fv, PyObject *cell, PyObject* fn,
648
678
  PyObject *name, int fline, PyObject *lnos) {
649
679
  PyCodeObject *result;
650
- PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0); // we don't have access to __pyx_empty_bytes here
680
+ PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
651
681
  if (!empty_bytes) return NULL;
652
682
  result =
653
683
  #if PY_VERSION_HEX >= 0x030C0000
@@ -733,8 +763,13 @@ END: Cython Metadata */
733
763
  typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
734
764
  Py_ssize_t nargs, PyObject *kwnames);
735
765
  #else
736
- #define __Pyx_PyCFunctionFast _PyCFunctionFast
737
- #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
766
+ #if PY_VERSION_HEX >= 0x030d00A4
767
+ # define __Pyx_PyCFunctionFast PyCFunctionFast
768
+ # define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
769
+ #else
770
+ # define __Pyx_PyCFunctionFast _PyCFunctionFast
771
+ # define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
772
+ #endif
738
773
  #endif
739
774
  #if CYTHON_METH_FASTCALL
740
775
  #define __Pyx_METH_FASTCALL METH_FASTCALL
@@ -1086,7 +1121,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
1086
1121
  #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
1087
1122
  #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
1088
1123
  #endif
1089
- #if PY_VERSION_HEX >= 0x030d00A1
1124
+ #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
1090
1125
  #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
1091
1126
  #else
1092
1127
  static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
@@ -1173,7 +1208,7 @@ static CYTHON_INLINE float __PYX_NAN() {
1173
1208
  #endif
1174
1209
 
1175
1210
  #define __PYX_MARK_ERR_POS(f_index, lineno) \
1176
- { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1211
+ { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1177
1212
  #define __PYX_ERR(f_index, lineno, Ln_error) \
1178
1213
  { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
1179
1214
 
@@ -1288,24 +1323,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1288
1323
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1289
1324
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1290
1325
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1291
- #if CYTHON_COMPILING_IN_LIMITED_API
1292
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1293
- {
1294
- const wchar_t *u_end = u;
1295
- while (*u_end++) ;
1296
- return (size_t)(u_end - u - 1);
1297
- }
1298
- #else
1299
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1300
- {
1301
- const Py_UNICODE *u_end = u;
1302
- while (*u_end++) ;
1303
- return (size_t)(u_end - u - 1);
1304
- }
1305
- #endif
1306
1326
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1307
- #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1308
- #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1309
1327
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1310
1328
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1311
1329
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -1355,7 +1373,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1355
1373
  #endif
1356
1374
  typedef Py_ssize_t __Pyx_compact_pylong;
1357
1375
  typedef size_t __Pyx_compact_upylong;
1358
- #else // Py < 3.12
1376
+ #else
1359
1377
  #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
1360
1378
  #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
1361
1379
  #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
@@ -1645,7 +1663,7 @@ typedef struct {
1645
1663
 
1646
1664
  /* #### Code section: numeric_typedefs ### */
1647
1665
 
1648
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":730
1666
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":730
1649
1667
  * # in Cython to enable them only on the right systems.
1650
1668
  *
1651
1669
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1654,7 +1672,7 @@ typedef struct {
1654
1672
  */
1655
1673
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1656
1674
 
1657
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1675
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1658
1676
  *
1659
1677
  * ctypedef npy_int8 int8_t
1660
1678
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1663,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1663
1681
  */
1664
1682
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1665
1683
 
1666
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1684
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1667
1685
  * ctypedef npy_int8 int8_t
1668
1686
  * ctypedef npy_int16 int16_t
1669
1687
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1672,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1672
1690
  */
1673
1691
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1674
1692
 
1675
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1693
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1676
1694
  * ctypedef npy_int16 int16_t
1677
1695
  * ctypedef npy_int32 int32_t
1678
1696
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1681,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1681
1699
  */
1682
1700
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1683
1701
 
1684
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":737
1702
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":737
1685
1703
  * #ctypedef npy_int128 int128_t
1686
1704
  *
1687
1705
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1690,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1690
1708
  */
1691
1709
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1692
1710
 
1693
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1711
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1694
1712
  *
1695
1713
  * ctypedef npy_uint8 uint8_t
1696
1714
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1699,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1699
1717
  */
1700
1718
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1701
1719
 
1702
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1720
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1703
1721
  * ctypedef npy_uint8 uint8_t
1704
1722
  * ctypedef npy_uint16 uint16_t
1705
1723
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1708,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1708
1726
  */
1709
1727
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1710
1728
 
1711
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1729
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1712
1730
  * ctypedef npy_uint16 uint16_t
1713
1731
  * ctypedef npy_uint32 uint32_t
1714
1732
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1717,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1717
1735
  */
1718
1736
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1719
1737
 
1720
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":744
1738
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":744
1721
1739
  * #ctypedef npy_uint128 uint128_t
1722
1740
  *
1723
1741
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1726,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1726
1744
  */
1727
1745
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1728
1746
 
1729
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1747
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1730
1748
  *
1731
1749
  * ctypedef npy_float32 float32_t
1732
1750
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1735,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1735
1753
  */
1736
1754
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1737
1755
 
1738
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":754
1756
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":754
1739
1757
  * # The int types are mapped a bit surprising --
1740
1758
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1741
1759
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1744,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1744
1762
  */
1745
1763
  typedef npy_long __pyx_t_5numpy_int_t;
1746
1764
 
1747
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1765
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1748
1766
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1749
1767
  * ctypedef npy_long int_t
1750
1768
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1753
1771
  */
1754
1772
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1755
1773
 
1756
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1774
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1757
1775
  * ctypedef npy_longlong longlong_t
1758
1776
  *
1759
1777
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1762
1780
  */
1763
1781
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1764
1782
 
1765
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1783
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1766
1784
  *
1767
1785
  * ctypedef npy_ulong uint_t
1768
1786
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1771,7 +1789,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1771
1789
  */
1772
1790
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1773
1791
 
1774
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1792
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1775
1793
  * ctypedef npy_ulonglong ulonglong_t
1776
1794
  *
1777
1795
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1780,7 +1798,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1780
1798
  */
1781
1799
  typedef npy_intp __pyx_t_5numpy_intp_t;
1782
1800
 
1783
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1801
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1784
1802
  *
1785
1803
  * ctypedef npy_intp intp_t
1786
1804
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1789,7 +1807,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1789
1807
  */
1790
1808
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1791
1809
 
1792
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1810
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1793
1811
  * ctypedef npy_uintp uintp_t
1794
1812
  *
1795
1813
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1798,7 +1816,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1798
1816
  */
1799
1817
  typedef npy_double __pyx_t_5numpy_float_t;
1800
1818
 
1801
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1819
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1802
1820
  *
1803
1821
  * ctypedef npy_double float_t
1804
1822
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1807,7 +1825,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1807
1825
  */
1808
1826
  typedef npy_double __pyx_t_5numpy_double_t;
1809
1827
 
1810
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1828
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1811
1829
  * ctypedef npy_double float_t
1812
1830
  * ctypedef npy_double double_t
1813
1831
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1902,7 +1920,7 @@ struct __pyx_MemviewEnum_obj;
1902
1920
  struct __pyx_memoryview_obj;
1903
1921
  struct __pyx_memoryviewslice_obj;
1904
1922
 
1905
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1923
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1906
1924
  * ctypedef npy_longdouble longdouble_t
1907
1925
  *
1908
1926
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1911,7 +1929,7 @@ struct __pyx_memoryviewslice_obj;
1911
1929
  */
1912
1930
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1913
1931
 
1914
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1932
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1915
1933
  *
1916
1934
  * ctypedef npy_cfloat cfloat_t
1917
1935
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1920,7 +1938,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1920
1938
  */
1921
1939
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1922
1940
 
1923
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1941
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1924
1942
  * ctypedef npy_cfloat cfloat_t
1925
1943
  * ctypedef npy_cdouble cdouble_t
1926
1944
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1929,7 +1947,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1929
1947
  */
1930
1948
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1931
1949
 
1932
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1950
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1933
1951
  * ctypedef npy_clongdouble clongdouble_t
1934
1952
  *
1935
1953
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2289,8 +2307,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2289
2307
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2290
2308
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2291
2309
  #else
2292
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2293
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2310
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2311
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2294
2312
  #endif
2295
2313
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2296
2314
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2306,8 +2324,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2306
2324
  #else
2307
2325
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2308
2326
  #endif
2309
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2310
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2327
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2328
+ to have the same reference counting */
2329
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2311
2330
  #else
2312
2331
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2313
2332
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2943,22 +2962,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2943
2962
  #endif
2944
2963
 
2945
2964
  /* TypeImport.proto */
2946
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2947
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2965
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2966
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2948
2967
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2949
2968
  #include <stdalign.h>
2950
2969
  #endif
2951
2970
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2952
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2971
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2953
2972
  #else
2954
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2973
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2955
2974
  #endif
2956
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2957
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2958
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2959
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2975
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2976
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2977
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2978
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2960
2979
  };
2961
- 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);
2980
+ 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);
2962
2981
  #endif
2963
2982
 
2964
2983
  /* FetchSharedCythonModule.proto */
@@ -3051,7 +3070,7 @@ typedef struct {
3051
3070
  #endif
3052
3071
  void *defaults;
3053
3072
  int defaults_pyobjects;
3054
- size_t defaults_size; // used by FusedFunction for copying defaults
3073
+ size_t defaults_size;
3055
3074
  int flags;
3056
3075
  PyObject *defaults_tuple;
3057
3076
  PyObject *defaults_kwdict;
@@ -3397,7 +3416,7 @@ static unsigned long __Pyx_get_runtime_version(void);
3397
3416
  static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt_version, int allow_newer);
3398
3417
 
3399
3418
  /* FunctionImport.proto */
3400
- static int __Pyx_ImportFunction_3_0_7(PyObject *module, const char *funcname, void (**f)(void), const char *sig);
3419
+ static int __Pyx_ImportFunction_3_0_10(PyObject *module, const char *funcname, void (**f)(void), const char *sig);
3401
3420
 
3402
3421
  /* InitStrings.proto */
3403
3422
  static int __Pyx_InitStrings(__Pyx_StringTabEntry *t);
@@ -19058,7 +19077,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
19058
19077
  return __pyx_r;
19059
19078
  }
19060
19079
 
19061
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19080
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19062
19081
  *
19063
19082
  * @property
19064
19083
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -19069,7 +19088,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
19069
19088
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
19070
19089
  PyObject *__pyx_r;
19071
19090
 
19072
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
19091
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
19073
19092
  * """Returns a borrowed reference to the object owning the data/memory.
19074
19093
  * """
19075
19094
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -19079,7 +19098,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
19079
19098
  __pyx_r = PyArray_BASE(__pyx_v_self);
19080
19099
  goto __pyx_L0;
19081
19100
 
19082
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19101
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19083
19102
  *
19084
19103
  * @property
19085
19104
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -19092,7 +19111,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
19092
19111
  return __pyx_r;
19093
19112
  }
19094
19113
 
19095
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19114
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19096
19115
  *
19097
19116
  * @property
19098
19117
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -19106,7 +19125,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19106
19125
  PyArray_Descr *__pyx_t_1;
19107
19126
  __Pyx_RefNannySetupContext("descr", 1);
19108
19127
 
19109
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
19128
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
19110
19129
  * """Returns an owned reference to the dtype of the array.
19111
19130
  * """
19112
19131
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -19119,7 +19138,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19119
19138
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
19120
19139
  goto __pyx_L0;
19121
19140
 
19122
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19141
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19123
19142
  *
19124
19143
  * @property
19125
19144
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -19134,7 +19153,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19134
19153
  return __pyx_r;
19135
19154
  }
19136
19155
 
19137
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19156
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19138
19157
  *
19139
19158
  * @property
19140
19159
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -19145,7 +19164,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19145
19164
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
19146
19165
  int __pyx_r;
19147
19166
 
19148
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
19167
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
19149
19168
  * """Returns the number of dimensions in the array.
19150
19169
  * """
19151
19170
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -19155,7 +19174,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19155
19174
  __pyx_r = PyArray_NDIM(__pyx_v_self);
19156
19175
  goto __pyx_L0;
19157
19176
 
19158
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19177
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19159
19178
  *
19160
19179
  * @property
19161
19180
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -19168,7 +19187,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19168
19187
  return __pyx_r;
19169
19188
  }
19170
19189
 
19171
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19190
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19172
19191
  *
19173
19192
  * @property
19174
19193
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -19179,7 +19198,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19179
19198
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
19180
19199
  npy_intp *__pyx_r;
19181
19200
 
19182
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
19201
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
19183
19202
  * Can return NULL for 0-dimensional arrays.
19184
19203
  * """
19185
19204
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -19189,7 +19208,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19189
19208
  __pyx_r = PyArray_DIMS(__pyx_v_self);
19190
19209
  goto __pyx_L0;
19191
19210
 
19192
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19211
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19193
19212
  *
19194
19213
  * @property
19195
19214
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -19202,7 +19221,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19202
19221
  return __pyx_r;
19203
19222
  }
19204
19223
 
19205
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19224
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19206
19225
  *
19207
19226
  * @property
19208
19227
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -19213,7 +19232,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19213
19232
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
19214
19233
  npy_intp *__pyx_r;
19215
19234
 
19216
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
19235
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
19217
19236
  * The number of elements matches the number of dimensions of the array (ndim).
19218
19237
  * """
19219
19238
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -19223,7 +19242,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19223
19242
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
19224
19243
  goto __pyx_L0;
19225
19244
 
19226
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19245
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19227
19246
  *
19228
19247
  * @property
19229
19248
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -19236,7 +19255,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19236
19255
  return __pyx_r;
19237
19256
  }
19238
19257
 
19239
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19258
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19240
19259
  *
19241
19260
  * @property
19242
19261
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -19247,7 +19266,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19247
19266
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
19248
19267
  npy_intp __pyx_r;
19249
19268
 
19250
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
19269
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
19251
19270
  * """Returns the total size (in number of elements) of the array.
19252
19271
  * """
19253
19272
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -19257,7 +19276,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19257
19276
  __pyx_r = PyArray_SIZE(__pyx_v_self);
19258
19277
  goto __pyx_L0;
19259
19278
 
19260
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19279
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19261
19280
  *
19262
19281
  * @property
19263
19282
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -19270,7 +19289,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19270
19289
  return __pyx_r;
19271
19290
  }
19272
19291
 
19273
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19292
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19274
19293
  *
19275
19294
  * @property
19276
19295
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -19281,7 +19300,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19281
19300
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
19282
19301
  char *__pyx_r;
19283
19302
 
19284
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
19303
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
19285
19304
  * of `PyArray_DATA()` instead, which returns a 'void*'.
19286
19305
  * """
19287
19306
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -19291,7 +19310,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
19291
19310
  __pyx_r = PyArray_BYTES(__pyx_v_self);
19292
19311
  goto __pyx_L0;
19293
19312
 
19294
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19313
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19295
19314
  *
19296
19315
  * @property
19297
19316
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -19304,7 +19323,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
19304
19323
  return __pyx_r;
19305
19324
  }
19306
19325
 
19307
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19326
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19308
19327
  * ctypedef npy_cdouble complex_t
19309
19328
  *
19310
19329
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19321,7 +19340,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19321
19340
  int __pyx_clineno = 0;
19322
19341
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
19323
19342
 
19324
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
19343
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
19325
19344
  *
19326
19345
  * cdef inline object PyArray_MultiIterNew1(a):
19327
19346
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -19335,7 +19354,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19335
19354
  __pyx_t_1 = 0;
19336
19355
  goto __pyx_L0;
19337
19356
 
19338
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19357
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
19339
19358
  * ctypedef npy_cdouble complex_t
19340
19359
  *
19341
19360
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19354,7 +19373,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19354
19373
  return __pyx_r;
19355
19374
  }
19356
19375
 
19357
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19376
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19358
19377
  * return PyArray_MultiIterNew(1, <void*>a)
19359
19378
  *
19360
19379
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19371,7 +19390,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19371
19390
  int __pyx_clineno = 0;
19372
19391
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
19373
19392
 
19374
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
19393
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
19375
19394
  *
19376
19395
  * cdef inline object PyArray_MultiIterNew2(a, b):
19377
19396
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -19385,7 +19404,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19385
19404
  __pyx_t_1 = 0;
19386
19405
  goto __pyx_L0;
19387
19406
 
19388
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19407
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19389
19408
  * return PyArray_MultiIterNew(1, <void*>a)
19390
19409
  *
19391
19410
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19404,7 +19423,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19404
19423
  return __pyx_r;
19405
19424
  }
19406
19425
 
19407
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19426
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19408
19427
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19409
19428
  *
19410
19429
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19421,7 +19440,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19421
19440
  int __pyx_clineno = 0;
19422
19441
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
19423
19442
 
19424
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
19443
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
19425
19444
  *
19426
19445
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
19427
19446
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -19435,7 +19454,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19435
19454
  __pyx_t_1 = 0;
19436
19455
  goto __pyx_L0;
19437
19456
 
19438
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19457
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19439
19458
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19440
19459
  *
19441
19460
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19454,7 +19473,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19454
19473
  return __pyx_r;
19455
19474
  }
19456
19475
 
19457
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19476
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19458
19477
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19459
19478
  *
19460
19479
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19471,7 +19490,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19471
19490
  int __pyx_clineno = 0;
19472
19491
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
19473
19492
 
19474
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
19493
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
19475
19494
  *
19476
19495
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
19477
19496
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -19485,7 +19504,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19485
19504
  __pyx_t_1 = 0;
19486
19505
  goto __pyx_L0;
19487
19506
 
19488
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19507
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19489
19508
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19490
19509
  *
19491
19510
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19504,7 +19523,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19504
19523
  return __pyx_r;
19505
19524
  }
19506
19525
 
19507
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19526
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19508
19527
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19509
19528
  *
19510
19529
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19521,7 +19540,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19521
19540
  int __pyx_clineno = 0;
19522
19541
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
19523
19542
 
19524
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
19543
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
19525
19544
  *
19526
19545
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
19527
19546
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -19535,7 +19554,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19535
19554
  __pyx_t_1 = 0;
19536
19555
  goto __pyx_L0;
19537
19556
 
19538
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19557
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19539
19558
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19540
19559
  *
19541
19560
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19554,7 +19573,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19554
19573
  return __pyx_r;
19555
19574
  }
19556
19575
 
19557
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19576
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19558
19577
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19559
19578
  *
19560
19579
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19568,7 +19587,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19568
19587
  int __pyx_t_1;
19569
19588
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
19570
19589
 
19571
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19590
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19572
19591
  *
19573
19592
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19574
19593
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19578,7 +19597,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19578
19597
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
19579
19598
  if (__pyx_t_1) {
19580
19599
 
19581
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
19600
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
19582
19601
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19583
19602
  * if PyDataType_HASSUBARRAY(d):
19584
19603
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -19590,7 +19609,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19590
19609
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
19591
19610
  goto __pyx_L0;
19592
19611
 
19593
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19612
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19594
19613
  *
19595
19614
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19596
19615
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19599,7 +19618,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19599
19618
  */
19600
19619
  }
19601
19620
 
19602
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19621
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19603
19622
  * return <tuple>d.subarray.shape
19604
19623
  * else:
19605
19624
  * return () # <<<<<<<<<<<<<<
@@ -19613,7 +19632,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19613
19632
  goto __pyx_L0;
19614
19633
  }
19615
19634
 
19616
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19635
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19617
19636
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19618
19637
  *
19619
19638
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19628,7 +19647,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19628
19647
  return __pyx_r;
19629
19648
  }
19630
19649
 
19631
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19650
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19632
19651
  * int _import_umath() except -1
19633
19652
  *
19634
19653
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19642,7 +19661,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19642
19661
  const char *__pyx_filename = NULL;
19643
19662
  int __pyx_clineno = 0;
19644
19663
 
19645
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
19664
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
19646
19665
  *
19647
19666
  * cdef inline void set_array_base(ndarray arr, object base):
19648
19667
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -19651,7 +19670,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19651
19670
  */
19652
19671
  Py_INCREF(__pyx_v_base);
19653
19672
 
19654
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19673
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19655
19674
  * cdef inline void set_array_base(ndarray arr, object base):
19656
19675
  * Py_INCREF(base) # important to do this before stealing the reference below!
19657
19676
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -19660,7 +19679,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19660
19679
  */
19661
19680
  __pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(2, 970, __pyx_L1_error)
19662
19681
 
19663
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19682
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
19664
19683
  * int _import_umath() except -1
19665
19684
  *
19666
19685
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19675,7 +19694,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19675
19694
  __pyx_L0:;
19676
19695
  }
19677
19696
 
19678
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19697
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19679
19698
  * PyArray_SetBaseObject(arr, base)
19680
19699
  *
19681
19700
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19690,7 +19709,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19690
19709
  int __pyx_t_1;
19691
19710
  __Pyx_RefNannySetupContext("get_array_base", 1);
19692
19711
 
19693
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
19712
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
19694
19713
  *
19695
19714
  * cdef inline object get_array_base(ndarray arr):
19696
19715
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -19699,7 +19718,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19699
19718
  */
19700
19719
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
19701
19720
 
19702
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19721
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19703
19722
  * cdef inline object get_array_base(ndarray arr):
19704
19723
  * base = PyArray_BASE(arr)
19705
19724
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19709,7 +19728,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19709
19728
  __pyx_t_1 = (__pyx_v_base == NULL);
19710
19729
  if (__pyx_t_1) {
19711
19730
 
19712
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19731
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19713
19732
  * base = PyArray_BASE(arr)
19714
19733
  * if base is NULL:
19715
19734
  * return None # <<<<<<<<<<<<<<
@@ -19720,7 +19739,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19720
19739
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
19721
19740
  goto __pyx_L0;
19722
19741
 
19723
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19742
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19724
19743
  * cdef inline object get_array_base(ndarray arr):
19725
19744
  * base = PyArray_BASE(arr)
19726
19745
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19729,7 +19748,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19729
19748
  */
19730
19749
  }
19731
19750
 
19732
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19751
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19733
19752
  * if base is NULL:
19734
19753
  * return None
19735
19754
  * return <object>base # <<<<<<<<<<<<<<
@@ -19741,7 +19760,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19741
19760
  __pyx_r = ((PyObject *)__pyx_v_base);
19742
19761
  goto __pyx_L0;
19743
19762
 
19744
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19763
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19745
19764
  * PyArray_SetBaseObject(arr, base)
19746
19765
  *
19747
19766
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19756,7 +19775,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19756
19775
  return __pyx_r;
19757
19776
  }
19758
19777
 
19759
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19778
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19760
19779
  * # Versions of the import_* functions which are more suitable for
19761
19780
  * # Cython code.
19762
19781
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19780,7 +19799,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19780
19799
  int __pyx_clineno = 0;
19781
19800
  __Pyx_RefNannySetupContext("import_array", 1);
19782
19801
 
19783
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19802
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19784
19803
  * # Cython code.
19785
19804
  * cdef inline int import_array() except -1:
19786
19805
  * try: # <<<<<<<<<<<<<<
@@ -19796,7 +19815,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19796
19815
  __Pyx_XGOTREF(__pyx_t_3);
19797
19816
  /*try:*/ {
19798
19817
 
19799
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19818
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19800
19819
  * cdef inline int import_array() except -1:
19801
19820
  * try:
19802
19821
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -19805,7 +19824,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19805
19824
  */
19806
19825
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
19807
19826
 
19808
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19827
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19809
19828
  * # Cython code.
19810
19829
  * cdef inline int import_array() except -1:
19811
19830
  * try: # <<<<<<<<<<<<<<
@@ -19819,7 +19838,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19819
19838
  goto __pyx_L8_try_end;
19820
19839
  __pyx_L3_error:;
19821
19840
 
19822
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19841
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19823
19842
  * try:
19824
19843
  * __pyx_import_array()
19825
19844
  * except Exception: # <<<<<<<<<<<<<<
@@ -19834,7 +19853,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19834
19853
  __Pyx_XGOTREF(__pyx_t_6);
19835
19854
  __Pyx_XGOTREF(__pyx_t_7);
19836
19855
 
19837
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19856
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19838
19857
  * __pyx_import_array()
19839
19858
  * except Exception:
19840
19859
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -19849,7 +19868,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19849
19868
  }
19850
19869
  goto __pyx_L5_except_error;
19851
19870
 
19852
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19871
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19853
19872
  * # Cython code.
19854
19873
  * cdef inline int import_array() except -1:
19855
19874
  * try: # <<<<<<<<<<<<<<
@@ -19865,7 +19884,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19865
19884
  __pyx_L8_try_end:;
19866
19885
  }
19867
19886
 
19868
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19887
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19869
19888
  * # Versions of the import_* functions which are more suitable for
19870
19889
  * # Cython code.
19871
19890
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19888,7 +19907,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19888
19907
  return __pyx_r;
19889
19908
  }
19890
19909
 
19891
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19910
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19892
19911
  * raise ImportError("numpy.core.multiarray failed to import")
19893
19912
  *
19894
19913
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19912,7 +19931,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19912
19931
  int __pyx_clineno = 0;
19913
19932
  __Pyx_RefNannySetupContext("import_umath", 1);
19914
19933
 
19915
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19934
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19916
19935
  *
19917
19936
  * cdef inline int import_umath() except -1:
19918
19937
  * try: # <<<<<<<<<<<<<<
@@ -19928,7 +19947,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19928
19947
  __Pyx_XGOTREF(__pyx_t_3);
19929
19948
  /*try:*/ {
19930
19949
 
19931
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19950
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19932
19951
  * cdef inline int import_umath() except -1:
19933
19952
  * try:
19934
19953
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19937,7 +19956,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19937
19956
  */
19938
19957
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
19939
19958
 
19940
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19959
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19941
19960
  *
19942
19961
  * cdef inline int import_umath() except -1:
19943
19962
  * try: # <<<<<<<<<<<<<<
@@ -19951,7 +19970,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19951
19970
  goto __pyx_L8_try_end;
19952
19971
  __pyx_L3_error:;
19953
19972
 
19954
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19973
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19955
19974
  * try:
19956
19975
  * _import_umath()
19957
19976
  * except Exception: # <<<<<<<<<<<<<<
@@ -19966,7 +19985,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19966
19985
  __Pyx_XGOTREF(__pyx_t_6);
19967
19986
  __Pyx_XGOTREF(__pyx_t_7);
19968
19987
 
19969
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19988
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19970
19989
  * _import_umath()
19971
19990
  * except Exception:
19972
19991
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19981,7 +20000,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19981
20000
  }
19982
20001
  goto __pyx_L5_except_error;
19983
20002
 
19984
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
20003
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19985
20004
  *
19986
20005
  * cdef inline int import_umath() except -1:
19987
20006
  * try: # <<<<<<<<<<<<<<
@@ -19997,7 +20016,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19997
20016
  __pyx_L8_try_end:;
19998
20017
  }
19999
20018
 
20000
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
20019
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
20001
20020
  * raise ImportError("numpy.core.multiarray failed to import")
20002
20021
  *
20003
20022
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -20020,7 +20039,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20020
20039
  return __pyx_r;
20021
20040
  }
20022
20041
 
20023
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
20042
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
20024
20043
  * raise ImportError("numpy.core.umath failed to import")
20025
20044
  *
20026
20045
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -20044,7 +20063,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20044
20063
  int __pyx_clineno = 0;
20045
20064
  __Pyx_RefNannySetupContext("import_ufunc", 1);
20046
20065
 
20047
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20066
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20048
20067
  *
20049
20068
  * cdef inline int import_ufunc() except -1:
20050
20069
  * try: # <<<<<<<<<<<<<<
@@ -20060,7 +20079,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20060
20079
  __Pyx_XGOTREF(__pyx_t_3);
20061
20080
  /*try:*/ {
20062
20081
 
20063
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
20082
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
20064
20083
  * cdef inline int import_ufunc() except -1:
20065
20084
  * try:
20066
20085
  * _import_umath() # <<<<<<<<<<<<<<
@@ -20069,7 +20088,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20069
20088
  */
20070
20089
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
20071
20090
 
20072
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20091
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20073
20092
  *
20074
20093
  * cdef inline int import_ufunc() except -1:
20075
20094
  * try: # <<<<<<<<<<<<<<
@@ -20083,7 +20102,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20083
20102
  goto __pyx_L8_try_end;
20084
20103
  __pyx_L3_error:;
20085
20104
 
20086
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
20105
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
20087
20106
  * try:
20088
20107
  * _import_umath()
20089
20108
  * except Exception: # <<<<<<<<<<<<<<
@@ -20098,7 +20117,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20098
20117
  __Pyx_XGOTREF(__pyx_t_6);
20099
20118
  __Pyx_XGOTREF(__pyx_t_7);
20100
20119
 
20101
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
20120
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
20102
20121
  * _import_umath()
20103
20122
  * except Exception:
20104
20123
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -20113,7 +20132,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20113
20132
  }
20114
20133
  goto __pyx_L5_except_error;
20115
20134
 
20116
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20135
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
20117
20136
  *
20118
20137
  * cdef inline int import_ufunc() except -1:
20119
20138
  * try: # <<<<<<<<<<<<<<
@@ -20129,7 +20148,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20129
20148
  __pyx_L8_try_end:;
20130
20149
  }
20131
20150
 
20132
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
20151
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
20133
20152
  * raise ImportError("numpy.core.umath failed to import")
20134
20153
  *
20135
20154
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -20152,7 +20171,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20152
20171
  return __pyx_r;
20153
20172
  }
20154
20173
 
20155
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
20174
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
20156
20175
  *
20157
20176
  *
20158
20177
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -20163,7 +20182,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20163
20182
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
20164
20183
  int __pyx_r;
20165
20184
 
20166
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
20185
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
20167
20186
  * bool
20168
20187
  * """
20169
20188
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -20173,7 +20192,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20173
20192
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
20174
20193
  goto __pyx_L0;
20175
20194
 
20176
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
20195
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
20177
20196
  *
20178
20197
  *
20179
20198
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -20186,7 +20205,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20186
20205
  return __pyx_r;
20187
20206
  }
20188
20207
 
20189
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
20208
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
20190
20209
  *
20191
20210
  *
20192
20211
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -20197,7 +20216,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20197
20216
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
20198
20217
  int __pyx_r;
20199
20218
 
20200
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
20219
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
20201
20220
  * bool
20202
20221
  * """
20203
20222
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -20207,7 +20226,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20207
20226
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
20208
20227
  goto __pyx_L0;
20209
20228
 
20210
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
20229
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
20211
20230
  *
20212
20231
  *
20213
20232
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -20220,7 +20239,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20220
20239
  return __pyx_r;
20221
20240
  }
20222
20241
 
20223
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
20242
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
20224
20243
  *
20225
20244
  *
20226
20245
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20231,7 +20250,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20231
20250
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
20232
20251
  npy_datetime __pyx_r;
20233
20252
 
20234
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
20253
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
20235
20254
  * also needed. That can be found using `get_datetime64_unit`.
20236
20255
  * """
20237
20256
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -20241,7 +20260,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20241
20260
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
20242
20261
  goto __pyx_L0;
20243
20262
 
20244
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
20263
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
20245
20264
  *
20246
20265
  *
20247
20266
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20254,7 +20273,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20254
20273
  return __pyx_r;
20255
20274
  }
20256
20275
 
20257
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
20276
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
20258
20277
  *
20259
20278
  *
20260
20279
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20265,7 +20284,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20265
20284
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
20266
20285
  npy_timedelta __pyx_r;
20267
20286
 
20268
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
20287
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
20269
20288
  * returns the int64 value underlying scalar numpy timedelta64 object
20270
20289
  * """
20271
20290
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -20275,7 +20294,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20275
20294
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
20276
20295
  goto __pyx_L0;
20277
20296
 
20278
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
20297
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
20279
20298
  *
20280
20299
  *
20281
20300
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20288,7 +20307,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20288
20307
  return __pyx_r;
20289
20308
  }
20290
20309
 
20291
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20310
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20292
20311
  *
20293
20312
  *
20294
20313
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20299,7 +20318,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20299
20318
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
20300
20319
  NPY_DATETIMEUNIT __pyx_r;
20301
20320
 
20302
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
20321
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
20303
20322
  * returns the unit part of the dtype for a numpy datetime64 object.
20304
20323
  * """
20305
20324
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -20307,7 +20326,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
20307
20326
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
20308
20327
  goto __pyx_L0;
20309
20328
 
20310
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20329
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
20311
20330
  *
20312
20331
  *
20313
20332
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -24686,10 +24705,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_2_fill_align_table(C
24686
24705
  Py_ssize_t __pyx_v_itemsize;
24687
24706
  int __pyx_v_dtype_signed;
24688
24707
  Py_UCS4 __pyx_v_kind;
24689
- int __pyx_v____pyx_uint8_is_signed;
24690
- int __pyx_v____pyx_uint16_is_signed;
24691
- int __pyx_v____pyx_uint32_is_signed;
24692
- int __pyx_v____pyx_uint64_is_signed;
24708
+ int __pyx_v___pyx_fused_dtype_uint8_is_signed;
24709
+ int __pyx_v___pyx_fused_dtype_uint16_is_signed;
24710
+ int __pyx_v___pyx_fused_dtype_uint32_is_signed;
24711
+ int __pyx_v___pyx_fused_dtype_uint64_is_signed;
24693
24712
  PyObject *__pyx_v_arg = NULL;
24694
24713
  PyObject *__pyx_v_dtype = NULL;
24695
24714
  PyObject *__pyx_v_arg_base = NULL;
@@ -24761,10 +24780,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_2_fill_align_table(C
24761
24780
  __pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
24762
24781
  __pyx_t_1 = 0;
24763
24782
  __pyx_v_itemsize = -1L;
24764
- __pyx_v____pyx_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_6banded_uint8)-1L) > 0));
24765
- __pyx_v____pyx_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_6banded_uint16)-1L) > 0));
24766
- __pyx_v____pyx_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_6banded_uint32)-1L) > 0));
24767
- __pyx_v____pyx_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_6banded_uint64)-1L) > 0));
24783
+ __pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_6banded_uint8)-1L) > 0));
24784
+ __pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_6banded_uint16)-1L) > 0));
24785
+ __pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_6banded_uint32)-1L) > 0));
24786
+ __pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_6banded_uint64)-1L) > 0));
24768
24787
  if (unlikely(__pyx_v_args == Py_None)) {
24769
24788
  PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
24770
24789
  __PYX_ERR(0, 428, __pyx_L1_error)
@@ -24906,7 +24925,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_2_fill_align_table(C
24906
24925
  __pyx_t_2 = __pyx_t_4;
24907
24926
  goto __pyx_L16_bool_binop_done;
24908
24927
  }
24909
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
24928
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
24910
24929
  __pyx_t_2 = __pyx_t_4;
24911
24930
  __pyx_L16_bool_binop_done:;
24912
24931
  if (__pyx_t_2) {
@@ -24929,7 +24948,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_2_fill_align_table(C
24929
24948
  __pyx_t_2 = __pyx_t_4;
24930
24949
  goto __pyx_L20_bool_binop_done;
24931
24950
  }
24932
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
24951
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
24933
24952
  __pyx_t_2 = __pyx_t_4;
24934
24953
  __pyx_L20_bool_binop_done:;
24935
24954
  if (__pyx_t_2) {
@@ -24952,7 +24971,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_2_fill_align_table(C
24952
24971
  __pyx_t_2 = __pyx_t_4;
24953
24972
  goto __pyx_L24_bool_binop_done;
24954
24973
  }
24955
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
24974
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
24956
24975
  __pyx_t_2 = __pyx_t_4;
24957
24976
  __pyx_L24_bool_binop_done:;
24958
24977
  if (__pyx_t_2) {
@@ -24975,7 +24994,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_2_fill_align_table(C
24975
24994
  __pyx_t_2 = __pyx_t_4;
24976
24995
  goto __pyx_L28_bool_binop_done;
24977
24996
  }
24978
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
24997
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
24979
24998
  __pyx_t_2 = __pyx_t_4;
24980
24999
  __pyx_L28_bool_binop_done:;
24981
25000
  if (__pyx_t_2) {
@@ -25336,7 +25355,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_2_fill_align_table(C
25336
25355
  __pyx_t_2 = __pyx_t_4;
25337
25356
  goto __pyx_L75_bool_binop_done;
25338
25357
  }
25339
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
25358
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
25340
25359
  __pyx_t_2 = __pyx_t_4;
25341
25360
  __pyx_L75_bool_binop_done:;
25342
25361
  if (__pyx_t_2) {
@@ -25359,7 +25378,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_2_fill_align_table(C
25359
25378
  __pyx_t_2 = __pyx_t_4;
25360
25379
  goto __pyx_L79_bool_binop_done;
25361
25380
  }
25362
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
25381
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
25363
25382
  __pyx_t_2 = __pyx_t_4;
25364
25383
  __pyx_L79_bool_binop_done:;
25365
25384
  if (__pyx_t_2) {
@@ -25382,7 +25401,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_2_fill_align_table(C
25382
25401
  __pyx_t_2 = __pyx_t_4;
25383
25402
  goto __pyx_L83_bool_binop_done;
25384
25403
  }
25385
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
25404
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
25386
25405
  __pyx_t_2 = __pyx_t_4;
25387
25406
  __pyx_L83_bool_binop_done:;
25388
25407
  if (__pyx_t_2) {
@@ -25405,7 +25424,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_2_fill_align_table(C
25405
25424
  __pyx_t_2 = __pyx_t_4;
25406
25425
  goto __pyx_L87_bool_binop_done;
25407
25426
  }
25408
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
25427
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
25409
25428
  __pyx_t_2 = __pyx_t_4;
25410
25429
  __pyx_L87_bool_binop_done:;
25411
25430
  if (__pyx_t_2) {
@@ -33846,10 +33865,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_4_fill_align_table_a
33846
33865
  Py_ssize_t __pyx_v_itemsize;
33847
33866
  int __pyx_v_dtype_signed;
33848
33867
  Py_UCS4 __pyx_v_kind;
33849
- int __pyx_v____pyx_uint8_is_signed;
33850
- int __pyx_v____pyx_uint16_is_signed;
33851
- int __pyx_v____pyx_uint32_is_signed;
33852
- int __pyx_v____pyx_uint64_is_signed;
33868
+ int __pyx_v___pyx_fused_dtype_uint8_is_signed;
33869
+ int __pyx_v___pyx_fused_dtype_uint16_is_signed;
33870
+ int __pyx_v___pyx_fused_dtype_uint32_is_signed;
33871
+ int __pyx_v___pyx_fused_dtype_uint64_is_signed;
33853
33872
  PyObject *__pyx_v_arg = NULL;
33854
33873
  PyObject *__pyx_v_dtype = NULL;
33855
33874
  PyObject *__pyx_v_arg_base = NULL;
@@ -33921,10 +33940,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_4_fill_align_table_a
33921
33940
  __pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
33922
33941
  __pyx_t_1 = 0;
33923
33942
  __pyx_v_itemsize = -1L;
33924
- __pyx_v____pyx_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_6banded_uint8)-1L) > 0));
33925
- __pyx_v____pyx_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_6banded_uint16)-1L) > 0));
33926
- __pyx_v____pyx_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_6banded_uint32)-1L) > 0));
33927
- __pyx_v____pyx_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_6banded_uint64)-1L) > 0));
33943
+ __pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_6banded_uint8)-1L) > 0));
33944
+ __pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_6banded_uint16)-1L) > 0));
33945
+ __pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_6banded_uint32)-1L) > 0));
33946
+ __pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_6banded_uint64)-1L) > 0));
33928
33947
  if (unlikely(__pyx_v_args == Py_None)) {
33929
33948
  PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
33930
33949
  __PYX_ERR(0, 502, __pyx_L1_error)
@@ -34066,7 +34085,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_4_fill_align_table_a
34066
34085
  __pyx_t_2 = __pyx_t_4;
34067
34086
  goto __pyx_L16_bool_binop_done;
34068
34087
  }
34069
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
34088
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
34070
34089
  __pyx_t_2 = __pyx_t_4;
34071
34090
  __pyx_L16_bool_binop_done:;
34072
34091
  if (__pyx_t_2) {
@@ -34089,7 +34108,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_4_fill_align_table_a
34089
34108
  __pyx_t_2 = __pyx_t_4;
34090
34109
  goto __pyx_L20_bool_binop_done;
34091
34110
  }
34092
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
34111
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
34093
34112
  __pyx_t_2 = __pyx_t_4;
34094
34113
  __pyx_L20_bool_binop_done:;
34095
34114
  if (__pyx_t_2) {
@@ -34112,7 +34131,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_4_fill_align_table_a
34112
34131
  __pyx_t_2 = __pyx_t_4;
34113
34132
  goto __pyx_L24_bool_binop_done;
34114
34133
  }
34115
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
34134
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
34116
34135
  __pyx_t_2 = __pyx_t_4;
34117
34136
  __pyx_L24_bool_binop_done:;
34118
34137
  if (__pyx_t_2) {
@@ -34135,7 +34154,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_4_fill_align_table_a
34135
34154
  __pyx_t_2 = __pyx_t_4;
34136
34155
  goto __pyx_L28_bool_binop_done;
34137
34156
  }
34138
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
34157
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
34139
34158
  __pyx_t_2 = __pyx_t_4;
34140
34159
  __pyx_L28_bool_binop_done:;
34141
34160
  if (__pyx_t_2) {
@@ -34496,7 +34515,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_4_fill_align_table_a
34496
34515
  __pyx_t_2 = __pyx_t_4;
34497
34516
  goto __pyx_L75_bool_binop_done;
34498
34517
  }
34499
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
34518
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
34500
34519
  __pyx_t_2 = __pyx_t_4;
34501
34520
  __pyx_L75_bool_binop_done:;
34502
34521
  if (__pyx_t_2) {
@@ -34519,7 +34538,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_4_fill_align_table_a
34519
34538
  __pyx_t_2 = __pyx_t_4;
34520
34539
  goto __pyx_L79_bool_binop_done;
34521
34540
  }
34522
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
34541
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
34523
34542
  __pyx_t_2 = __pyx_t_4;
34524
34543
  __pyx_L79_bool_binop_done:;
34525
34544
  if (__pyx_t_2) {
@@ -34542,7 +34561,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_4_fill_align_table_a
34542
34561
  __pyx_t_2 = __pyx_t_4;
34543
34562
  goto __pyx_L83_bool_binop_done;
34544
34563
  }
34545
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
34564
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
34546
34565
  __pyx_t_2 = __pyx_t_4;
34547
34566
  __pyx_L83_bool_binop_done:;
34548
34567
  if (__pyx_t_2) {
@@ -34565,7 +34584,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_6banded_4_fill_align_table_a
34565
34584
  __pyx_t_2 = __pyx_t_4;
34566
34585
  goto __pyx_L87_bool_binop_done;
34567
34586
  }
34568
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
34587
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
34569
34588
  __pyx_t_2 = __pyx_t_4;
34570
34589
  __pyx_L87_bool_binop_done:;
34571
34590
  if (__pyx_t_2) {
@@ -48446,7 +48465,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
48446
48465
  __Pyx_GOTREF(__pyx_tuple__8);
48447
48466
  __Pyx_GIVEREF(__pyx_tuple__8);
48448
48467
 
48449
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
48468
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
48450
48469
  * __pyx_import_array()
48451
48470
  * except Exception:
48452
48471
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -48457,7 +48476,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
48457
48476
  __Pyx_GOTREF(__pyx_tuple__9);
48458
48477
  __Pyx_GIVEREF(__pyx_tuple__9);
48459
48478
 
48460
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
48479
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
48461
48480
  * _import_umath()
48462
48481
  * except Exception:
48463
48482
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -49010,33 +49029,33 @@ static int __Pyx_modinit_type_import_code(void) {
49010
49029
  /*--- Type import code ---*/
49011
49030
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
49012
49031
  __Pyx_GOTREF(__pyx_t_1);
49013
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
49032
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
49014
49033
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
49015
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
49034
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
49016
49035
  #elif CYTHON_COMPILING_IN_LIMITED_API
49017
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
49036
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
49018
49037
  #else
49019
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
49038
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
49020
49039
  #endif
49021
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
49040
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
49022
49041
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
49023
49042
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
49024
49043
  __Pyx_GOTREF(__pyx_t_1);
49025
- __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)
49026
- __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)
49027
- __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)
49028
- __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)
49029
- __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 809, __pyx_L1_error)
49030
- __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 811, __pyx_L1_error)
49031
- __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 813, __pyx_L1_error)
49032
- __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 815, __pyx_L1_error)
49033
- __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 817, __pyx_L1_error)
49034
- __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 819, __pyx_L1_error)
49035
- __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 821, __pyx_L1_error)
49036
- __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 823, __pyx_L1_error)
49037
- __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 825, __pyx_L1_error)
49038
- __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 827, __pyx_L1_error)
49039
- __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 866, __pyx_L1_error)
49044
+ __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)
49045
+ __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)
49046
+ __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)
49047
+ __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)
49048
+ __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 809, __pyx_L1_error)
49049
+ __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 811, __pyx_L1_error)
49050
+ __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 813, __pyx_L1_error)
49051
+ __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 815, __pyx_L1_error)
49052
+ __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 817, __pyx_L1_error)
49053
+ __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 819, __pyx_L1_error)
49054
+ __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 821, __pyx_L1_error)
49055
+ __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 823, __pyx_L1_error)
49056
+ __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 825, __pyx_L1_error)
49057
+ __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 827, __pyx_L1_error)
49058
+ __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 866, __pyx_L1_error)
49040
49059
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
49041
49060
  __Pyx_RefNannyFinishContext();
49042
49061
  return 0;
@@ -49064,9 +49083,9 @@ static int __Pyx_modinit_function_import_code(void) {
49064
49083
  /*--- Function import code ---*/
49065
49084
  __pyx_t_1 = PyImport_ImportModule("biotite.sequence.align.tracetable"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
49066
49085
  __Pyx_GOTREF(__pyx_t_1);
49067
- if (__Pyx_ImportFunction_3_0_7(__pyx_t_1, "get_trace_linear", (void (**)(void))&__pyx_f_7biotite_8sequence_5align_10tracetable_get_trace_linear, "__pyx_t_5numpy_uint8_t (__pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
49068
- if (__Pyx_ImportFunction_3_0_7(__pyx_t_1, "get_trace_affine", (void (**)(void))&__pyx_f_7biotite_8sequence_5align_10tracetable_get_trace_affine, "__pyx_t_5numpy_uint8_t (__pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t *, __pyx_t_5numpy_int32_t *, __pyx_t_5numpy_int32_t *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
49069
- if (__Pyx_ImportFunction_3_0_7(__pyx_t_1, "follow_trace", (void (**)(void))&__pyx_f_7biotite_8sequence_5align_10tracetable_follow_trace, "int (__Pyx_memviewslice, int, int, int, int, __Pyx_memviewslice, PyObject *, int, int *, int, int, int)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
49086
+ if (__Pyx_ImportFunction_3_0_10(__pyx_t_1, "get_trace_linear", (void (**)(void))&__pyx_f_7biotite_8sequence_5align_10tracetable_get_trace_linear, "__pyx_t_5numpy_uint8_t (__pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
49087
+ if (__Pyx_ImportFunction_3_0_10(__pyx_t_1, "get_trace_affine", (void (**)(void))&__pyx_f_7biotite_8sequence_5align_10tracetable_get_trace_affine, "__pyx_t_5numpy_uint8_t (__pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t *, __pyx_t_5numpy_int32_t *, __pyx_t_5numpy_int32_t *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
49088
+ if (__Pyx_ImportFunction_3_0_10(__pyx_t_1, "follow_trace", (void (**)(void))&__pyx_f_7biotite_8sequence_5align_10tracetable_follow_trace, "int (__Pyx_memviewslice, int, int, int, int, __Pyx_memviewslice, PyObject *, int, int *, int, int, int)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
49070
49089
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
49071
49090
  __Pyx_RefNannyFinishContext();
49072
49091
  return 0;
@@ -50653,11 +50672,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
50653
50672
  {
50654
50673
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
50655
50674
  if (unlikely(eq != 0)) {
50656
- if (unlikely(eq < 0)) return NULL; // error
50675
+ if (unlikely(eq < 0)) return NULL;
50657
50676
  return kwvalues[i];
50658
50677
  }
50659
50678
  }
50660
- return NULL; // not found (no exception set)
50679
+ return NULL;
50661
50680
  }
50662
50681
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
50663
50682
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -50770,7 +50789,7 @@ static int __Pyx_ParseOptionalKeywords(
50770
50789
  if (*name) {
50771
50790
  values[name-argnames] = value;
50772
50791
  #if CYTHON_AVOID_BORROWED_REFS
50773
- Py_INCREF(value); // transfer ownership of value to values
50792
+ Py_INCREF(value);
50774
50793
  Py_DECREF(key);
50775
50794
  #endif
50776
50795
  key = NULL;
@@ -50789,7 +50808,7 @@ static int __Pyx_ParseOptionalKeywords(
50789
50808
  && _PyString_Eq(**name, key)) {
50790
50809
  values[name-argnames] = value;
50791
50810
  #if CYTHON_AVOID_BORROWED_REFS
50792
- value = NULL; // ownership transferred to values
50811
+ value = NULL;
50793
50812
  #endif
50794
50813
  break;
50795
50814
  }
@@ -50821,7 +50840,7 @@ static int __Pyx_ParseOptionalKeywords(
50821
50840
  if (cmp == 0) {
50822
50841
  values[name-argnames] = value;
50823
50842
  #if CYTHON_AVOID_BORROWED_REFS
50824
- value = NULL; // ownership transferred to values
50843
+ value = NULL;
50825
50844
  #endif
50826
50845
  break;
50827
50846
  }
@@ -52846,9 +52865,10 @@ static PyObject* __Pyx_PyInt_AddObjC(PyObject *op1, PyObject *op2, long intval,
52846
52865
 
52847
52866
  /* IterFinish */
52848
52867
  static CYTHON_INLINE int __Pyx_IterFinish(void) {
52868
+ PyObject* exc_type;
52849
52869
  __Pyx_PyThreadState_declare
52850
52870
  __Pyx_PyThreadState_assign
52851
- PyObject* exc_type = __Pyx_PyErr_CurrentExceptionType();
52871
+ exc_type = __Pyx_PyErr_CurrentExceptionType();
52852
52872
  if (unlikely(exc_type)) {
52853
52873
  if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
52854
52874
  return -1;
@@ -53329,9 +53349,10 @@ static CYTHON_INLINE int __Pyx_dict_iter_next(
53329
53349
 
53330
53350
  /* UnpackUnboundCMethod */
53331
53351
  static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *args, PyObject *kwargs) {
53352
+ PyObject *result;
53332
53353
  PyObject *selfless_args = PyTuple_GetSlice(args, 1, PyTuple_Size(args));
53333
53354
  if (unlikely(!selfless_args)) return NULL;
53334
- PyObject *result = PyObject_Call(method, selfless_args, kwargs);
53355
+ result = PyObject_Call(method, selfless_args, kwargs);
53335
53356
  Py_DECREF(selfless_args);
53336
53357
  return result;
53337
53358
  }
@@ -54181,10 +54202,10 @@ __PYX_GOOD:
54181
54202
  #endif
54182
54203
 
54183
54204
  /* TypeImport */
54184
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
54185
- #define __PYX_HAVE_RT_ImportType_3_0_7
54186
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
54187
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
54205
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
54206
+ #define __PYX_HAVE_RT_ImportType_3_0_10
54207
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
54208
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
54188
54209
  {
54189
54210
  PyObject *result = 0;
54190
54211
  char warning[200];
@@ -54238,7 +54259,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
54238
54259
  module_name, class_name, size, basicsize+itemsize);
54239
54260
  goto bad;
54240
54261
  }
54241
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
54262
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
54242
54263
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
54243
54264
  PyErr_Format(PyExc_ValueError,
54244
54265
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -54246,7 +54267,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
54246
54267
  module_name, class_name, size, basicsize, basicsize+itemsize);
54247
54268
  goto bad;
54248
54269
  }
54249
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
54270
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
54250
54271
  PyOS_snprintf(warning, sizeof(warning),
54251
54272
  "%s.%s size changed, may indicate binary incompatibility. "
54252
54273
  "Expected %zd from C header, got %zd from PyObject",
@@ -55246,7 +55267,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
55246
55267
  default:
55247
55268
  return NULL;
55248
55269
  }
55249
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
55270
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
55250
55271
  }
55251
55272
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
55252
55273
  {
@@ -56063,7 +56084,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
56063
56084
  #else
56064
56085
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
56065
56086
  #endif
56066
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
56087
+ Py_XDECREF(py_funcname);
56067
56088
  return py_code;
56068
56089
  bad:
56069
56090
  Py_XDECREF(py_funcname);
@@ -58850,9 +58871,9 @@ static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt
58850
58871
  }
58851
58872
 
58852
58873
  /* FunctionImport */
58853
- #ifndef __PYX_HAVE_RT_ImportFunction_3_0_7
58854
- #define __PYX_HAVE_RT_ImportFunction_3_0_7
58855
- static int __Pyx_ImportFunction_3_0_7(PyObject *module, const char *funcname, void (**f)(void), const char *sig) {
58874
+ #ifndef __PYX_HAVE_RT_ImportFunction_3_0_10
58875
+ #define __PYX_HAVE_RT_ImportFunction_3_0_10
58876
+ static int __Pyx_ImportFunction_3_0_10(PyObject *module, const char *funcname, void (**f)(void), const char *sig) {
58856
58877
  PyObject *d = 0;
58857
58878
  PyObject *cobj = 0;
58858
58879
  union {