biotite 0.39.0__cp310-cp310-win_amd64.whl → 0.41.0__cp310-cp310-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.cp310-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.cp310-win_amd64.pyd +0 -0
  12. biotite/sequence/align/kmersimilarity.c +215 -196
  13. biotite/sequence/align/kmersimilarity.cp310-win_amd64.pyd +0 -0
  14. biotite/sequence/align/kmertable.cp310-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.cp310-win_amd64.pyd +0 -0
  18. biotite/sequence/align/localungapped.c +235 -214
  19. biotite/sequence/align/localungapped.cp310-win_amd64.pyd +0 -0
  20. biotite/sequence/align/multiple.c +255 -234
  21. biotite/sequence/align/multiple.cp310-win_amd64.pyd +0 -0
  22. biotite/sequence/align/pairwise.c +274 -253
  23. biotite/sequence/align/pairwise.cp310-win_amd64.pyd +0 -0
  24. biotite/sequence/align/permutation.c +215 -196
  25. biotite/sequence/align/permutation.cp310-win_amd64.pyd +0 -0
  26. biotite/sequence/align/selector.c +217 -197
  27. biotite/sequence/align/selector.cp310-win_amd64.pyd +0 -0
  28. biotite/sequence/align/tracetable.c +215 -195
  29. biotite/sequence/align/tracetable.cp310-win_amd64.pyd +0 -0
  30. biotite/sequence/annotation.py +2 -2
  31. biotite/sequence/codec.c +235 -214
  32. biotite/sequence/codec.cp310-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.cp310-win_amd64.pyd +0 -0
  36. biotite/sequence/phylo/tree.c +227 -202
  37. biotite/sequence/phylo/tree.cp310-win_amd64.pyd +0 -0
  38. biotite/sequence/phylo/upgma.c +215 -196
  39. biotite/sequence/phylo/upgma.cp310-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.cp310-win_amd64.pyd +0 -0
  44. biotite/structure/celllist.c +217 -197
  45. biotite/structure/celllist.cp310-win_amd64.pyd +0 -0
  46. biotite/structure/charges.c +1052 -1101
  47. biotite/structure/charges.cp310-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.cp310-win_amd64.pyd +0 -0
  71. biotite/structure/io/mmtf/convertfile.c +217 -197
  72. biotite/structure/io/mmtf/convertfile.cp310-win_amd64.pyd +0 -0
  73. biotite/structure/io/mmtf/decode.c +225 -204
  74. biotite/structure/io/mmtf/decode.cp310-win_amd64.pyd +0 -0
  75. biotite/structure/io/mmtf/encode.c +215 -196
  76. biotite/structure/io/mmtf/encode.cp310-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.cp310-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.cp310-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.cp310-win_amd64.pyd +0 -0
  103. biotite/structure/sequence.py +112 -0
  104. biotite/structure/superimpose.py +618 -116
  105. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/METADATA +3 -3
  106. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/RECORD +109 -103
  107. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/WHEEL +1 -1
  108. biotite/structure/info/amino_acids.json +0 -1556
  109. biotite/structure/info/amino_acids.py +0 -42
  110. biotite/structure/info/carbohydrates.json +0 -1122
  111. biotite/structure/info/carbohydrates.py +0 -39
  112. biotite/structure/info/intra_bonds.msgpack +0 -0
  113. biotite/structure/info/link_types.msgpack +0 -1
  114. biotite/structure/info/nucleotides.json +0 -772
  115. biotite/structure/info/nucleotides.py +0 -39
  116. biotite/structure/info/residue_masses.msgpack +0 -0
  117. biotite/structure/info/residue_names.msgpack +0 -3
  118. biotite/structure/info/residues.msgpack +0 -0
  119. biotite/structure/io/pdbx/file.py +0 -652
  120. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/LICENSE.rst +0 -0
  121. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.0.7 */
1
+ /* Generated by Cython 3.0.10 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -37,10 +37,10 @@ END: Cython Metadata */
37
37
  #else
38
38
  #define __PYX_EXTRA_ABI_MODULE_NAME ""
39
39
  #endif
40
- #define CYTHON_ABI "3_0_7" __PYX_EXTRA_ABI_MODULE_NAME
40
+ #define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
41
41
  #define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
42
42
  #define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
43
- #define CYTHON_HEX_VERSION 0x030007F0
43
+ #define CYTHON_HEX_VERSION 0x03000AF0
44
44
  #define CYTHON_FUTURE_DIVISION 1
45
45
  #include <stddef.h>
46
46
  #ifndef offsetof
@@ -132,6 +132,8 @@ END: Cython Metadata */
132
132
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
133
133
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
134
134
  #endif
135
+ #undef CYTHON_USE_FREELISTS
136
+ #define CYTHON_USE_FREELISTS 0
135
137
  #elif defined(PYPY_VERSION)
136
138
  #define CYTHON_COMPILING_IN_PYPY 1
137
139
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -193,6 +195,8 @@ END: Cython Metadata */
193
195
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
194
196
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
195
197
  #endif
198
+ #undef CYTHON_USE_FREELISTS
199
+ #define CYTHON_USE_FREELISTS 0
196
200
  #elif defined(CYTHON_LIMITED_API)
197
201
  #ifdef Py_LIMITED_API
198
202
  #undef __PYX_LIMITED_VERSION_HEX
@@ -254,6 +258,8 @@ END: Cython Metadata */
254
258
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
255
259
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
256
260
  #endif
261
+ #undef CYTHON_USE_FREELISTS
262
+ #define CYTHON_USE_FREELISTS 0
257
263
  #elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
258
264
  #define CYTHON_COMPILING_IN_PYPY 0
259
265
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -263,11 +269,17 @@ END: Cython Metadata */
263
269
  #ifndef CYTHON_USE_TYPE_SLOTS
264
270
  #define CYTHON_USE_TYPE_SLOTS 1
265
271
  #endif
272
+ #ifndef CYTHON_USE_TYPE_SPECS
273
+ #define CYTHON_USE_TYPE_SPECS 0
274
+ #endif
266
275
  #undef CYTHON_USE_PYTYPE_LOOKUP
267
276
  #define CYTHON_USE_PYTYPE_LOOKUP 0
268
277
  #ifndef CYTHON_USE_ASYNC_SLOTS
269
278
  #define CYTHON_USE_ASYNC_SLOTS 1
270
279
  #endif
280
+ #ifndef CYTHON_USE_PYLONG_INTERNALS
281
+ #define CYTHON_USE_PYLONG_INTERNALS 0
282
+ #endif
271
283
  #undef CYTHON_USE_PYLIST_INTERNALS
272
284
  #define CYTHON_USE_PYLIST_INTERNALS 0
273
285
  #ifndef CYTHON_USE_UNICODE_INTERNALS
@@ -275,8 +287,6 @@ END: Cython Metadata */
275
287
  #endif
276
288
  #undef CYTHON_USE_UNICODE_WRITER
277
289
  #define CYTHON_USE_UNICODE_WRITER 0
278
- #undef CYTHON_USE_PYLONG_INTERNALS
279
- #define CYTHON_USE_PYLONG_INTERNALS 0
280
290
  #ifndef CYTHON_AVOID_BORROWED_REFS
281
291
  #define CYTHON_AVOID_BORROWED_REFS 0
282
292
  #endif
@@ -288,11 +298,22 @@ END: Cython Metadata */
288
298
  #endif
289
299
  #undef CYTHON_FAST_THREAD_STATE
290
300
  #define CYTHON_FAST_THREAD_STATE 0
301
+ #undef CYTHON_FAST_GIL
302
+ #define CYTHON_FAST_GIL 0
303
+ #ifndef CYTHON_METH_FASTCALL
304
+ #define CYTHON_METH_FASTCALL 1
305
+ #endif
291
306
  #undef CYTHON_FAST_PYCALL
292
307
  #define CYTHON_FAST_PYCALL 0
308
+ #ifndef CYTHON_PEP487_INIT_SUBCLASS
309
+ #define CYTHON_PEP487_INIT_SUBCLASS 1
310
+ #endif
293
311
  #ifndef CYTHON_PEP489_MULTI_PHASE_INIT
294
312
  #define CYTHON_PEP489_MULTI_PHASE_INIT 1
295
313
  #endif
314
+ #ifndef CYTHON_USE_MODULE_STATE
315
+ #define CYTHON_USE_MODULE_STATE 0
316
+ #endif
296
317
  #ifndef CYTHON_USE_TP_FINALIZE
297
318
  #define CYTHON_USE_TP_FINALIZE 1
298
319
  #endif
@@ -300,6 +321,12 @@ END: Cython Metadata */
300
321
  #define CYTHON_USE_DICT_VERSIONS 0
301
322
  #undef CYTHON_USE_EXC_INFO_STACK
302
323
  #define CYTHON_USE_EXC_INFO_STACK 0
324
+ #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
325
+ #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
326
+ #endif
327
+ #ifndef CYTHON_USE_FREELISTS
328
+ #define CYTHON_USE_FREELISTS 0
329
+ #endif
303
330
  #else
304
331
  #define CYTHON_COMPILING_IN_PYPY 0
305
332
  #define CYTHON_COMPILING_IN_CPYTHON 1
@@ -390,6 +417,9 @@ END: Cython Metadata */
390
417
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
391
418
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
392
419
  #endif
420
+ #ifndef CYTHON_USE_FREELISTS
421
+ #define CYTHON_USE_FREELISTS 1
422
+ #endif
393
423
  #endif
394
424
  #if !defined(CYTHON_FAST_PYCCALL)
395
425
  #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
@@ -582,14 +612,14 @@ END: Cython Metadata */
582
612
  PyObject *exception_table = NULL;
583
613
  PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
584
614
  #if __PYX_LIMITED_VERSION_HEX < 0x030B0000
585
- PyObject *version_info; // borrowed
615
+ PyObject *version_info;
586
616
  PyObject *py_minor_version = NULL;
587
617
  #endif
588
618
  long minor_version = 0;
589
619
  PyObject *type, *value, *traceback;
590
620
  PyErr_Fetch(&type, &value, &traceback);
591
621
  #if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
592
- minor_version = 11; // we don't yet need to distinguish between versions > 11
622
+ minor_version = 11;
593
623
  #else
594
624
  if (!(version_info = PySys_GetObject("version_info"))) goto end;
595
625
  if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
@@ -647,7 +677,7 @@ END: Cython Metadata */
647
677
  PyObject *fv, PyObject *cell, PyObject* fn,
648
678
  PyObject *name, int fline, PyObject *lnos) {
649
679
  PyCodeObject *result;
650
- PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0); // we don't have access to __pyx_empty_bytes here
680
+ PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
651
681
  if (!empty_bytes) return NULL;
652
682
  result =
653
683
  #if PY_VERSION_HEX >= 0x030C0000
@@ -733,8 +763,13 @@ END: Cython Metadata */
733
763
  typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
734
764
  Py_ssize_t nargs, PyObject *kwnames);
735
765
  #else
736
- #define __Pyx_PyCFunctionFast _PyCFunctionFast
737
- #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
766
+ #if PY_VERSION_HEX >= 0x030d00A4
767
+ # define __Pyx_PyCFunctionFast PyCFunctionFast
768
+ # define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
769
+ #else
770
+ # define __Pyx_PyCFunctionFast _PyCFunctionFast
771
+ # define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
772
+ #endif
738
773
  #endif
739
774
  #if CYTHON_METH_FASTCALL
740
775
  #define __Pyx_METH_FASTCALL METH_FASTCALL
@@ -1086,7 +1121,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
1086
1121
  #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
1087
1122
  #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
1088
1123
  #endif
1089
- #if PY_VERSION_HEX >= 0x030d00A1
1124
+ #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
1090
1125
  #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
1091
1126
  #else
1092
1127
  static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
@@ -1173,7 +1208,7 @@ static CYTHON_INLINE float __PYX_NAN() {
1173
1208
  #endif
1174
1209
 
1175
1210
  #define __PYX_MARK_ERR_POS(f_index, lineno) \
1176
- { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1211
+ { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1177
1212
  #define __PYX_ERR(f_index, lineno, Ln_error) \
1178
1213
  { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
1179
1214
 
@@ -1288,24 +1323,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1288
1323
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1289
1324
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1290
1325
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1291
- #if CYTHON_COMPILING_IN_LIMITED_API
1292
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1293
- {
1294
- const wchar_t *u_end = u;
1295
- while (*u_end++) ;
1296
- return (size_t)(u_end - u - 1);
1297
- }
1298
- #else
1299
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1300
- {
1301
- const Py_UNICODE *u_end = u;
1302
- while (*u_end++) ;
1303
- return (size_t)(u_end - u - 1);
1304
- }
1305
- #endif
1306
1326
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1307
- #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1308
- #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1309
1327
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1310
1328
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1311
1329
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -1355,7 +1373,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1355
1373
  #endif
1356
1374
  typedef Py_ssize_t __Pyx_compact_pylong;
1357
1375
  typedef size_t __Pyx_compact_upylong;
1358
- #else // Py < 3.12
1376
+ #else
1359
1377
  #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
1360
1378
  #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
1361
1379
  #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
@@ -1645,7 +1663,7 @@ typedef struct {
1645
1663
 
1646
1664
  /* #### Code section: numeric_typedefs ### */
1647
1665
 
1648
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1666
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1649
1667
  * # in Cython to enable them only on the right systems.
1650
1668
  *
1651
1669
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1654,7 +1672,7 @@ typedef struct {
1654
1672
  */
1655
1673
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1656
1674
 
1657
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1675
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1658
1676
  *
1659
1677
  * ctypedef npy_int8 int8_t
1660
1678
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1663,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1663
1681
  */
1664
1682
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1665
1683
 
1666
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
1684
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
1667
1685
  * ctypedef npy_int8 int8_t
1668
1686
  * ctypedef npy_int16 int16_t
1669
1687
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1672,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1672
1690
  */
1673
1691
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1674
1692
 
1675
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":735
1693
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":735
1676
1694
  * ctypedef npy_int16 int16_t
1677
1695
  * ctypedef npy_int32 int32_t
1678
1696
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1681,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1681
1699
  */
1682
1700
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1683
1701
 
1684
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1702
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1685
1703
  * #ctypedef npy_int128 int128_t
1686
1704
  *
1687
1705
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1690,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1690
1708
  */
1691
1709
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1692
1710
 
1693
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1711
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1694
1712
  *
1695
1713
  * ctypedef npy_uint8 uint8_t
1696
1714
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1699,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1699
1717
  */
1700
1718
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1701
1719
 
1702
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
1720
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
1703
1721
  * ctypedef npy_uint8 uint8_t
1704
1722
  * ctypedef npy_uint16 uint16_t
1705
1723
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1708,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1708
1726
  */
1709
1727
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1710
1728
 
1711
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":742
1729
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":742
1712
1730
  * ctypedef npy_uint16 uint16_t
1713
1731
  * ctypedef npy_uint32 uint32_t
1714
1732
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1717,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1717
1735
  */
1718
1736
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1719
1737
 
1720
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
1738
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
1721
1739
  * #ctypedef npy_uint128 uint128_t
1722
1740
  *
1723
1741
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1726,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1726
1744
  */
1727
1745
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1728
1746
 
1729
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":747
1747
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":747
1730
1748
  *
1731
1749
  * ctypedef npy_float32 float32_t
1732
1750
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1735,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1735
1753
  */
1736
1754
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1737
1755
 
1738
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
1756
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
1739
1757
  * # The int types are mapped a bit surprising --
1740
1758
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1741
1759
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1744,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1744
1762
  */
1745
1763
  typedef npy_long __pyx_t_5numpy_int_t;
1746
1764
 
1747
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1765
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1748
1766
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1749
1767
  * ctypedef npy_long int_t
1750
1768
  * ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1753
1771
  */
1754
1772
  typedef npy_longlong __pyx_t_5numpy_long_t;
1755
1773
 
1756
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1774
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1757
1775
  * ctypedef npy_long int_t
1758
1776
  * ctypedef npy_longlong long_t
1759
1777
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
1762
1780
  */
1763
1781
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1764
1782
 
1765
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1783
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1766
1784
  * ctypedef npy_longlong longlong_t
1767
1785
  *
1768
1786
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1771,7 +1789,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1771
1789
  */
1772
1790
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1773
1791
 
1774
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1792
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1775
1793
  *
1776
1794
  * ctypedef npy_ulong uint_t
1777
1795
  * ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
@@ -1780,7 +1798,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1780
1798
  */
1781
1799
  typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1782
1800
 
1783
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":762
1801
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":762
1784
1802
  * ctypedef npy_ulong uint_t
1785
1803
  * ctypedef npy_ulonglong ulong_t
1786
1804
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1789,7 +1807,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1789
1807
  */
1790
1808
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1791
1809
 
1792
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1810
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1793
1811
  * ctypedef npy_ulonglong ulonglong_t
1794
1812
  *
1795
1813
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1798,7 +1816,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1798
1816
  */
1799
1817
  typedef npy_intp __pyx_t_5numpy_intp_t;
1800
1818
 
1801
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1819
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1802
1820
  *
1803
1821
  * ctypedef npy_intp intp_t
1804
1822
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1807,7 +1825,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1807
1825
  */
1808
1826
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1809
1827
 
1810
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1828
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1811
1829
  * ctypedef npy_uintp uintp_t
1812
1830
  *
1813
1831
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1816,7 +1834,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1816
1834
  */
1817
1835
  typedef npy_double __pyx_t_5numpy_float_t;
1818
1836
 
1819
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1837
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1820
1838
  *
1821
1839
  * ctypedef npy_double float_t
1822
1840
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1825,7 +1843,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1825
1843
  */
1826
1844
  typedef npy_double __pyx_t_5numpy_double_t;
1827
1845
 
1828
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1846
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1829
1847
  * ctypedef npy_double float_t
1830
1848
  * ctypedef npy_double double_t
1831
1849
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1893,7 +1911,7 @@ struct __pyx_MemviewEnum_obj;
1893
1911
  struct __pyx_memoryview_obj;
1894
1912
  struct __pyx_memoryviewslice_obj;
1895
1913
 
1896
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1914
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1897
1915
  * ctypedef npy_longdouble longdouble_t
1898
1916
  *
1899
1917
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1902,7 +1920,7 @@ struct __pyx_memoryviewslice_obj;
1902
1920
  */
1903
1921
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1904
1922
 
1905
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1923
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1906
1924
  *
1907
1925
  * ctypedef npy_cfloat cfloat_t
1908
1926
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1911,7 +1929,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1911
1929
  */
1912
1930
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1913
1931
 
1914
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
1932
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
1915
1933
  * ctypedef npy_cfloat cfloat_t
1916
1934
  * ctypedef npy_cdouble cdouble_t
1917
1935
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1920,7 +1938,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1920
1938
  */
1921
1939
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1922
1940
 
1923
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":775
1941
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":775
1924
1942
  * ctypedef npy_clongdouble clongdouble_t
1925
1943
  *
1926
1944
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2226,8 +2244,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2226
2244
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2227
2245
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2228
2246
  #else
2229
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2230
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2247
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2248
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2231
2249
  #endif
2232
2250
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2233
2251
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2243,8 +2261,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2243
2261
  #else
2244
2262
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2245
2263
  #endif
2246
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2247
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2264
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2265
+ to have the same reference counting */
2266
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2248
2267
  #else
2249
2268
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2250
2269
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2698,22 +2717,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2698
2717
  #endif
2699
2718
 
2700
2719
  /* TypeImport.proto */
2701
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2702
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2720
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2721
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2703
2722
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2704
2723
  #include <stdalign.h>
2705
2724
  #endif
2706
2725
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2707
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2726
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2708
2727
  #else
2709
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2728
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2710
2729
  #endif
2711
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2712
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2713
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2714
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2730
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2731
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2732
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2733
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2715
2734
  };
2716
- 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);
2735
+ 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);
2717
2736
  #endif
2718
2737
 
2719
2738
  /* FetchSharedCythonModule.proto */
@@ -2806,7 +2825,7 @@ typedef struct {
2806
2825
  #endif
2807
2826
  void *defaults;
2808
2827
  int defaults_pyobjects;
2809
- size_t defaults_size; // used by FusedFunction for copying defaults
2828
+ size_t defaults_size;
2810
2829
  int flags;
2811
2830
  PyObject *defaults_tuple;
2812
2831
  PyObject *defaults_kwdict;
@@ -18175,7 +18194,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18175
18194
  return __pyx_r;
18176
18195
  }
18177
18196
 
18178
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
18197
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
18179
18198
  *
18180
18199
  * @property
18181
18200
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18186,7 +18205,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18186
18205
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
18187
18206
  PyObject *__pyx_r;
18188
18207
 
18189
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":249
18208
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":249
18190
18209
  * """Returns a borrowed reference to the object owning the data/memory.
18191
18210
  * """
18192
18211
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -18196,7 +18215,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18196
18215
  __pyx_r = PyArray_BASE(__pyx_v_self);
18197
18216
  goto __pyx_L0;
18198
18217
 
18199
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
18218
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
18200
18219
  *
18201
18220
  * @property
18202
18221
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18209,7 +18228,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18209
18228
  return __pyx_r;
18210
18229
  }
18211
18230
 
18212
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
18231
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
18213
18232
  *
18214
18233
  * @property
18215
18234
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18223,7 +18242,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18223
18242
  PyArray_Descr *__pyx_t_1;
18224
18243
  __Pyx_RefNannySetupContext("descr", 1);
18225
18244
 
18226
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":255
18245
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":255
18227
18246
  * """Returns an owned reference to the dtype of the array.
18228
18247
  * """
18229
18248
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -18236,7 +18255,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18236
18255
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
18237
18256
  goto __pyx_L0;
18238
18257
 
18239
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
18258
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
18240
18259
  *
18241
18260
  * @property
18242
18261
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18251,7 +18270,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18251
18270
  return __pyx_r;
18252
18271
  }
18253
18272
 
18254
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
18273
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
18255
18274
  *
18256
18275
  * @property
18257
18276
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18262,7 +18281,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18262
18281
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
18263
18282
  int __pyx_r;
18264
18283
 
18265
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":261
18284
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":261
18266
18285
  * """Returns the number of dimensions in the array.
18267
18286
  * """
18268
18287
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -18272,7 +18291,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18272
18291
  __pyx_r = PyArray_NDIM(__pyx_v_self);
18273
18292
  goto __pyx_L0;
18274
18293
 
18275
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
18294
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
18276
18295
  *
18277
18296
  * @property
18278
18297
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18285,7 +18304,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18285
18304
  return __pyx_r;
18286
18305
  }
18287
18306
 
18288
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
18307
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
18289
18308
  *
18290
18309
  * @property
18291
18310
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18296,7 +18315,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18296
18315
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
18297
18316
  npy_intp *__pyx_r;
18298
18317
 
18299
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":269
18318
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":269
18300
18319
  * Can return NULL for 0-dimensional arrays.
18301
18320
  * """
18302
18321
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -18306,7 +18325,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18306
18325
  __pyx_r = PyArray_DIMS(__pyx_v_self);
18307
18326
  goto __pyx_L0;
18308
18327
 
18309
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
18328
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
18310
18329
  *
18311
18330
  * @property
18312
18331
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18319,7 +18338,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18319
18338
  return __pyx_r;
18320
18339
  }
18321
18340
 
18322
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
18341
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
18323
18342
  *
18324
18343
  * @property
18325
18344
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18330,7 +18349,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18330
18349
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
18331
18350
  npy_intp *__pyx_r;
18332
18351
 
18333
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":276
18352
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":276
18334
18353
  * The number of elements matches the number of dimensions of the array (ndim).
18335
18354
  * """
18336
18355
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -18340,7 +18359,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18340
18359
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
18341
18360
  goto __pyx_L0;
18342
18361
 
18343
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
18362
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
18344
18363
  *
18345
18364
  * @property
18346
18365
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18353,7 +18372,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18353
18372
  return __pyx_r;
18354
18373
  }
18355
18374
 
18356
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
18375
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
18357
18376
  *
18358
18377
  * @property
18359
18378
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18364,7 +18383,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18364
18383
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
18365
18384
  npy_intp __pyx_r;
18366
18385
 
18367
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":282
18386
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":282
18368
18387
  * """Returns the total size (in number of elements) of the array.
18369
18388
  * """
18370
18389
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -18374,7 +18393,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18374
18393
  __pyx_r = PyArray_SIZE(__pyx_v_self);
18375
18394
  goto __pyx_L0;
18376
18395
 
18377
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
18396
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
18378
18397
  *
18379
18398
  * @property
18380
18399
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18387,7 +18406,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18387
18406
  return __pyx_r;
18388
18407
  }
18389
18408
 
18390
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
18409
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
18391
18410
  *
18392
18411
  * @property
18393
18412
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18398,7 +18417,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18398
18417
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
18399
18418
  char *__pyx_r;
18400
18419
 
18401
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":291
18420
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":291
18402
18421
  * of `PyArray_DATA()` instead, which returns a 'void*'.
18403
18422
  * """
18404
18423
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -18408,7 +18427,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18408
18427
  __pyx_r = PyArray_BYTES(__pyx_v_self);
18409
18428
  goto __pyx_L0;
18410
18429
 
18411
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
18430
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
18412
18431
  *
18413
18432
  * @property
18414
18433
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18421,7 +18440,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18421
18440
  return __pyx_r;
18422
18441
  }
18423
18442
 
18424
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18443
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18425
18444
  * ctypedef npy_cdouble complex_t
18426
18445
  *
18427
18446
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18438,7 +18457,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18438
18457
  int __pyx_clineno = 0;
18439
18458
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
18440
18459
 
18441
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":778
18460
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":778
18442
18461
  *
18443
18462
  * cdef inline object PyArray_MultiIterNew1(a):
18444
18463
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -18452,7 +18471,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18452
18471
  __pyx_t_1 = 0;
18453
18472
  goto __pyx_L0;
18454
18473
 
18455
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18474
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18456
18475
  * ctypedef npy_cdouble complex_t
18457
18476
  *
18458
18477
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18471,7 +18490,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18471
18490
  return __pyx_r;
18472
18491
  }
18473
18492
 
18474
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18493
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18475
18494
  * return PyArray_MultiIterNew(1, <void*>a)
18476
18495
  *
18477
18496
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18488,7 +18507,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18488
18507
  int __pyx_clineno = 0;
18489
18508
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
18490
18509
 
18491
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":781
18510
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":781
18492
18511
  *
18493
18512
  * cdef inline object PyArray_MultiIterNew2(a, b):
18494
18513
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -18502,7 +18521,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18502
18521
  __pyx_t_1 = 0;
18503
18522
  goto __pyx_L0;
18504
18523
 
18505
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18524
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18506
18525
  * return PyArray_MultiIterNew(1, <void*>a)
18507
18526
  *
18508
18527
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18521,7 +18540,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18521
18540
  return __pyx_r;
18522
18541
  }
18523
18542
 
18524
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18543
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18525
18544
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18526
18545
  *
18527
18546
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18538,7 +18557,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18538
18557
  int __pyx_clineno = 0;
18539
18558
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
18540
18559
 
18541
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":784
18560
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":784
18542
18561
  *
18543
18562
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
18544
18563
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -18552,7 +18571,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18552
18571
  __pyx_t_1 = 0;
18553
18572
  goto __pyx_L0;
18554
18573
 
18555
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18574
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18556
18575
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18557
18576
  *
18558
18577
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18571,7 +18590,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18571
18590
  return __pyx_r;
18572
18591
  }
18573
18592
 
18574
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18593
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18575
18594
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18576
18595
  *
18577
18596
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18588,7 +18607,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18588
18607
  int __pyx_clineno = 0;
18589
18608
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
18590
18609
 
18591
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":787
18610
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":787
18592
18611
  *
18593
18612
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
18594
18613
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -18602,7 +18621,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18602
18621
  __pyx_t_1 = 0;
18603
18622
  goto __pyx_L0;
18604
18623
 
18605
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18624
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18606
18625
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18607
18626
  *
18608
18627
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18621,7 +18640,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18621
18640
  return __pyx_r;
18622
18641
  }
18623
18642
 
18624
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18643
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18625
18644
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18626
18645
  *
18627
18646
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18638,7 +18657,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18638
18657
  int __pyx_clineno = 0;
18639
18658
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
18640
18659
 
18641
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
18660
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
18642
18661
  *
18643
18662
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
18644
18663
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -18652,7 +18671,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18652
18671
  __pyx_t_1 = 0;
18653
18672
  goto __pyx_L0;
18654
18673
 
18655
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18674
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18656
18675
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18657
18676
  *
18658
18677
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18671,7 +18690,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18671
18690
  return __pyx_r;
18672
18691
  }
18673
18692
 
18674
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
18693
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
18675
18694
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18676
18695
  *
18677
18696
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18685,7 +18704,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18685
18704
  int __pyx_t_1;
18686
18705
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
18687
18706
 
18688
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
18707
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
18689
18708
  *
18690
18709
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18691
18710
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18695,7 +18714,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18695
18714
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
18696
18715
  if (__pyx_t_1) {
18697
18716
 
18698
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":794
18717
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":794
18699
18718
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18700
18719
  * if PyDataType_HASSUBARRAY(d):
18701
18720
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -18707,7 +18726,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18707
18726
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
18708
18727
  goto __pyx_L0;
18709
18728
 
18710
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
18729
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
18711
18730
  *
18712
18731
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18713
18732
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18716,7 +18735,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18716
18735
  */
18717
18736
  }
18718
18737
 
18719
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":796
18738
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":796
18720
18739
  * return <tuple>d.subarray.shape
18721
18740
  * else:
18722
18741
  * return () # <<<<<<<<<<<<<<
@@ -18730,7 +18749,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18730
18749
  goto __pyx_L0;
18731
18750
  }
18732
18751
 
18733
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
18752
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
18734
18753
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18735
18754
  *
18736
18755
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18745,7 +18764,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18745
18764
  return __pyx_r;
18746
18765
  }
18747
18766
 
18748
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
18767
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
18749
18768
  * int _import_umath() except -1
18750
18769
  *
18751
18770
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -18755,7 +18774,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18755
18774
 
18756
18775
  static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
18757
18776
 
18758
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
18777
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
18759
18778
  *
18760
18779
  * cdef inline void set_array_base(ndarray arr, object base):
18761
18780
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -18764,7 +18783,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18764
18783
  */
18765
18784
  Py_INCREF(__pyx_v_base);
18766
18785
 
18767
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
18786
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
18768
18787
  * cdef inline void set_array_base(ndarray arr, object base):
18769
18788
  * Py_INCREF(base) # important to do this before stealing the reference below!
18770
18789
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -18773,7 +18792,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18773
18792
  */
18774
18793
  (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
18775
18794
 
18776
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
18795
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
18777
18796
  * int _import_umath() except -1
18778
18797
  *
18779
18798
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -18784,7 +18803,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18784
18803
  /* function exit code */
18785
18804
  }
18786
18805
 
18787
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
18806
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
18788
18807
  * PyArray_SetBaseObject(arr, base)
18789
18808
  *
18790
18809
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -18799,7 +18818,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18799
18818
  int __pyx_t_1;
18800
18819
  __Pyx_RefNannySetupContext("get_array_base", 1);
18801
18820
 
18802
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
18821
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
18803
18822
  *
18804
18823
  * cdef inline object get_array_base(ndarray arr):
18805
18824
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -18808,7 +18827,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18808
18827
  */
18809
18828
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
18810
18829
 
18811
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
18830
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
18812
18831
  * cdef inline object get_array_base(ndarray arr):
18813
18832
  * base = PyArray_BASE(arr)
18814
18833
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -18818,7 +18837,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18818
18837
  __pyx_t_1 = (__pyx_v_base == NULL);
18819
18838
  if (__pyx_t_1) {
18820
18839
 
18821
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
18840
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
18822
18841
  * base = PyArray_BASE(arr)
18823
18842
  * if base is NULL:
18824
18843
  * return None # <<<<<<<<<<<<<<
@@ -18829,7 +18848,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18829
18848
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
18830
18849
  goto __pyx_L0;
18831
18850
 
18832
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
18851
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
18833
18852
  * cdef inline object get_array_base(ndarray arr):
18834
18853
  * base = PyArray_BASE(arr)
18835
18854
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -18838,7 +18857,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18838
18857
  */
18839
18858
  }
18840
18859
 
18841
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":979
18860
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":979
18842
18861
  * if base is NULL:
18843
18862
  * return None
18844
18863
  * return <object>base # <<<<<<<<<<<<<<
@@ -18850,7 +18869,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18850
18869
  __pyx_r = ((PyObject *)__pyx_v_base);
18851
18870
  goto __pyx_L0;
18852
18871
 
18853
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
18872
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
18854
18873
  * PyArray_SetBaseObject(arr, base)
18855
18874
  *
18856
18875
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -18865,7 +18884,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18865
18884
  return __pyx_r;
18866
18885
  }
18867
18886
 
18868
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
18887
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
18869
18888
  * # Versions of the import_* functions which are more suitable for
18870
18889
  * # Cython code.
18871
18890
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -18889,7 +18908,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18889
18908
  int __pyx_clineno = 0;
18890
18909
  __Pyx_RefNannySetupContext("import_array", 1);
18891
18910
 
18892
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
18911
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
18893
18912
  * # Cython code.
18894
18913
  * cdef inline int import_array() except -1:
18895
18914
  * try: # <<<<<<<<<<<<<<
@@ -18905,7 +18924,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18905
18924
  __Pyx_XGOTREF(__pyx_t_3);
18906
18925
  /*try:*/ {
18907
18926
 
18908
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
18927
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
18909
18928
  * cdef inline int import_array() except -1:
18910
18929
  * try:
18911
18930
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -18914,7 +18933,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18914
18933
  */
18915
18934
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 985, __pyx_L3_error)
18916
18935
 
18917
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
18936
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
18918
18937
  * # Cython code.
18919
18938
  * cdef inline int import_array() except -1:
18920
18939
  * try: # <<<<<<<<<<<<<<
@@ -18928,7 +18947,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18928
18947
  goto __pyx_L8_try_end;
18929
18948
  __pyx_L3_error:;
18930
18949
 
18931
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
18950
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
18932
18951
  * try:
18933
18952
  * __pyx_import_array()
18934
18953
  * except Exception: # <<<<<<<<<<<<<<
@@ -18943,7 +18962,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18943
18962
  __Pyx_XGOTREF(__pyx_t_6);
18944
18963
  __Pyx_XGOTREF(__pyx_t_7);
18945
18964
 
18946
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
18965
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
18947
18966
  * __pyx_import_array()
18948
18967
  * except Exception:
18949
18968
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -18958,7 +18977,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18958
18977
  }
18959
18978
  goto __pyx_L5_except_error;
18960
18979
 
18961
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
18980
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
18962
18981
  * # Cython code.
18963
18982
  * cdef inline int import_array() except -1:
18964
18983
  * try: # <<<<<<<<<<<<<<
@@ -18974,7 +18993,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18974
18993
  __pyx_L8_try_end:;
18975
18994
  }
18976
18995
 
18977
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
18996
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
18978
18997
  * # Versions of the import_* functions which are more suitable for
18979
18998
  * # Cython code.
18980
18999
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -18997,7 +19016,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18997
19016
  return __pyx_r;
18998
19017
  }
18999
19018
 
19000
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19019
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19001
19020
  * raise ImportError("numpy.core.multiarray failed to import")
19002
19021
  *
19003
19022
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19021,7 +19040,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19021
19040
  int __pyx_clineno = 0;
19022
19041
  __Pyx_RefNannySetupContext("import_umath", 1);
19023
19042
 
19024
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19043
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19025
19044
  *
19026
19045
  * cdef inline int import_umath() except -1:
19027
19046
  * try: # <<<<<<<<<<<<<<
@@ -19037,7 +19056,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19037
19056
  __Pyx_XGOTREF(__pyx_t_3);
19038
19057
  /*try:*/ {
19039
19058
 
19040
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
19059
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
19041
19060
  * cdef inline int import_umath() except -1:
19042
19061
  * try:
19043
19062
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19046,7 +19065,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19046
19065
  */
19047
19066
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 991, __pyx_L3_error)
19048
19067
 
19049
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19068
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19050
19069
  *
19051
19070
  * cdef inline int import_umath() except -1:
19052
19071
  * try: # <<<<<<<<<<<<<<
@@ -19060,7 +19079,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19060
19079
  goto __pyx_L8_try_end;
19061
19080
  __pyx_L3_error:;
19062
19081
 
19063
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19082
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19064
19083
  * try:
19065
19084
  * _import_umath()
19066
19085
  * except Exception: # <<<<<<<<<<<<<<
@@ -19075,7 +19094,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19075
19094
  __Pyx_XGOTREF(__pyx_t_6);
19076
19095
  __Pyx_XGOTREF(__pyx_t_7);
19077
19096
 
19078
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19097
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19079
19098
  * _import_umath()
19080
19099
  * except Exception:
19081
19100
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19090,7 +19109,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19090
19109
  }
19091
19110
  goto __pyx_L5_except_error;
19092
19111
 
19093
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19112
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19094
19113
  *
19095
19114
  * cdef inline int import_umath() except -1:
19096
19115
  * try: # <<<<<<<<<<<<<<
@@ -19106,7 +19125,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19106
19125
  __pyx_L8_try_end:;
19107
19126
  }
19108
19127
 
19109
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19128
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19110
19129
  * raise ImportError("numpy.core.multiarray failed to import")
19111
19130
  *
19112
19131
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19129,7 +19148,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19129
19148
  return __pyx_r;
19130
19149
  }
19131
19150
 
19132
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19151
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19133
19152
  * raise ImportError("numpy.core.umath failed to import")
19134
19153
  *
19135
19154
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19153,7 +19172,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19153
19172
  int __pyx_clineno = 0;
19154
19173
  __Pyx_RefNannySetupContext("import_ufunc", 1);
19155
19174
 
19156
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19175
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19157
19176
  *
19158
19177
  * cdef inline int import_ufunc() except -1:
19159
19178
  * try: # <<<<<<<<<<<<<<
@@ -19169,7 +19188,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19169
19188
  __Pyx_XGOTREF(__pyx_t_3);
19170
19189
  /*try:*/ {
19171
19190
 
19172
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
19191
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
19173
19192
  * cdef inline int import_ufunc() except -1:
19174
19193
  * try:
19175
19194
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19178,7 +19197,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19178
19197
  */
19179
19198
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 997, __pyx_L3_error)
19180
19199
 
19181
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19200
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19182
19201
  *
19183
19202
  * cdef inline int import_ufunc() except -1:
19184
19203
  * try: # <<<<<<<<<<<<<<
@@ -19192,7 +19211,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19192
19211
  goto __pyx_L8_try_end;
19193
19212
  __pyx_L3_error:;
19194
19213
 
19195
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
19214
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
19196
19215
  * try:
19197
19216
  * _import_umath()
19198
19217
  * except Exception: # <<<<<<<<<<<<<<
@@ -19207,7 +19226,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19207
19226
  __Pyx_XGOTREF(__pyx_t_6);
19208
19227
  __Pyx_XGOTREF(__pyx_t_7);
19209
19228
 
19210
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19229
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19211
19230
  * _import_umath()
19212
19231
  * except Exception:
19213
19232
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19222,7 +19241,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19222
19241
  }
19223
19242
  goto __pyx_L5_except_error;
19224
19243
 
19225
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19244
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19226
19245
  *
19227
19246
  * cdef inline int import_ufunc() except -1:
19228
19247
  * try: # <<<<<<<<<<<<<<
@@ -19238,7 +19257,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19238
19257
  __pyx_L8_try_end:;
19239
19258
  }
19240
19259
 
19241
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19260
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19242
19261
  * raise ImportError("numpy.core.umath failed to import")
19243
19262
  *
19244
19263
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19261,7 +19280,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19261
19280
  return __pyx_r;
19262
19281
  }
19263
19282
 
19264
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
19283
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
19265
19284
  *
19266
19285
  *
19267
19286
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19272,7 +19291,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19272
19291
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
19273
19292
  int __pyx_r;
19274
19293
 
19275
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19294
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19276
19295
  * bool
19277
19296
  * """
19278
19297
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -19282,7 +19301,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19282
19301
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
19283
19302
  goto __pyx_L0;
19284
19303
 
19285
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
19304
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
19286
19305
  *
19287
19306
  *
19288
19307
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19295,7 +19314,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19295
19314
  return __pyx_r;
19296
19315
  }
19297
19316
 
19298
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
19317
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
19299
19318
  *
19300
19319
  *
19301
19320
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19306,7 +19325,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19306
19325
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
19307
19326
  int __pyx_r;
19308
19327
 
19309
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19328
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19310
19329
  * bool
19311
19330
  * """
19312
19331
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -19316,7 +19335,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19316
19335
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
19317
19336
  goto __pyx_L0;
19318
19337
 
19319
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
19338
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
19320
19339
  *
19321
19340
  *
19322
19341
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19329,7 +19348,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19329
19348
  return __pyx_r;
19330
19349
  }
19331
19350
 
19332
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
19351
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
19333
19352
  *
19334
19353
  *
19335
19354
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19340,7 +19359,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19340
19359
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
19341
19360
  npy_datetime __pyx_r;
19342
19361
 
19343
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19362
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19344
19363
  * also needed. That can be found using `get_datetime64_unit`.
19345
19364
  * """
19346
19365
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19350,7 +19369,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19350
19369
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
19351
19370
  goto __pyx_L0;
19352
19371
 
19353
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
19372
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
19354
19373
  *
19355
19374
  *
19356
19375
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19363,7 +19382,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19363
19382
  return __pyx_r;
19364
19383
  }
19365
19384
 
19366
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
19385
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
19367
19386
  *
19368
19387
  *
19369
19388
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19374,7 +19393,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19374
19393
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
19375
19394
  npy_timedelta __pyx_r;
19376
19395
 
19377
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19396
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19378
19397
  * returns the int64 value underlying scalar numpy timedelta64 object
19379
19398
  * """
19380
19399
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19384,7 +19403,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19384
19403
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
19385
19404
  goto __pyx_L0;
19386
19405
 
19387
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
19406
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
19388
19407
  *
19389
19408
  *
19390
19409
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19397,7 +19416,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19397
19416
  return __pyx_r;
19398
19417
  }
19399
19418
 
19400
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
19419
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
19401
19420
  *
19402
19421
  *
19403
19422
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19408,7 +19427,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19408
19427
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
19409
19428
  NPY_DATETIMEUNIT __pyx_r;
19410
19429
 
19411
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1053
19430
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1053
19412
19431
  * returns the unit part of the dtype for a numpy datetime64 object.
19413
19432
  * """
19414
19433
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -19416,7 +19435,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
19416
19435
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
19417
19436
  goto __pyx_L0;
19418
19437
 
19419
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
19438
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
19420
19439
  *
19421
19440
  *
19422
19441
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -22679,7 +22698,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
22679
22698
  __Pyx_GOTREF(__pyx_tuple__8);
22680
22699
  __Pyx_GIVEREF(__pyx_tuple__8);
22681
22700
 
22682
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
22701
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
22683
22702
  * __pyx_import_array()
22684
22703
  * except Exception:
22685
22704
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -22690,7 +22709,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
22690
22709
  __Pyx_GOTREF(__pyx_tuple__9);
22691
22710
  __Pyx_GIVEREF(__pyx_tuple__9);
22692
22711
 
22693
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
22712
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
22694
22713
  * _import_umath()
22695
22714
  * except Exception:
22696
22715
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -23126,33 +23145,33 @@ static int __Pyx_modinit_type_import_code(void) {
23126
23145
  /*--- Type import code ---*/
23127
23146
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
23128
23147
  __Pyx_GOTREF(__pyx_t_1);
23129
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
23148
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
23130
23149
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
23131
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
23150
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
23132
23151
  #elif CYTHON_COMPILING_IN_LIMITED_API
23133
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
23152
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
23134
23153
  #else
23135
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
23154
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
23136
23155
  #endif
23137
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
23156
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
23138
23157
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
23139
23158
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 203, __pyx_L1_error)
23140
23159
  __Pyx_GOTREF(__pyx_t_1);
23141
- __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 203, __pyx_L1_error)
23142
- __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 226, __pyx_L1_error)
23143
- __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 230, __pyx_L1_error)
23144
- __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 239, __pyx_L1_error)
23145
- __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 813, __pyx_L1_error)
23146
- __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 815, __pyx_L1_error)
23147
- __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 817, __pyx_L1_error)
23148
- __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 819, __pyx_L1_error)
23149
- __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 821, __pyx_L1_error)
23150
- __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 823, __pyx_L1_error)
23151
- __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 825, __pyx_L1_error)
23152
- __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 827, __pyx_L1_error)
23153
- __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 829, __pyx_L1_error)
23154
- __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 831, __pyx_L1_error)
23155
- __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 869, __pyx_L1_error)
23160
+ __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 203, __pyx_L1_error)
23161
+ __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 226, __pyx_L1_error)
23162
+ __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 230, __pyx_L1_error)
23163
+ __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 239, __pyx_L1_error)
23164
+ __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 813, __pyx_L1_error)
23165
+ __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 815, __pyx_L1_error)
23166
+ __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 817, __pyx_L1_error)
23167
+ __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 819, __pyx_L1_error)
23168
+ __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 821, __pyx_L1_error)
23169
+ __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 823, __pyx_L1_error)
23170
+ __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 825, __pyx_L1_error)
23171
+ __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 827, __pyx_L1_error)
23172
+ __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 829, __pyx_L1_error)
23173
+ __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 831, __pyx_L1_error)
23174
+ __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 869, __pyx_L1_error)
23156
23175
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
23157
23176
  __Pyx_RefNannyFinishContext();
23158
23177
  return 0;
@@ -24528,11 +24547,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
24528
24547
  {
24529
24548
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
24530
24549
  if (unlikely(eq != 0)) {
24531
- if (unlikely(eq < 0)) return NULL; // error
24550
+ if (unlikely(eq < 0)) return NULL;
24532
24551
  return kwvalues[i];
24533
24552
  }
24534
24553
  }
24535
- return NULL; // not found (no exception set)
24554
+ return NULL;
24536
24555
  }
24537
24556
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
24538
24557
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -24645,7 +24664,7 @@ static int __Pyx_ParseOptionalKeywords(
24645
24664
  if (*name) {
24646
24665
  values[name-argnames] = value;
24647
24666
  #if CYTHON_AVOID_BORROWED_REFS
24648
- Py_INCREF(value); // transfer ownership of value to values
24667
+ Py_INCREF(value);
24649
24668
  Py_DECREF(key);
24650
24669
  #endif
24651
24670
  key = NULL;
@@ -24664,7 +24683,7 @@ static int __Pyx_ParseOptionalKeywords(
24664
24683
  && _PyString_Eq(**name, key)) {
24665
24684
  values[name-argnames] = value;
24666
24685
  #if CYTHON_AVOID_BORROWED_REFS
24667
- value = NULL; // ownership transferred to values
24686
+ value = NULL;
24668
24687
  #endif
24669
24688
  break;
24670
24689
  }
@@ -24696,7 +24715,7 @@ static int __Pyx_ParseOptionalKeywords(
24696
24715
  if (cmp == 0) {
24697
24716
  values[name-argnames] = value;
24698
24717
  #if CYTHON_AVOID_BORROWED_REFS
24699
- value = NULL; // ownership transferred to values
24718
+ value = NULL;
24700
24719
  #endif
24701
24720
  break;
24702
24721
  }
@@ -27204,10 +27223,10 @@ __PYX_GOOD:
27204
27223
  #endif
27205
27224
 
27206
27225
  /* TypeImport */
27207
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
27208
- #define __PYX_HAVE_RT_ImportType_3_0_7
27209
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
27210
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
27226
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
27227
+ #define __PYX_HAVE_RT_ImportType_3_0_10
27228
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
27229
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
27211
27230
  {
27212
27231
  PyObject *result = 0;
27213
27232
  char warning[200];
@@ -27261,7 +27280,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
27261
27280
  module_name, class_name, size, basicsize+itemsize);
27262
27281
  goto bad;
27263
27282
  }
27264
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
27283
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
27265
27284
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
27266
27285
  PyErr_Format(PyExc_ValueError,
27267
27286
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -27269,7 +27288,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
27269
27288
  module_name, class_name, size, basicsize, basicsize+itemsize);
27270
27289
  goto bad;
27271
27290
  }
27272
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
27291
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
27273
27292
  PyOS_snprintf(warning, sizeof(warning),
27274
27293
  "%s.%s size changed, may indicate binary incompatibility. "
27275
27294
  "Expected %zd from C header, got %zd from PyObject",
@@ -28269,7 +28288,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
28269
28288
  default:
28270
28289
  return NULL;
28271
28290
  }
28272
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
28291
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
28273
28292
  }
28274
28293
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
28275
28294
  {
@@ -28728,7 +28747,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
28728
28747
  #else
28729
28748
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
28730
28749
  #endif
28731
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
28750
+ Py_XDECREF(py_funcname);
28732
28751
  return py_code;
28733
28752
  bad:
28734
28753
  Py_XDECREF(py_funcname);