biotite 0.39.0__cp311-cp311-win_amd64.whl → 0.41.0__cp311-cp311-win_amd64.whl

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

Potentially problematic release.


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

Files changed (121) hide show
  1. biotite/__init__.py +3 -3
  2. biotite/application/dssp/app.py +18 -18
  3. biotite/database/pubchem/download.py +23 -23
  4. biotite/database/pubchem/query.py +7 -7
  5. biotite/database/rcsb/download.py +19 -14
  6. biotite/file.py +17 -9
  7. biotite/sequence/align/banded.c +258 -237
  8. biotite/sequence/align/banded.cp311-win_amd64.pyd +0 -0
  9. biotite/sequence/align/cigar.py +60 -15
  10. biotite/sequence/align/kmeralphabet.c +243 -222
  11. biotite/sequence/align/kmeralphabet.cp311-win_amd64.pyd +0 -0
  12. biotite/sequence/align/kmersimilarity.c +215 -196
  13. biotite/sequence/align/kmersimilarity.cp311-win_amd64.pyd +0 -0
  14. biotite/sequence/align/kmertable.cp311-win_amd64.pyd +0 -0
  15. biotite/sequence/align/kmertable.cpp +233 -205
  16. biotite/sequence/align/localgapped.c +258 -237
  17. biotite/sequence/align/localgapped.cp311-win_amd64.pyd +0 -0
  18. biotite/sequence/align/localungapped.c +235 -214
  19. biotite/sequence/align/localungapped.cp311-win_amd64.pyd +0 -0
  20. biotite/sequence/align/multiple.c +255 -234
  21. biotite/sequence/align/multiple.cp311-win_amd64.pyd +0 -0
  22. biotite/sequence/align/pairwise.c +274 -253
  23. biotite/sequence/align/pairwise.cp311-win_amd64.pyd +0 -0
  24. biotite/sequence/align/permutation.c +215 -196
  25. biotite/sequence/align/permutation.cp311-win_amd64.pyd +0 -0
  26. biotite/sequence/align/selector.c +217 -197
  27. biotite/sequence/align/selector.cp311-win_amd64.pyd +0 -0
  28. biotite/sequence/align/tracetable.c +215 -195
  29. biotite/sequence/align/tracetable.cp311-win_amd64.pyd +0 -0
  30. biotite/sequence/annotation.py +2 -2
  31. biotite/sequence/codec.c +235 -214
  32. biotite/sequence/codec.cp311-win_amd64.pyd +0 -0
  33. biotite/sequence/io/fasta/convert.py +27 -24
  34. biotite/sequence/phylo/nj.c +215 -196
  35. biotite/sequence/phylo/nj.cp311-win_amd64.pyd +0 -0
  36. biotite/sequence/phylo/tree.c +227 -202
  37. biotite/sequence/phylo/tree.cp311-win_amd64.pyd +0 -0
  38. biotite/sequence/phylo/upgma.c +215 -196
  39. biotite/sequence/phylo/upgma.cp311-win_amd64.pyd +0 -0
  40. biotite/structure/__init__.py +2 -0
  41. biotite/structure/basepairs.py +7 -12
  42. biotite/structure/bonds.c +1437 -1279
  43. biotite/structure/bonds.cp311-win_amd64.pyd +0 -0
  44. biotite/structure/celllist.c +217 -197
  45. biotite/structure/celllist.cp311-win_amd64.pyd +0 -0
  46. biotite/structure/charges.c +1052 -1101
  47. biotite/structure/charges.cp311-win_amd64.pyd +0 -0
  48. biotite/structure/dotbracket.py +2 -0
  49. biotite/structure/filter.py +30 -37
  50. biotite/structure/info/__init__.py +5 -8
  51. biotite/structure/info/atoms.py +31 -68
  52. biotite/structure/info/bonds.py +47 -101
  53. biotite/structure/info/ccd/README.rst +8 -0
  54. biotite/structure/info/ccd/amino_acids.txt +1663 -0
  55. biotite/structure/info/ccd/carbohydrates.txt +1135 -0
  56. biotite/structure/info/ccd/components.bcif +0 -0
  57. biotite/structure/info/ccd/nucleotides.txt +798 -0
  58. biotite/structure/info/ccd.py +95 -0
  59. biotite/structure/info/groups.py +90 -0
  60. biotite/structure/info/masses.py +21 -20
  61. biotite/structure/info/misc.py +78 -25
  62. biotite/structure/info/standardize.py +17 -12
  63. biotite/structure/integrity.py +19 -70
  64. biotite/structure/io/__init__.py +2 -4
  65. biotite/structure/io/ctab.py +12 -106
  66. biotite/structure/io/general.py +167 -181
  67. biotite/structure/io/gro/file.py +16 -16
  68. biotite/structure/io/mmtf/__init__.py +3 -0
  69. biotite/structure/io/mmtf/convertarray.c +219 -198
  70. biotite/structure/io/mmtf/convertarray.cp311-win_amd64.pyd +0 -0
  71. biotite/structure/io/mmtf/convertfile.c +217 -197
  72. biotite/structure/io/mmtf/convertfile.cp311-win_amd64.pyd +0 -0
  73. biotite/structure/io/mmtf/decode.c +225 -204
  74. biotite/structure/io/mmtf/decode.cp311-win_amd64.pyd +0 -0
  75. biotite/structure/io/mmtf/encode.c +215 -196
  76. biotite/structure/io/mmtf/encode.cp311-win_amd64.pyd +0 -0
  77. biotite/structure/io/mmtf/file.py +34 -26
  78. biotite/structure/io/mol/__init__.py +4 -2
  79. biotite/structure/io/mol/convert.py +71 -7
  80. biotite/structure/io/mol/ctab.py +414 -0
  81. biotite/structure/io/mol/header.py +116 -0
  82. biotite/structure/io/mol/{file.py → mol.py} +69 -82
  83. biotite/structure/io/mol/sdf.py +909 -0
  84. biotite/structure/io/npz/__init__.py +3 -0
  85. biotite/structure/io/npz/file.py +21 -18
  86. biotite/structure/io/pdb/__init__.py +3 -3
  87. biotite/structure/io/pdb/file.py +89 -34
  88. biotite/structure/io/pdb/hybrid36.c +63 -43
  89. biotite/structure/io/pdb/hybrid36.cp311-win_amd64.pyd +0 -0
  90. biotite/structure/io/pdbqt/file.py +32 -32
  91. biotite/structure/io/pdbx/__init__.py +12 -6
  92. biotite/structure/io/pdbx/bcif.py +648 -0
  93. biotite/structure/io/pdbx/cif.py +1032 -0
  94. biotite/structure/io/pdbx/component.py +246 -0
  95. biotite/structure/io/pdbx/convert.py +858 -386
  96. biotite/structure/io/pdbx/encoding.c +112813 -0
  97. biotite/structure/io/pdbx/encoding.cp311-win_amd64.pyd +0 -0
  98. biotite/structure/io/pdbx/legacy.py +267 -0
  99. biotite/structure/molecules.py +151 -151
  100. biotite/structure/repair.py +253 -0
  101. biotite/structure/sasa.c +215 -196
  102. biotite/structure/sasa.cp311-win_amd64.pyd +0 -0
  103. biotite/structure/sequence.py +112 -0
  104. biotite/structure/superimpose.py +618 -116
  105. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/METADATA +3 -3
  106. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/RECORD +109 -103
  107. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/WHEEL +1 -1
  108. biotite/structure/info/amino_acids.json +0 -1556
  109. biotite/structure/info/amino_acids.py +0 -42
  110. biotite/structure/info/carbohydrates.json +0 -1122
  111. biotite/structure/info/carbohydrates.py +0 -39
  112. biotite/structure/info/intra_bonds.msgpack +0 -0
  113. biotite/structure/info/link_types.msgpack +0 -1
  114. biotite/structure/info/nucleotides.json +0 -772
  115. biotite/structure/info/nucleotides.py +0 -39
  116. biotite/structure/info/residue_masses.msgpack +0 -0
  117. biotite/structure/info/residue_names.msgpack +0 -3
  118. biotite/structure/info/residues.msgpack +0 -0
  119. biotite/structure/io/pdbx/file.py +0 -652
  120. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/LICENSE.rst +0 -0
  121. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.0.7 */
1
+ /* Generated by Cython 3.0.10 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -37,10 +37,10 @@ END: Cython Metadata */
37
37
  #else
38
38
  #define __PYX_EXTRA_ABI_MODULE_NAME ""
39
39
  #endif
40
- #define CYTHON_ABI "3_0_7" __PYX_EXTRA_ABI_MODULE_NAME
40
+ #define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
41
41
  #define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
42
42
  #define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
43
- #define CYTHON_HEX_VERSION 0x030007F0
43
+ #define CYTHON_HEX_VERSION 0x03000AF0
44
44
  #define CYTHON_FUTURE_DIVISION 1
45
45
  #include <stddef.h>
46
46
  #ifndef offsetof
@@ -132,6 +132,8 @@ END: Cython Metadata */
132
132
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
133
133
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
134
134
  #endif
135
+ #undef CYTHON_USE_FREELISTS
136
+ #define CYTHON_USE_FREELISTS 0
135
137
  #elif defined(PYPY_VERSION)
136
138
  #define CYTHON_COMPILING_IN_PYPY 1
137
139
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -193,6 +195,8 @@ END: Cython Metadata */
193
195
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
194
196
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
195
197
  #endif
198
+ #undef CYTHON_USE_FREELISTS
199
+ #define CYTHON_USE_FREELISTS 0
196
200
  #elif defined(CYTHON_LIMITED_API)
197
201
  #ifdef Py_LIMITED_API
198
202
  #undef __PYX_LIMITED_VERSION_HEX
@@ -254,6 +258,8 @@ END: Cython Metadata */
254
258
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
255
259
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
256
260
  #endif
261
+ #undef CYTHON_USE_FREELISTS
262
+ #define CYTHON_USE_FREELISTS 0
257
263
  #elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
258
264
  #define CYTHON_COMPILING_IN_PYPY 0
259
265
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -263,11 +269,17 @@ END: Cython Metadata */
263
269
  #ifndef CYTHON_USE_TYPE_SLOTS
264
270
  #define CYTHON_USE_TYPE_SLOTS 1
265
271
  #endif
272
+ #ifndef CYTHON_USE_TYPE_SPECS
273
+ #define CYTHON_USE_TYPE_SPECS 0
274
+ #endif
266
275
  #undef CYTHON_USE_PYTYPE_LOOKUP
267
276
  #define CYTHON_USE_PYTYPE_LOOKUP 0
268
277
  #ifndef CYTHON_USE_ASYNC_SLOTS
269
278
  #define CYTHON_USE_ASYNC_SLOTS 1
270
279
  #endif
280
+ #ifndef CYTHON_USE_PYLONG_INTERNALS
281
+ #define CYTHON_USE_PYLONG_INTERNALS 0
282
+ #endif
271
283
  #undef CYTHON_USE_PYLIST_INTERNALS
272
284
  #define CYTHON_USE_PYLIST_INTERNALS 0
273
285
  #ifndef CYTHON_USE_UNICODE_INTERNALS
@@ -275,8 +287,6 @@ END: Cython Metadata */
275
287
  #endif
276
288
  #undef CYTHON_USE_UNICODE_WRITER
277
289
  #define CYTHON_USE_UNICODE_WRITER 0
278
- #undef CYTHON_USE_PYLONG_INTERNALS
279
- #define CYTHON_USE_PYLONG_INTERNALS 0
280
290
  #ifndef CYTHON_AVOID_BORROWED_REFS
281
291
  #define CYTHON_AVOID_BORROWED_REFS 0
282
292
  #endif
@@ -288,11 +298,22 @@ END: Cython Metadata */
288
298
  #endif
289
299
  #undef CYTHON_FAST_THREAD_STATE
290
300
  #define CYTHON_FAST_THREAD_STATE 0
301
+ #undef CYTHON_FAST_GIL
302
+ #define CYTHON_FAST_GIL 0
303
+ #ifndef CYTHON_METH_FASTCALL
304
+ #define CYTHON_METH_FASTCALL 1
305
+ #endif
291
306
  #undef CYTHON_FAST_PYCALL
292
307
  #define CYTHON_FAST_PYCALL 0
308
+ #ifndef CYTHON_PEP487_INIT_SUBCLASS
309
+ #define CYTHON_PEP487_INIT_SUBCLASS 1
310
+ #endif
293
311
  #ifndef CYTHON_PEP489_MULTI_PHASE_INIT
294
312
  #define CYTHON_PEP489_MULTI_PHASE_INIT 1
295
313
  #endif
314
+ #ifndef CYTHON_USE_MODULE_STATE
315
+ #define CYTHON_USE_MODULE_STATE 0
316
+ #endif
296
317
  #ifndef CYTHON_USE_TP_FINALIZE
297
318
  #define CYTHON_USE_TP_FINALIZE 1
298
319
  #endif
@@ -300,6 +321,12 @@ END: Cython Metadata */
300
321
  #define CYTHON_USE_DICT_VERSIONS 0
301
322
  #undef CYTHON_USE_EXC_INFO_STACK
302
323
  #define CYTHON_USE_EXC_INFO_STACK 0
324
+ #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
325
+ #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
326
+ #endif
327
+ #ifndef CYTHON_USE_FREELISTS
328
+ #define CYTHON_USE_FREELISTS 0
329
+ #endif
303
330
  #else
304
331
  #define CYTHON_COMPILING_IN_PYPY 0
305
332
  #define CYTHON_COMPILING_IN_CPYTHON 1
@@ -390,6 +417,9 @@ END: Cython Metadata */
390
417
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
391
418
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
392
419
  #endif
420
+ #ifndef CYTHON_USE_FREELISTS
421
+ #define CYTHON_USE_FREELISTS 1
422
+ #endif
393
423
  #endif
394
424
  #if !defined(CYTHON_FAST_PYCCALL)
395
425
  #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
@@ -582,14 +612,14 @@ END: Cython Metadata */
582
612
  PyObject *exception_table = NULL;
583
613
  PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
584
614
  #if __PYX_LIMITED_VERSION_HEX < 0x030B0000
585
- PyObject *version_info; // borrowed
615
+ PyObject *version_info;
586
616
  PyObject *py_minor_version = NULL;
587
617
  #endif
588
618
  long minor_version = 0;
589
619
  PyObject *type, *value, *traceback;
590
620
  PyErr_Fetch(&type, &value, &traceback);
591
621
  #if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
592
- minor_version = 11; // we don't yet need to distinguish between versions > 11
622
+ minor_version = 11;
593
623
  #else
594
624
  if (!(version_info = PySys_GetObject("version_info"))) goto end;
595
625
  if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
@@ -647,7 +677,7 @@ END: Cython Metadata */
647
677
  PyObject *fv, PyObject *cell, PyObject* fn,
648
678
  PyObject *name, int fline, PyObject *lnos) {
649
679
  PyCodeObject *result;
650
- PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0); // we don't have access to __pyx_empty_bytes here
680
+ PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
651
681
  if (!empty_bytes) return NULL;
652
682
  result =
653
683
  #if PY_VERSION_HEX >= 0x030C0000
@@ -733,8 +763,13 @@ END: Cython Metadata */
733
763
  typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
734
764
  Py_ssize_t nargs, PyObject *kwnames);
735
765
  #else
736
- #define __Pyx_PyCFunctionFast _PyCFunctionFast
737
- #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
766
+ #if PY_VERSION_HEX >= 0x030d00A4
767
+ # define __Pyx_PyCFunctionFast PyCFunctionFast
768
+ # define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
769
+ #else
770
+ # define __Pyx_PyCFunctionFast _PyCFunctionFast
771
+ # define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
772
+ #endif
738
773
  #endif
739
774
  #if CYTHON_METH_FASTCALL
740
775
  #define __Pyx_METH_FASTCALL METH_FASTCALL
@@ -1086,7 +1121,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
1086
1121
  #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
1087
1122
  #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
1088
1123
  #endif
1089
- #if PY_VERSION_HEX >= 0x030d00A1
1124
+ #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
1090
1125
  #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
1091
1126
  #else
1092
1127
  static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
@@ -1173,7 +1208,7 @@ static CYTHON_INLINE float __PYX_NAN() {
1173
1208
  #endif
1174
1209
 
1175
1210
  #define __PYX_MARK_ERR_POS(f_index, lineno) \
1176
- { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1211
+ { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1177
1212
  #define __PYX_ERR(f_index, lineno, Ln_error) \
1178
1213
  { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
1179
1214
 
@@ -1286,24 +1321,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1286
1321
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1287
1322
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1288
1323
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1289
- #if CYTHON_COMPILING_IN_LIMITED_API
1290
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1291
- {
1292
- const wchar_t *u_end = u;
1293
- while (*u_end++) ;
1294
- return (size_t)(u_end - u - 1);
1295
- }
1296
- #else
1297
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1298
- {
1299
- const Py_UNICODE *u_end = u;
1300
- while (*u_end++) ;
1301
- return (size_t)(u_end - u - 1);
1302
- }
1303
- #endif
1304
1324
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1305
- #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1306
- #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1307
1325
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1308
1326
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1309
1327
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -1353,7 +1371,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1353
1371
  #endif
1354
1372
  typedef Py_ssize_t __Pyx_compact_pylong;
1355
1373
  typedef size_t __Pyx_compact_upylong;
1356
- #else // Py < 3.12
1374
+ #else
1357
1375
  #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
1358
1376
  #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
1359
1377
  #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
@@ -1506,7 +1524,7 @@ static const char *__pyx_f[] = {
1506
1524
 
1507
1525
  /* #### Code section: numeric_typedefs ### */
1508
1526
 
1509
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1527
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1510
1528
  * # in Cython to enable them only on the right systems.
1511
1529
  *
1512
1530
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1515,7 +1533,7 @@ static const char *__pyx_f[] = {
1515
1533
  */
1516
1534
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1517
1535
 
1518
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1536
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1519
1537
  *
1520
1538
  * ctypedef npy_int8 int8_t
1521
1539
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1524,7 +1542,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1524
1542
  */
1525
1543
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1526
1544
 
1527
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1545
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1528
1546
  * ctypedef npy_int8 int8_t
1529
1547
  * ctypedef npy_int16 int16_t
1530
1548
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1533,7 +1551,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1533
1551
  */
1534
1552
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1535
1553
 
1536
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
1554
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
1537
1555
  * ctypedef npy_int16 int16_t
1538
1556
  * ctypedef npy_int32 int32_t
1539
1557
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1542,7 +1560,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1542
1560
  */
1543
1561
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1544
1562
 
1545
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1563
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1546
1564
  * #ctypedef npy_int128 int128_t
1547
1565
  *
1548
1566
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1551,7 +1569,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1551
1569
  */
1552
1570
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1553
1571
 
1554
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1572
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1555
1573
  *
1556
1574
  * ctypedef npy_uint8 uint8_t
1557
1575
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1560,7 +1578,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1560
1578
  */
1561
1579
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1562
1580
 
1563
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1581
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1564
1582
  * ctypedef npy_uint8 uint8_t
1565
1583
  * ctypedef npy_uint16 uint16_t
1566
1584
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1569,7 +1587,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1569
1587
  */
1570
1588
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1571
1589
 
1572
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
1590
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
1573
1591
  * ctypedef npy_uint16 uint16_t
1574
1592
  * ctypedef npy_uint32 uint32_t
1575
1593
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1578,7 +1596,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1578
1596
  */
1579
1597
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1580
1598
 
1581
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1599
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1582
1600
  * #ctypedef npy_uint128 uint128_t
1583
1601
  *
1584
1602
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1587,7 +1605,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1587
1605
  */
1588
1606
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1589
1607
 
1590
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
1608
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
1591
1609
  *
1592
1610
  * ctypedef npy_float32 float32_t
1593
1611
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1596,7 +1614,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1596
1614
  */
1597
1615
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1598
1616
 
1599
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1617
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1600
1618
  * # The int types are mapped a bit surprising --
1601
1619
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1602
1620
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1605,7 +1623,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1605
1623
  */
1606
1624
  typedef npy_long __pyx_t_5numpy_int_t;
1607
1625
 
1608
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
1626
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
1609
1627
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1610
1628
  * ctypedef npy_long int_t
1611
1629
  * ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
@@ -1614,7 +1632,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1614
1632
  */
1615
1633
  typedef npy_longlong __pyx_t_5numpy_long_t;
1616
1634
 
1617
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1635
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1618
1636
  * ctypedef npy_long int_t
1619
1637
  * ctypedef npy_longlong long_t
1620
1638
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1623,7 +1641,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
1623
1641
  */
1624
1642
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1625
1643
 
1626
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":759
1644
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":759
1627
1645
  * ctypedef npy_longlong longlong_t
1628
1646
  *
1629
1647
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1632,7 +1650,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1632
1650
  */
1633
1651
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1634
1652
 
1635
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1653
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1636
1654
  *
1637
1655
  * ctypedef npy_ulong uint_t
1638
1656
  * ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
@@ -1641,7 +1659,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1641
1659
  */
1642
1660
  typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1643
1661
 
1644
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1662
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1645
1663
  * ctypedef npy_ulong uint_t
1646
1664
  * ctypedef npy_ulonglong ulong_t
1647
1665
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1650,7 +1668,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1650
1668
  */
1651
1669
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1652
1670
 
1653
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1671
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1654
1672
  * ctypedef npy_ulonglong ulonglong_t
1655
1673
  *
1656
1674
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1659,7 +1677,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1659
1677
  */
1660
1678
  typedef npy_intp __pyx_t_5numpy_intp_t;
1661
1679
 
1662
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1680
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1663
1681
  *
1664
1682
  * ctypedef npy_intp intp_t
1665
1683
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1668,7 +1686,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1668
1686
  */
1669
1687
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1670
1688
 
1671
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":766
1689
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":766
1672
1690
  * ctypedef npy_uintp uintp_t
1673
1691
  *
1674
1692
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1677,7 +1695,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1677
1695
  */
1678
1696
  typedef npy_double __pyx_t_5numpy_float_t;
1679
1697
 
1680
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1698
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1681
1699
  *
1682
1700
  * ctypedef npy_double float_t
1683
1701
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1686,7 +1704,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1686
1704
  */
1687
1705
  typedef npy_double __pyx_t_5numpy_double_t;
1688
1706
 
1689
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1707
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1690
1708
  * ctypedef npy_double float_t
1691
1709
  * ctypedef npy_double double_t
1692
1710
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1795,7 +1813,7 @@ static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(do
1795
1813
 
1796
1814
  /*--- Type declarations ---*/
1797
1815
 
1798
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
1816
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
1799
1817
  * ctypedef npy_longdouble longdouble_t
1800
1818
  *
1801
1819
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1804,7 +1822,7 @@ static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(do
1804
1822
  */
1805
1823
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1806
1824
 
1807
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1825
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1808
1826
  *
1809
1827
  * ctypedef npy_cfloat cfloat_t
1810
1828
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1813,7 +1831,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1813
1831
  */
1814
1832
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1815
1833
 
1816
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1834
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1817
1835
  * ctypedef npy_cfloat cfloat_t
1818
1836
  * ctypedef npy_cdouble cdouble_t
1819
1837
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1822,7 +1840,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1822
1840
  */
1823
1841
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1824
1842
 
1825
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
1843
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
1826
1844
  * ctypedef npy_clongdouble clongdouble_t
1827
1845
  *
1828
1846
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2037,8 +2055,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2037
2055
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2038
2056
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2039
2057
  #else
2040
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2041
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2058
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2059
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2042
2060
  #endif
2043
2061
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2044
2062
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2054,8 +2072,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2054
2072
  #else
2055
2073
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2056
2074
  #endif
2057
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2058
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2075
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2076
+ to have the same reference counting */
2077
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2059
2078
  #else
2060
2079
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2061
2080
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2358,22 +2377,22 @@ static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key);
2358
2377
  #endif
2359
2378
 
2360
2379
  /* TypeImport.proto */
2361
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2362
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2380
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2381
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2363
2382
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2364
2383
  #include <stdalign.h>
2365
2384
  #endif
2366
2385
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2367
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2386
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2368
2387
  #else
2369
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2388
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2370
2389
  #endif
2371
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2372
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2373
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2374
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2390
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2391
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2392
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2393
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2375
2394
  };
2376
- 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);
2395
+ 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);
2377
2396
  #endif
2378
2397
 
2379
2398
  /* Import.proto */
@@ -2486,7 +2505,7 @@ typedef struct {
2486
2505
  #endif
2487
2506
  void *defaults;
2488
2507
  int defaults_pyobjects;
2489
- size_t defaults_size; // used by FusedFunction for copying defaults
2508
+ size_t defaults_size;
2490
2509
  int flags;
2491
2510
  PyObject *defaults_tuple;
2492
2511
  PyObject *defaults_kwdict;
@@ -3938,7 +3957,7 @@ static int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) {
3938
3957
  #define __pyx_codeobj__16 __pyx_mstate_global->__pyx_codeobj__16
3939
3958
  /* #### Code section: module_code ### */
3940
3959
 
3941
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
3960
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
3942
3961
  *
3943
3962
  * @property
3944
3963
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -3949,7 +3968,7 @@ static int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) {
3949
3968
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
3950
3969
  PyObject *__pyx_r;
3951
3970
 
3952
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
3971
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
3953
3972
  * """Returns a borrowed reference to the object owning the data/memory.
3954
3973
  * """
3955
3974
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -3959,7 +3978,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
3959
3978
  __pyx_r = PyArray_BASE(__pyx_v_self);
3960
3979
  goto __pyx_L0;
3961
3980
 
3962
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
3981
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
3963
3982
  *
3964
3983
  * @property
3965
3984
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -3972,7 +3991,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
3972
3991
  return __pyx_r;
3973
3992
  }
3974
3993
 
3975
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
3994
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
3976
3995
  *
3977
3996
  * @property
3978
3997
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -3986,7 +4005,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
3986
4005
  PyArray_Descr *__pyx_t_1;
3987
4006
  __Pyx_RefNannySetupContext("descr", 1);
3988
4007
 
3989
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
4008
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
3990
4009
  * """Returns an owned reference to the dtype of the array.
3991
4010
  * """
3992
4011
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -3999,7 +4018,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
3999
4018
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
4000
4019
  goto __pyx_L0;
4001
4020
 
4002
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
4021
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
4003
4022
  *
4004
4023
  * @property
4005
4024
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -4014,7 +4033,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
4014
4033
  return __pyx_r;
4015
4034
  }
4016
4035
 
4017
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
4036
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
4018
4037
  *
4019
4038
  * @property
4020
4039
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -4025,7 +4044,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
4025
4044
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
4026
4045
  int __pyx_r;
4027
4046
 
4028
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
4047
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
4029
4048
  * """Returns the number of dimensions in the array.
4030
4049
  * """
4031
4050
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -4035,7 +4054,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
4035
4054
  __pyx_r = PyArray_NDIM(__pyx_v_self);
4036
4055
  goto __pyx_L0;
4037
4056
 
4038
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
4057
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
4039
4058
  *
4040
4059
  * @property
4041
4060
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -4048,7 +4067,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
4048
4067
  return __pyx_r;
4049
4068
  }
4050
4069
 
4051
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
4070
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
4052
4071
  *
4053
4072
  * @property
4054
4073
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -4059,7 +4078,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
4059
4078
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
4060
4079
  npy_intp *__pyx_r;
4061
4080
 
4062
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
4081
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
4063
4082
  * Can return NULL for 0-dimensional arrays.
4064
4083
  * """
4065
4084
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -4069,7 +4088,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
4069
4088
  __pyx_r = PyArray_DIMS(__pyx_v_self);
4070
4089
  goto __pyx_L0;
4071
4090
 
4072
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
4091
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
4073
4092
  *
4074
4093
  * @property
4075
4094
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -4082,7 +4101,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
4082
4101
  return __pyx_r;
4083
4102
  }
4084
4103
 
4085
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
4104
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
4086
4105
  *
4087
4106
  * @property
4088
4107
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -4093,7 +4112,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
4093
4112
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
4094
4113
  npy_intp *__pyx_r;
4095
4114
 
4096
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
4115
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
4097
4116
  * The number of elements matches the number of dimensions of the array (ndim).
4098
4117
  * """
4099
4118
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -4103,7 +4122,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
4103
4122
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
4104
4123
  goto __pyx_L0;
4105
4124
 
4106
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
4125
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
4107
4126
  *
4108
4127
  * @property
4109
4128
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -4116,7 +4135,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
4116
4135
  return __pyx_r;
4117
4136
  }
4118
4137
 
4119
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
4138
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
4120
4139
  *
4121
4140
  * @property
4122
4141
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -4127,7 +4146,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
4127
4146
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
4128
4147
  npy_intp __pyx_r;
4129
4148
 
4130
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
4149
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
4131
4150
  * """Returns the total size (in number of elements) of the array.
4132
4151
  * """
4133
4152
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -4137,7 +4156,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
4137
4156
  __pyx_r = PyArray_SIZE(__pyx_v_self);
4138
4157
  goto __pyx_L0;
4139
4158
 
4140
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
4159
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
4141
4160
  *
4142
4161
  * @property
4143
4162
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -4150,7 +4169,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
4150
4169
  return __pyx_r;
4151
4170
  }
4152
4171
 
4153
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
4172
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
4154
4173
  *
4155
4174
  * @property
4156
4175
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -4161,7 +4180,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
4161
4180
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
4162
4181
  char *__pyx_r;
4163
4182
 
4164
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
4183
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
4165
4184
  * of `PyArray_DATA()` instead, which returns a 'void*'.
4166
4185
  * """
4167
4186
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -4171,7 +4190,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
4171
4190
  __pyx_r = PyArray_BYTES(__pyx_v_self);
4172
4191
  goto __pyx_L0;
4173
4192
 
4174
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
4193
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
4175
4194
  *
4176
4195
  * @property
4177
4196
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -4184,7 +4203,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
4184
4203
  return __pyx_r;
4185
4204
  }
4186
4205
 
4187
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
4206
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
4188
4207
  * ctypedef npy_cdouble complex_t
4189
4208
  *
4190
4209
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -4201,7 +4220,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
4201
4220
  int __pyx_clineno = 0;
4202
4221
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
4203
4222
 
4204
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
4223
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
4205
4224
  *
4206
4225
  * cdef inline object PyArray_MultiIterNew1(a):
4207
4226
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -4215,7 +4234,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
4215
4234
  __pyx_t_1 = 0;
4216
4235
  goto __pyx_L0;
4217
4236
 
4218
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
4237
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
4219
4238
  * ctypedef npy_cdouble complex_t
4220
4239
  *
4221
4240
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -4234,7 +4253,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
4234
4253
  return __pyx_r;
4235
4254
  }
4236
4255
 
4237
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
4256
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
4238
4257
  * return PyArray_MultiIterNew(1, <void*>a)
4239
4258
  *
4240
4259
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -4251,7 +4270,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
4251
4270
  int __pyx_clineno = 0;
4252
4271
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
4253
4272
 
4254
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
4273
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
4255
4274
  *
4256
4275
  * cdef inline object PyArray_MultiIterNew2(a, b):
4257
4276
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -4265,7 +4284,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
4265
4284
  __pyx_t_1 = 0;
4266
4285
  goto __pyx_L0;
4267
4286
 
4268
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
4287
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
4269
4288
  * return PyArray_MultiIterNew(1, <void*>a)
4270
4289
  *
4271
4290
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -4284,7 +4303,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
4284
4303
  return __pyx_r;
4285
4304
  }
4286
4305
 
4287
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
4306
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
4288
4307
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
4289
4308
  *
4290
4309
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -4301,7 +4320,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
4301
4320
  int __pyx_clineno = 0;
4302
4321
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
4303
4322
 
4304
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
4323
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
4305
4324
  *
4306
4325
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
4307
4326
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -4315,7 +4334,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
4315
4334
  __pyx_t_1 = 0;
4316
4335
  goto __pyx_L0;
4317
4336
 
4318
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
4337
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
4319
4338
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
4320
4339
  *
4321
4340
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -4334,7 +4353,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
4334
4353
  return __pyx_r;
4335
4354
  }
4336
4355
 
4337
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
4356
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
4338
4357
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
4339
4358
  *
4340
4359
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -4351,7 +4370,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
4351
4370
  int __pyx_clineno = 0;
4352
4371
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
4353
4372
 
4354
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
4373
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
4355
4374
  *
4356
4375
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
4357
4376
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -4365,7 +4384,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
4365
4384
  __pyx_t_1 = 0;
4366
4385
  goto __pyx_L0;
4367
4386
 
4368
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
4387
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
4369
4388
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
4370
4389
  *
4371
4390
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -4384,7 +4403,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
4384
4403
  return __pyx_r;
4385
4404
  }
4386
4405
 
4387
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
4406
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
4388
4407
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
4389
4408
  *
4390
4409
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -4401,7 +4420,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
4401
4420
  int __pyx_clineno = 0;
4402
4421
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
4403
4422
 
4404
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
4423
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
4405
4424
  *
4406
4425
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
4407
4426
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -4415,7 +4434,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
4415
4434
  __pyx_t_1 = 0;
4416
4435
  goto __pyx_L0;
4417
4436
 
4418
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
4437
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
4419
4438
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
4420
4439
  *
4421
4440
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -4434,7 +4453,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
4434
4453
  return __pyx_r;
4435
4454
  }
4436
4455
 
4437
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
4456
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
4438
4457
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
4439
4458
  *
4440
4459
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -4448,7 +4467,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4448
4467
  int __pyx_t_1;
4449
4468
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
4450
4469
 
4451
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
4470
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
4452
4471
  *
4453
4472
  * cdef inline tuple PyDataType_SHAPE(dtype d):
4454
4473
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -4458,7 +4477,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4458
4477
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
4459
4478
  if (__pyx_t_1) {
4460
4479
 
4461
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
4480
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
4462
4481
  * cdef inline tuple PyDataType_SHAPE(dtype d):
4463
4482
  * if PyDataType_HASSUBARRAY(d):
4464
4483
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -4470,7 +4489,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4470
4489
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
4471
4490
  goto __pyx_L0;
4472
4491
 
4473
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
4492
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
4474
4493
  *
4475
4494
  * cdef inline tuple PyDataType_SHAPE(dtype d):
4476
4495
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -4479,7 +4498,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4479
4498
  */
4480
4499
  }
4481
4500
 
4482
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
4501
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
4483
4502
  * return <tuple>d.subarray.shape
4484
4503
  * else:
4485
4504
  * return () # <<<<<<<<<<<<<<
@@ -4493,7 +4512,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4493
4512
  goto __pyx_L0;
4494
4513
  }
4495
4514
 
4496
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
4515
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
4497
4516
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
4498
4517
  *
4499
4518
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -4508,7 +4527,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4508
4527
  return __pyx_r;
4509
4528
  }
4510
4529
 
4511
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
4530
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
4512
4531
  * int _import_umath() except -1
4513
4532
  *
4514
4533
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -4518,7 +4537,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4518
4537
 
4519
4538
  static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
4520
4539
 
4521
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
4540
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
4522
4541
  *
4523
4542
  * cdef inline void set_array_base(ndarray arr, object base):
4524
4543
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -4527,7 +4546,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
4527
4546
  */
4528
4547
  Py_INCREF(__pyx_v_base);
4529
4548
 
4530
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
4549
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
4531
4550
  * cdef inline void set_array_base(ndarray arr, object base):
4532
4551
  * Py_INCREF(base) # important to do this before stealing the reference below!
4533
4552
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -4536,7 +4555,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
4536
4555
  */
4537
4556
  (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
4538
4557
 
4539
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
4558
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
4540
4559
  * int _import_umath() except -1
4541
4560
  *
4542
4561
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -4547,7 +4566,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
4547
4566
  /* function exit code */
4548
4567
  }
4549
4568
 
4550
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
4569
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
4551
4570
  * PyArray_SetBaseObject(arr, base)
4552
4571
  *
4553
4572
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -4562,7 +4581,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4562
4581
  int __pyx_t_1;
4563
4582
  __Pyx_RefNannySetupContext("get_array_base", 1);
4564
4583
 
4565
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
4584
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
4566
4585
  *
4567
4586
  * cdef inline object get_array_base(ndarray arr):
4568
4587
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -4571,7 +4590,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4571
4590
  */
4572
4591
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
4573
4592
 
4574
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
4593
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
4575
4594
  * cdef inline object get_array_base(ndarray arr):
4576
4595
  * base = PyArray_BASE(arr)
4577
4596
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -4581,7 +4600,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4581
4600
  __pyx_t_1 = (__pyx_v_base == NULL);
4582
4601
  if (__pyx_t_1) {
4583
4602
 
4584
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
4603
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
4585
4604
  * base = PyArray_BASE(arr)
4586
4605
  * if base is NULL:
4587
4606
  * return None # <<<<<<<<<<<<<<
@@ -4592,7 +4611,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4592
4611
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
4593
4612
  goto __pyx_L0;
4594
4613
 
4595
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
4614
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
4596
4615
  * cdef inline object get_array_base(ndarray arr):
4597
4616
  * base = PyArray_BASE(arr)
4598
4617
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -4601,7 +4620,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4601
4620
  */
4602
4621
  }
4603
4622
 
4604
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
4623
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
4605
4624
  * if base is NULL:
4606
4625
  * return None
4607
4626
  * return <object>base # <<<<<<<<<<<<<<
@@ -4613,7 +4632,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4613
4632
  __pyx_r = ((PyObject *)__pyx_v_base);
4614
4633
  goto __pyx_L0;
4615
4634
 
4616
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
4635
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
4617
4636
  * PyArray_SetBaseObject(arr, base)
4618
4637
  *
4619
4638
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -4628,7 +4647,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4628
4647
  return __pyx_r;
4629
4648
  }
4630
4649
 
4631
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
4650
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
4632
4651
  * # Versions of the import_* functions which are more suitable for
4633
4652
  * # Cython code.
4634
4653
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -4652,7 +4671,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4652
4671
  int __pyx_clineno = 0;
4653
4672
  __Pyx_RefNannySetupContext("import_array", 1);
4654
4673
 
4655
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
4674
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
4656
4675
  * # Cython code.
4657
4676
  * cdef inline int import_array() except -1:
4658
4677
  * try: # <<<<<<<<<<<<<<
@@ -4668,7 +4687,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4668
4687
  __Pyx_XGOTREF(__pyx_t_3);
4669
4688
  /*try:*/ {
4670
4689
 
4671
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
4690
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
4672
4691
  * cdef inline int import_array() except -1:
4673
4692
  * try:
4674
4693
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -4677,7 +4696,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4677
4696
  */
4678
4697
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 984, __pyx_L3_error)
4679
4698
 
4680
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
4699
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
4681
4700
  * # Cython code.
4682
4701
  * cdef inline int import_array() except -1:
4683
4702
  * try: # <<<<<<<<<<<<<<
@@ -4691,7 +4710,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4691
4710
  goto __pyx_L8_try_end;
4692
4711
  __pyx_L3_error:;
4693
4712
 
4694
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
4713
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
4695
4714
  * try:
4696
4715
  * __pyx_import_array()
4697
4716
  * except Exception: # <<<<<<<<<<<<<<
@@ -4706,7 +4725,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4706
4725
  __Pyx_XGOTREF(__pyx_t_6);
4707
4726
  __Pyx_XGOTREF(__pyx_t_7);
4708
4727
 
4709
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
4728
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
4710
4729
  * __pyx_import_array()
4711
4730
  * except Exception:
4712
4731
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -4721,7 +4740,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4721
4740
  }
4722
4741
  goto __pyx_L5_except_error;
4723
4742
 
4724
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
4743
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
4725
4744
  * # Cython code.
4726
4745
  * cdef inline int import_array() except -1:
4727
4746
  * try: # <<<<<<<<<<<<<<
@@ -4737,7 +4756,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4737
4756
  __pyx_L8_try_end:;
4738
4757
  }
4739
4758
 
4740
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
4759
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
4741
4760
  * # Versions of the import_* functions which are more suitable for
4742
4761
  * # Cython code.
4743
4762
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -4760,7 +4779,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4760
4779
  return __pyx_r;
4761
4780
  }
4762
4781
 
4763
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
4782
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
4764
4783
  * raise ImportError("numpy.core.multiarray failed to import")
4765
4784
  *
4766
4785
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -4784,7 +4803,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4784
4803
  int __pyx_clineno = 0;
4785
4804
  __Pyx_RefNannySetupContext("import_umath", 1);
4786
4805
 
4787
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
4806
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
4788
4807
  *
4789
4808
  * cdef inline int import_umath() except -1:
4790
4809
  * try: # <<<<<<<<<<<<<<
@@ -4800,7 +4819,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4800
4819
  __Pyx_XGOTREF(__pyx_t_3);
4801
4820
  /*try:*/ {
4802
4821
 
4803
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
4822
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
4804
4823
  * cdef inline int import_umath() except -1:
4805
4824
  * try:
4806
4825
  * _import_umath() # <<<<<<<<<<<<<<
@@ -4809,7 +4828,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4809
4828
  */
4810
4829
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 990, __pyx_L3_error)
4811
4830
 
4812
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
4831
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
4813
4832
  *
4814
4833
  * cdef inline int import_umath() except -1:
4815
4834
  * try: # <<<<<<<<<<<<<<
@@ -4823,7 +4842,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4823
4842
  goto __pyx_L8_try_end;
4824
4843
  __pyx_L3_error:;
4825
4844
 
4826
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
4845
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
4827
4846
  * try:
4828
4847
  * _import_umath()
4829
4848
  * except Exception: # <<<<<<<<<<<<<<
@@ -4838,7 +4857,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4838
4857
  __Pyx_XGOTREF(__pyx_t_6);
4839
4858
  __Pyx_XGOTREF(__pyx_t_7);
4840
4859
 
4841
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
4860
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
4842
4861
  * _import_umath()
4843
4862
  * except Exception:
4844
4863
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -4853,7 +4872,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4853
4872
  }
4854
4873
  goto __pyx_L5_except_error;
4855
4874
 
4856
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
4875
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
4857
4876
  *
4858
4877
  * cdef inline int import_umath() except -1:
4859
4878
  * try: # <<<<<<<<<<<<<<
@@ -4869,7 +4888,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4869
4888
  __pyx_L8_try_end:;
4870
4889
  }
4871
4890
 
4872
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
4891
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
4873
4892
  * raise ImportError("numpy.core.multiarray failed to import")
4874
4893
  *
4875
4894
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -4892,7 +4911,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4892
4911
  return __pyx_r;
4893
4912
  }
4894
4913
 
4895
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
4914
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
4896
4915
  * raise ImportError("numpy.core.umath failed to import")
4897
4916
  *
4898
4917
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -4916,7 +4935,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4916
4935
  int __pyx_clineno = 0;
4917
4936
  __Pyx_RefNannySetupContext("import_ufunc", 1);
4918
4937
 
4919
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
4938
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
4920
4939
  *
4921
4940
  * cdef inline int import_ufunc() except -1:
4922
4941
  * try: # <<<<<<<<<<<<<<
@@ -4932,7 +4951,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4932
4951
  __Pyx_XGOTREF(__pyx_t_3);
4933
4952
  /*try:*/ {
4934
4953
 
4935
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
4954
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
4936
4955
  * cdef inline int import_ufunc() except -1:
4937
4956
  * try:
4938
4957
  * _import_umath() # <<<<<<<<<<<<<<
@@ -4941,7 +4960,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4941
4960
  */
4942
4961
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 996, __pyx_L3_error)
4943
4962
 
4944
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
4963
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
4945
4964
  *
4946
4965
  * cdef inline int import_ufunc() except -1:
4947
4966
  * try: # <<<<<<<<<<<<<<
@@ -4955,7 +4974,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4955
4974
  goto __pyx_L8_try_end;
4956
4975
  __pyx_L3_error:;
4957
4976
 
4958
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
4977
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
4959
4978
  * try:
4960
4979
  * _import_umath()
4961
4980
  * except Exception: # <<<<<<<<<<<<<<
@@ -4970,7 +4989,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4970
4989
  __Pyx_XGOTREF(__pyx_t_6);
4971
4990
  __Pyx_XGOTREF(__pyx_t_7);
4972
4991
 
4973
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
4992
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
4974
4993
  * _import_umath()
4975
4994
  * except Exception:
4976
4995
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -4985,7 +5004,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4985
5004
  }
4986
5005
  goto __pyx_L5_except_error;
4987
5006
 
4988
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
5007
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
4989
5008
  *
4990
5009
  * cdef inline int import_ufunc() except -1:
4991
5010
  * try: # <<<<<<<<<<<<<<
@@ -5001,7 +5020,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5001
5020
  __pyx_L8_try_end:;
5002
5021
  }
5003
5022
 
5004
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
5023
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
5005
5024
  * raise ImportError("numpy.core.umath failed to import")
5006
5025
  *
5007
5026
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -5024,7 +5043,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5024
5043
  return __pyx_r;
5025
5044
  }
5026
5045
 
5027
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
5046
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
5028
5047
  *
5029
5048
  *
5030
5049
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -5035,7 +5054,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5035
5054
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
5036
5055
  int __pyx_r;
5037
5056
 
5038
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
5057
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
5039
5058
  * bool
5040
5059
  * """
5041
5060
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -5045,7 +5064,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
5045
5064
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
5046
5065
  goto __pyx_L0;
5047
5066
 
5048
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
5067
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
5049
5068
  *
5050
5069
  *
5051
5070
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -5058,7 +5077,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
5058
5077
  return __pyx_r;
5059
5078
  }
5060
5079
 
5061
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
5080
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
5062
5081
  *
5063
5082
  *
5064
5083
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -5069,7 +5088,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
5069
5088
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
5070
5089
  int __pyx_r;
5071
5090
 
5072
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
5091
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
5073
5092
  * bool
5074
5093
  * """
5075
5094
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -5079,7 +5098,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
5079
5098
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
5080
5099
  goto __pyx_L0;
5081
5100
 
5082
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
5101
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
5083
5102
  *
5084
5103
  *
5085
5104
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -5092,7 +5111,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
5092
5111
  return __pyx_r;
5093
5112
  }
5094
5113
 
5095
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
5114
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
5096
5115
  *
5097
5116
  *
5098
5117
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5103,7 +5122,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
5103
5122
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
5104
5123
  npy_datetime __pyx_r;
5105
5124
 
5106
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
5125
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
5107
5126
  * also needed. That can be found using `get_datetime64_unit`.
5108
5127
  * """
5109
5128
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -5113,7 +5132,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
5113
5132
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
5114
5133
  goto __pyx_L0;
5115
5134
 
5116
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
5135
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
5117
5136
  *
5118
5137
  *
5119
5138
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5126,7 +5145,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
5126
5145
  return __pyx_r;
5127
5146
  }
5128
5147
 
5129
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
5148
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
5130
5149
  *
5131
5150
  *
5132
5151
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5137,7 +5156,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
5137
5156
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
5138
5157
  npy_timedelta __pyx_r;
5139
5158
 
5140
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1045
5159
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1045
5141
5160
  * returns the int64 value underlying scalar numpy timedelta64 object
5142
5161
  * """
5143
5162
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -5147,7 +5166,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
5147
5166
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
5148
5167
  goto __pyx_L0;
5149
5168
 
5150
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
5169
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
5151
5170
  *
5152
5171
  *
5153
5172
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5160,7 +5179,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
5160
5179
  return __pyx_r;
5161
5180
  }
5162
5181
 
5163
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
5182
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
5164
5183
  *
5165
5184
  *
5166
5185
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5171,7 +5190,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
5171
5190
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
5172
5191
  NPY_DATETIMEUNIT __pyx_r;
5173
5192
 
5174
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1052
5193
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1052
5175
5194
  * returns the unit part of the dtype for a numpy datetime64 object.
5176
5195
  * """
5177
5196
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -5179,7 +5198,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
5179
5198
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
5180
5199
  goto __pyx_L0;
5181
5200
 
5182
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
5201
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
5183
5202
  *
5184
5203
  *
5185
5204
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -9885,7 +9904,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
9885
9904
  __Pyx_RefNannyDeclarations
9886
9905
  __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0);
9887
9906
 
9888
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
9907
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
9889
9908
  * __pyx_import_array()
9890
9909
  * except Exception:
9891
9910
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -9896,7 +9915,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
9896
9915
  __Pyx_GOTREF(__pyx_tuple_);
9897
9916
  __Pyx_GIVEREF(__pyx_tuple_);
9898
9917
 
9899
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
9918
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
9900
9919
  * _import_umath()
9901
9920
  * except Exception:
9902
9921
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -10114,33 +10133,33 @@ static int __Pyx_modinit_type_import_code(void) {
10114
10133
  /*--- Type import code ---*/
10115
10134
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 9, __pyx_L1_error)
10116
10135
  __Pyx_GOTREF(__pyx_t_1);
10117
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
10136
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
10118
10137
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
10119
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
10138
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
10120
10139
  #elif CYTHON_COMPILING_IN_LIMITED_API
10121
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
10140
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
10122
10141
  #else
10123
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
10142
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
10124
10143
  #endif
10125
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(2, 9, __pyx_L1_error)
10144
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(2, 9, __pyx_L1_error)
10126
10145
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
10127
10146
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 202, __pyx_L1_error)
10128
10147
  __Pyx_GOTREF(__pyx_t_1);
10129
- __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(1, 202, __pyx_L1_error)
10130
- __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(1, 225, __pyx_L1_error)
10131
- __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(1, 229, __pyx_L1_error)
10132
- __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(1, 238, __pyx_L1_error)
10133
- __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(1, 812, __pyx_L1_error)
10134
- __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(1, 814, __pyx_L1_error)
10135
- __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(1, 816, __pyx_L1_error)
10136
- __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(1, 818, __pyx_L1_error)
10137
- __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(1, 820, __pyx_L1_error)
10138
- __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(1, 822, __pyx_L1_error)
10139
- __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(1, 824, __pyx_L1_error)
10140
- __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(1, 826, __pyx_L1_error)
10141
- __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(1, 828, __pyx_L1_error)
10142
- __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(1, 830, __pyx_L1_error)
10143
- __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(1, 868, __pyx_L1_error)
10148
+ __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(1, 202, __pyx_L1_error)
10149
+ __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(1, 225, __pyx_L1_error)
10150
+ __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(1, 229, __pyx_L1_error)
10151
+ __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(1, 238, __pyx_L1_error)
10152
+ __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(1, 812, __pyx_L1_error)
10153
+ __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(1, 814, __pyx_L1_error)
10154
+ __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(1, 816, __pyx_L1_error)
10155
+ __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(1, 818, __pyx_L1_error)
10156
+ __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(1, 820, __pyx_L1_error)
10157
+ __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(1, 822, __pyx_L1_error)
10158
+ __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(1, 824, __pyx_L1_error)
10159
+ __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(1, 826, __pyx_L1_error)
10160
+ __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(1, 828, __pyx_L1_error)
10161
+ __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(1, 830, __pyx_L1_error)
10162
+ __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(1, 868, __pyx_L1_error)
10144
10163
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
10145
10164
  __Pyx_RefNannyFinishContext();
10146
10165
  return 0;
@@ -11476,11 +11495,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
11476
11495
  {
11477
11496
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
11478
11497
  if (unlikely(eq != 0)) {
11479
- if (unlikely(eq < 0)) return NULL; // error
11498
+ if (unlikely(eq < 0)) return NULL;
11480
11499
  return kwvalues[i];
11481
11500
  }
11482
11501
  }
11483
- return NULL; // not found (no exception set)
11502
+ return NULL;
11484
11503
  }
11485
11504
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
11486
11505
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -11593,7 +11612,7 @@ static int __Pyx_ParseOptionalKeywords(
11593
11612
  if (*name) {
11594
11613
  values[name-argnames] = value;
11595
11614
  #if CYTHON_AVOID_BORROWED_REFS
11596
- Py_INCREF(value); // transfer ownership of value to values
11615
+ Py_INCREF(value);
11597
11616
  Py_DECREF(key);
11598
11617
  #endif
11599
11618
  key = NULL;
@@ -11612,7 +11631,7 @@ static int __Pyx_ParseOptionalKeywords(
11612
11631
  && _PyString_Eq(**name, key)) {
11613
11632
  values[name-argnames] = value;
11614
11633
  #if CYTHON_AVOID_BORROWED_REFS
11615
- value = NULL; // ownership transferred to values
11634
+ value = NULL;
11616
11635
  #endif
11617
11636
  break;
11618
11637
  }
@@ -11644,7 +11663,7 @@ static int __Pyx_ParseOptionalKeywords(
11644
11663
  if (cmp == 0) {
11645
11664
  values[name-argnames] = value;
11646
11665
  #if CYTHON_AVOID_BORROWED_REFS
11647
- value = NULL; // ownership transferred to values
11666
+ value = NULL;
11648
11667
  #endif
11649
11668
  break;
11650
11669
  }
@@ -12291,9 +12310,10 @@ static PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject *key) {
12291
12310
 
12292
12311
  /* UnpackUnboundCMethod */
12293
12312
  static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *args, PyObject *kwargs) {
12313
+ PyObject *result;
12294
12314
  PyObject *selfless_args = PyTuple_GetSlice(args, 1, PyTuple_Size(args));
12295
12315
  if (unlikely(!selfless_args)) return NULL;
12296
- PyObject *result = PyObject_Call(method, selfless_args, kwargs);
12316
+ result = PyObject_Call(method, selfless_args, kwargs);
12297
12317
  Py_DECREF(selfless_args);
12298
12318
  return result;
12299
12319
  }
@@ -12589,9 +12609,10 @@ static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index) {
12589
12609
 
12590
12610
  /* IterFinish */
12591
12611
  static CYTHON_INLINE int __Pyx_IterFinish(void) {
12612
+ PyObject* exc_type;
12592
12613
  __Pyx_PyThreadState_declare
12593
12614
  __Pyx_PyThreadState_assign
12594
- PyObject* exc_type = __Pyx_PyErr_CurrentExceptionType();
12615
+ exc_type = __Pyx_PyErr_CurrentExceptionType();
12595
12616
  if (unlikely(exc_type)) {
12596
12617
  if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
12597
12618
  return -1;
@@ -12636,10 +12657,10 @@ static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key) {
12636
12657
  #endif
12637
12658
 
12638
12659
  /* TypeImport */
12639
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
12640
- #define __PYX_HAVE_RT_ImportType_3_0_7
12641
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
12642
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
12660
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
12661
+ #define __PYX_HAVE_RT_ImportType_3_0_10
12662
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
12663
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
12643
12664
  {
12644
12665
  PyObject *result = 0;
12645
12666
  char warning[200];
@@ -12693,7 +12714,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
12693
12714
  module_name, class_name, size, basicsize+itemsize);
12694
12715
  goto bad;
12695
12716
  }
12696
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
12717
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
12697
12718
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
12698
12719
  PyErr_Format(PyExc_ValueError,
12699
12720
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -12701,7 +12722,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
12701
12722
  module_name, class_name, size, basicsize, basicsize+itemsize);
12702
12723
  goto bad;
12703
12724
  }
12704
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
12725
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
12705
12726
  PyOS_snprintf(warning, sizeof(warning),
12706
12727
  "%s.%s size changed, may indicate binary incompatibility. "
12707
12728
  "Expected %zd from C header, got %zd from PyObject",
@@ -14003,7 +14024,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
14003
14024
  default:
14004
14025
  return NULL;
14005
14026
  }
14006
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
14027
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
14007
14028
  }
14008
14029
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
14009
14030
  {
@@ -14462,7 +14483,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
14462
14483
  #else
14463
14484
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
14464
14485
  #endif
14465
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
14486
+ Py_XDECREF(py_funcname);
14466
14487
  return py_code;
14467
14488
  bad:
14468
14489
  Py_XDECREF(py_funcname);