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

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

Potentially problematic release.


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

Files changed (121) hide show
  1. biotite/__init__.py +3 -3
  2. biotite/application/dssp/app.py +18 -18
  3. biotite/database/pubchem/download.py +23 -23
  4. biotite/database/pubchem/query.py +7 -7
  5. biotite/database/rcsb/download.py +19 -14
  6. biotite/file.py +17 -9
  7. biotite/sequence/align/banded.c +256 -235
  8. biotite/sequence/align/banded.cp312-win_amd64.pyd +0 -0
  9. biotite/sequence/align/cigar.py +60 -15
  10. biotite/sequence/align/kmeralphabet.c +241 -220
  11. biotite/sequence/align/kmeralphabet.cp312-win_amd64.pyd +0 -0
  12. biotite/sequence/align/kmersimilarity.c +213 -194
  13. biotite/sequence/align/kmersimilarity.cp312-win_amd64.pyd +0 -0
  14. biotite/sequence/align/kmertable.cp312-win_amd64.pyd +0 -0
  15. biotite/sequence/align/kmertable.cpp +231 -203
  16. biotite/sequence/align/localgapped.c +256 -235
  17. biotite/sequence/align/localgapped.cp312-win_amd64.pyd +0 -0
  18. biotite/sequence/align/localungapped.c +233 -212
  19. biotite/sequence/align/localungapped.cp312-win_amd64.pyd +0 -0
  20. biotite/sequence/align/multiple.c +253 -232
  21. biotite/sequence/align/multiple.cp312-win_amd64.pyd +0 -0
  22. biotite/sequence/align/pairwise.c +272 -251
  23. biotite/sequence/align/pairwise.cp312-win_amd64.pyd +0 -0
  24. biotite/sequence/align/permutation.c +213 -194
  25. biotite/sequence/align/permutation.cp312-win_amd64.pyd +0 -0
  26. biotite/sequence/align/selector.c +215 -195
  27. biotite/sequence/align/selector.cp312-win_amd64.pyd +0 -0
  28. biotite/sequence/align/tracetable.c +213 -193
  29. biotite/sequence/align/tracetable.cp312-win_amd64.pyd +0 -0
  30. biotite/sequence/annotation.py +2 -2
  31. biotite/sequence/codec.c +233 -212
  32. biotite/sequence/codec.cp312-win_amd64.pyd +0 -0
  33. biotite/sequence/io/fasta/convert.py +27 -24
  34. biotite/sequence/phylo/nj.c +213 -194
  35. biotite/sequence/phylo/nj.cp312-win_amd64.pyd +0 -0
  36. biotite/sequence/phylo/tree.c +225 -200
  37. biotite/sequence/phylo/tree.cp312-win_amd64.pyd +0 -0
  38. biotite/sequence/phylo/upgma.c +213 -194
  39. biotite/sequence/phylo/upgma.cp312-win_amd64.pyd +0 -0
  40. biotite/structure/__init__.py +2 -0
  41. biotite/structure/basepairs.py +7 -12
  42. biotite/structure/bonds.c +1435 -1277
  43. biotite/structure/bonds.cp312-win_amd64.pyd +0 -0
  44. biotite/structure/celllist.c +215 -195
  45. biotite/structure/celllist.cp312-win_amd64.pyd +0 -0
  46. biotite/structure/charges.c +1050 -1099
  47. biotite/structure/charges.cp312-win_amd64.pyd +0 -0
  48. biotite/structure/dotbracket.py +2 -0
  49. biotite/structure/filter.py +30 -37
  50. biotite/structure/info/__init__.py +5 -8
  51. biotite/structure/info/atoms.py +31 -68
  52. biotite/structure/info/bonds.py +47 -101
  53. biotite/structure/info/ccd/README.rst +8 -0
  54. biotite/structure/info/ccd/amino_acids.txt +1663 -0
  55. biotite/structure/info/ccd/carbohydrates.txt +1135 -0
  56. biotite/structure/info/ccd/components.bcif +0 -0
  57. biotite/structure/info/ccd/nucleotides.txt +798 -0
  58. biotite/structure/info/ccd.py +95 -0
  59. biotite/structure/info/groups.py +90 -0
  60. biotite/structure/info/masses.py +21 -20
  61. biotite/structure/info/misc.py +78 -25
  62. biotite/structure/info/standardize.py +17 -12
  63. biotite/structure/integrity.py +19 -70
  64. biotite/structure/io/__init__.py +2 -4
  65. biotite/structure/io/ctab.py +12 -106
  66. biotite/structure/io/general.py +167 -181
  67. biotite/structure/io/gro/file.py +16 -16
  68. biotite/structure/io/mmtf/__init__.py +3 -0
  69. biotite/structure/io/mmtf/convertarray.c +217 -196
  70. biotite/structure/io/mmtf/convertarray.cp312-win_amd64.pyd +0 -0
  71. biotite/structure/io/mmtf/convertfile.c +215 -195
  72. biotite/structure/io/mmtf/convertfile.cp312-win_amd64.pyd +0 -0
  73. biotite/structure/io/mmtf/decode.c +223 -202
  74. biotite/structure/io/mmtf/decode.cp312-win_amd64.pyd +0 -0
  75. biotite/structure/io/mmtf/encode.c +213 -194
  76. biotite/structure/io/mmtf/encode.cp312-win_amd64.pyd +0 -0
  77. biotite/structure/io/mmtf/file.py +34 -26
  78. biotite/structure/io/mol/__init__.py +4 -2
  79. biotite/structure/io/mol/convert.py +71 -7
  80. biotite/structure/io/mol/ctab.py +414 -0
  81. biotite/structure/io/mol/header.py +116 -0
  82. biotite/structure/io/mol/{file.py → mol.py} +69 -82
  83. biotite/structure/io/mol/sdf.py +909 -0
  84. biotite/structure/io/npz/__init__.py +3 -0
  85. biotite/structure/io/npz/file.py +21 -18
  86. biotite/structure/io/pdb/__init__.py +3 -3
  87. biotite/structure/io/pdb/file.py +89 -34
  88. biotite/structure/io/pdb/hybrid36.c +63 -43
  89. biotite/structure/io/pdb/hybrid36.cp312-win_amd64.pyd +0 -0
  90. biotite/structure/io/pdbqt/file.py +32 -32
  91. biotite/structure/io/pdbx/__init__.py +12 -6
  92. biotite/structure/io/pdbx/bcif.py +648 -0
  93. biotite/structure/io/pdbx/cif.py +1032 -0
  94. biotite/structure/io/pdbx/component.py +246 -0
  95. biotite/structure/io/pdbx/convert.py +858 -386
  96. biotite/structure/io/pdbx/encoding.c +112803 -0
  97. biotite/structure/io/pdbx/encoding.cp312-win_amd64.pyd +0 -0
  98. biotite/structure/io/pdbx/legacy.py +267 -0
  99. biotite/structure/molecules.py +151 -151
  100. biotite/structure/repair.py +253 -0
  101. biotite/structure/sasa.c +213 -194
  102. biotite/structure/sasa.cp312-win_amd64.pyd +0 -0
  103. biotite/structure/sequence.py +112 -0
  104. biotite/structure/superimpose.py +618 -116
  105. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/METADATA +3 -3
  106. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/RECORD +109 -103
  107. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/WHEEL +1 -1
  108. biotite/structure/info/amino_acids.json +0 -1556
  109. biotite/structure/info/amino_acids.py +0 -42
  110. biotite/structure/info/carbohydrates.json +0 -1122
  111. biotite/structure/info/carbohydrates.py +0 -39
  112. biotite/structure/info/intra_bonds.msgpack +0 -0
  113. biotite/structure/info/link_types.msgpack +0 -1
  114. biotite/structure/info/nucleotides.json +0 -772
  115. biotite/structure/info/nucleotides.py +0 -39
  116. biotite/structure/info/residue_masses.msgpack +0 -0
  117. biotite/structure/info/residue_names.msgpack +0 -3
  118. biotite/structure/info/residues.msgpack +0 -0
  119. biotite/structure/io/pdbx/file.py +0 -652
  120. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/LICENSE.rst +0 -0
  121. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.0.7 */
1
+ /* Generated by Cython 3.0.10 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -37,10 +37,10 @@ END: Cython Metadata */
37
37
  #else
38
38
  #define __PYX_EXTRA_ABI_MODULE_NAME ""
39
39
  #endif
40
- #define CYTHON_ABI "3_0_7" __PYX_EXTRA_ABI_MODULE_NAME
40
+ #define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
41
41
  #define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
42
42
  #define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
43
- #define CYTHON_HEX_VERSION 0x030007F0
43
+ #define CYTHON_HEX_VERSION 0x03000AF0
44
44
  #define CYTHON_FUTURE_DIVISION 1
45
45
  #include <stddef.h>
46
46
  #ifndef offsetof
@@ -132,6 +132,8 @@ END: Cython Metadata */
132
132
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
133
133
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
134
134
  #endif
135
+ #undef CYTHON_USE_FREELISTS
136
+ #define CYTHON_USE_FREELISTS 0
135
137
  #elif defined(PYPY_VERSION)
136
138
  #define CYTHON_COMPILING_IN_PYPY 1
137
139
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -193,6 +195,8 @@ END: Cython Metadata */
193
195
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
194
196
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
195
197
  #endif
198
+ #undef CYTHON_USE_FREELISTS
199
+ #define CYTHON_USE_FREELISTS 0
196
200
  #elif defined(CYTHON_LIMITED_API)
197
201
  #ifdef Py_LIMITED_API
198
202
  #undef __PYX_LIMITED_VERSION_HEX
@@ -254,6 +258,8 @@ END: Cython Metadata */
254
258
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
255
259
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
256
260
  #endif
261
+ #undef CYTHON_USE_FREELISTS
262
+ #define CYTHON_USE_FREELISTS 0
257
263
  #elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
258
264
  #define CYTHON_COMPILING_IN_PYPY 0
259
265
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -263,11 +269,17 @@ END: Cython Metadata */
263
269
  #ifndef CYTHON_USE_TYPE_SLOTS
264
270
  #define CYTHON_USE_TYPE_SLOTS 1
265
271
  #endif
272
+ #ifndef CYTHON_USE_TYPE_SPECS
273
+ #define CYTHON_USE_TYPE_SPECS 0
274
+ #endif
266
275
  #undef CYTHON_USE_PYTYPE_LOOKUP
267
276
  #define CYTHON_USE_PYTYPE_LOOKUP 0
268
277
  #ifndef CYTHON_USE_ASYNC_SLOTS
269
278
  #define CYTHON_USE_ASYNC_SLOTS 1
270
279
  #endif
280
+ #ifndef CYTHON_USE_PYLONG_INTERNALS
281
+ #define CYTHON_USE_PYLONG_INTERNALS 0
282
+ #endif
271
283
  #undef CYTHON_USE_PYLIST_INTERNALS
272
284
  #define CYTHON_USE_PYLIST_INTERNALS 0
273
285
  #ifndef CYTHON_USE_UNICODE_INTERNALS
@@ -275,8 +287,6 @@ END: Cython Metadata */
275
287
  #endif
276
288
  #undef CYTHON_USE_UNICODE_WRITER
277
289
  #define CYTHON_USE_UNICODE_WRITER 0
278
- #undef CYTHON_USE_PYLONG_INTERNALS
279
- #define CYTHON_USE_PYLONG_INTERNALS 0
280
290
  #ifndef CYTHON_AVOID_BORROWED_REFS
281
291
  #define CYTHON_AVOID_BORROWED_REFS 0
282
292
  #endif
@@ -288,11 +298,22 @@ END: Cython Metadata */
288
298
  #endif
289
299
  #undef CYTHON_FAST_THREAD_STATE
290
300
  #define CYTHON_FAST_THREAD_STATE 0
301
+ #undef CYTHON_FAST_GIL
302
+ #define CYTHON_FAST_GIL 0
303
+ #ifndef CYTHON_METH_FASTCALL
304
+ #define CYTHON_METH_FASTCALL 1
305
+ #endif
291
306
  #undef CYTHON_FAST_PYCALL
292
307
  #define CYTHON_FAST_PYCALL 0
308
+ #ifndef CYTHON_PEP487_INIT_SUBCLASS
309
+ #define CYTHON_PEP487_INIT_SUBCLASS 1
310
+ #endif
293
311
  #ifndef CYTHON_PEP489_MULTI_PHASE_INIT
294
312
  #define CYTHON_PEP489_MULTI_PHASE_INIT 1
295
313
  #endif
314
+ #ifndef CYTHON_USE_MODULE_STATE
315
+ #define CYTHON_USE_MODULE_STATE 0
316
+ #endif
296
317
  #ifndef CYTHON_USE_TP_FINALIZE
297
318
  #define CYTHON_USE_TP_FINALIZE 1
298
319
  #endif
@@ -300,6 +321,12 @@ END: Cython Metadata */
300
321
  #define CYTHON_USE_DICT_VERSIONS 0
301
322
  #undef CYTHON_USE_EXC_INFO_STACK
302
323
  #define CYTHON_USE_EXC_INFO_STACK 0
324
+ #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
325
+ #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
326
+ #endif
327
+ #ifndef CYTHON_USE_FREELISTS
328
+ #define CYTHON_USE_FREELISTS 0
329
+ #endif
303
330
  #else
304
331
  #define CYTHON_COMPILING_IN_PYPY 0
305
332
  #define CYTHON_COMPILING_IN_CPYTHON 1
@@ -390,6 +417,9 @@ END: Cython Metadata */
390
417
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
391
418
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
392
419
  #endif
420
+ #ifndef CYTHON_USE_FREELISTS
421
+ #define CYTHON_USE_FREELISTS 1
422
+ #endif
393
423
  #endif
394
424
  #if !defined(CYTHON_FAST_PYCCALL)
395
425
  #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
@@ -582,14 +612,14 @@ END: Cython Metadata */
582
612
  PyObject *exception_table = NULL;
583
613
  PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
584
614
  #if __PYX_LIMITED_VERSION_HEX < 0x030B0000
585
- PyObject *version_info; // borrowed
615
+ PyObject *version_info;
586
616
  PyObject *py_minor_version = NULL;
587
617
  #endif
588
618
  long minor_version = 0;
589
619
  PyObject *type, *value, *traceback;
590
620
  PyErr_Fetch(&type, &value, &traceback);
591
621
  #if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
592
- minor_version = 11; // we don't yet need to distinguish between versions > 11
622
+ minor_version = 11;
593
623
  #else
594
624
  if (!(version_info = PySys_GetObject("version_info"))) goto end;
595
625
  if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
@@ -647,7 +677,7 @@ END: Cython Metadata */
647
677
  PyObject *fv, PyObject *cell, PyObject* fn,
648
678
  PyObject *name, int fline, PyObject *lnos) {
649
679
  PyCodeObject *result;
650
- PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0); // we don't have access to __pyx_empty_bytes here
680
+ PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
651
681
  if (!empty_bytes) return NULL;
652
682
  result =
653
683
  #if PY_VERSION_HEX >= 0x030C0000
@@ -733,8 +763,13 @@ END: Cython Metadata */
733
763
  typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
734
764
  Py_ssize_t nargs, PyObject *kwnames);
735
765
  #else
736
- #define __Pyx_PyCFunctionFast _PyCFunctionFast
737
- #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
766
+ #if PY_VERSION_HEX >= 0x030d00A4
767
+ # define __Pyx_PyCFunctionFast PyCFunctionFast
768
+ # define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
769
+ #else
770
+ # define __Pyx_PyCFunctionFast _PyCFunctionFast
771
+ # define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
772
+ #endif
738
773
  #endif
739
774
  #if CYTHON_METH_FASTCALL
740
775
  #define __Pyx_METH_FASTCALL METH_FASTCALL
@@ -1086,7 +1121,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
1086
1121
  #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
1087
1122
  #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
1088
1123
  #endif
1089
- #if PY_VERSION_HEX >= 0x030d00A1
1124
+ #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
1090
1125
  #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
1091
1126
  #else
1092
1127
  static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
@@ -1173,7 +1208,7 @@ static CYTHON_INLINE float __PYX_NAN() {
1173
1208
  #endif
1174
1209
 
1175
1210
  #define __PYX_MARK_ERR_POS(f_index, lineno) \
1176
- { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1211
+ { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1177
1212
  #define __PYX_ERR(f_index, lineno, Ln_error) \
1178
1213
  { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
1179
1214
 
@@ -1288,24 +1323,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1288
1323
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1289
1324
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1290
1325
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1291
- #if CYTHON_COMPILING_IN_LIMITED_API
1292
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1293
- {
1294
- const wchar_t *u_end = u;
1295
- while (*u_end++) ;
1296
- return (size_t)(u_end - u - 1);
1297
- }
1298
- #else
1299
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1300
- {
1301
- const Py_UNICODE *u_end = u;
1302
- while (*u_end++) ;
1303
- return (size_t)(u_end - u - 1);
1304
- }
1305
- #endif
1306
1326
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1307
- #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1308
- #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1309
1327
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1310
1328
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1311
1329
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -1355,7 +1373,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1355
1373
  #endif
1356
1374
  typedef Py_ssize_t __Pyx_compact_pylong;
1357
1375
  typedef size_t __Pyx_compact_upylong;
1358
- #else // Py < 3.12
1376
+ #else
1359
1377
  #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
1360
1378
  #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
1361
1379
  #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
@@ -1645,7 +1663,7 @@ typedef struct {
1645
1663
 
1646
1664
  /* #### Code section: numeric_typedefs ### */
1647
1665
 
1648
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":730
1666
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":730
1649
1667
  * # in Cython to enable them only on the right systems.
1650
1668
  *
1651
1669
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1654,7 +1672,7 @@ typedef struct {
1654
1672
  */
1655
1673
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1656
1674
 
1657
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1675
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1658
1676
  *
1659
1677
  * ctypedef npy_int8 int8_t
1660
1678
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1663,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1663
1681
  */
1664
1682
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1665
1683
 
1666
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1684
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1667
1685
  * ctypedef npy_int8 int8_t
1668
1686
  * ctypedef npy_int16 int16_t
1669
1687
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1672,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1672
1690
  */
1673
1691
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1674
1692
 
1675
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1693
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1676
1694
  * ctypedef npy_int16 int16_t
1677
1695
  * ctypedef npy_int32 int32_t
1678
1696
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1681,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1681
1699
  */
1682
1700
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1683
1701
 
1684
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":737
1702
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":737
1685
1703
  * #ctypedef npy_int128 int128_t
1686
1704
  *
1687
1705
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1690,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1690
1708
  */
1691
1709
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1692
1710
 
1693
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1711
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1694
1712
  *
1695
1713
  * ctypedef npy_uint8 uint8_t
1696
1714
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1699,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1699
1717
  */
1700
1718
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1701
1719
 
1702
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1720
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1703
1721
  * ctypedef npy_uint8 uint8_t
1704
1722
  * ctypedef npy_uint16 uint16_t
1705
1723
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1708,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1708
1726
  */
1709
1727
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1710
1728
 
1711
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1729
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1712
1730
  * ctypedef npy_uint16 uint16_t
1713
1731
  * ctypedef npy_uint32 uint32_t
1714
1732
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1717,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1717
1735
  */
1718
1736
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1719
1737
 
1720
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":744
1738
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":744
1721
1739
  * #ctypedef npy_uint128 uint128_t
1722
1740
  *
1723
1741
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1726,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1726
1744
  */
1727
1745
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1728
1746
 
1729
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1747
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1730
1748
  *
1731
1749
  * ctypedef npy_float32 float32_t
1732
1750
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1735,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1735
1753
  */
1736
1754
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1737
1755
 
1738
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":754
1756
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":754
1739
1757
  * # The int types are mapped a bit surprising --
1740
1758
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1741
1759
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1744,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1744
1762
  */
1745
1763
  typedef npy_long __pyx_t_5numpy_int_t;
1746
1764
 
1747
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1765
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1748
1766
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1749
1767
  * ctypedef npy_long int_t
1750
1768
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1753
1771
  */
1754
1772
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1755
1773
 
1756
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1774
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1757
1775
  * ctypedef npy_longlong longlong_t
1758
1776
  *
1759
1777
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1762
1780
  */
1763
1781
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1764
1782
 
1765
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1783
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1766
1784
  *
1767
1785
  * ctypedef npy_ulong uint_t
1768
1786
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1771,7 +1789,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1771
1789
  */
1772
1790
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1773
1791
 
1774
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1792
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1775
1793
  * ctypedef npy_ulonglong ulonglong_t
1776
1794
  *
1777
1795
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1780,7 +1798,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1780
1798
  */
1781
1799
  typedef npy_intp __pyx_t_5numpy_intp_t;
1782
1800
 
1783
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1801
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1784
1802
  *
1785
1803
  * ctypedef npy_intp intp_t
1786
1804
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1789,7 +1807,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1789
1807
  */
1790
1808
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1791
1809
 
1792
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1810
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1793
1811
  * ctypedef npy_uintp uintp_t
1794
1812
  *
1795
1813
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1798,7 +1816,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1798
1816
  */
1799
1817
  typedef npy_double __pyx_t_5numpy_float_t;
1800
1818
 
1801
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1819
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1802
1820
  *
1803
1821
  * ctypedef npy_double float_t
1804
1822
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1807,7 +1825,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1807
1825
  */
1808
1826
  typedef npy_double __pyx_t_5numpy_double_t;
1809
1827
 
1810
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1828
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1811
1829
  * ctypedef npy_double float_t
1812
1830
  * ctypedef npy_double double_t
1813
1831
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1866,7 +1884,7 @@ struct __pyx_MemviewEnum_obj;
1866
1884
  struct __pyx_memoryview_obj;
1867
1885
  struct __pyx_memoryviewslice_obj;
1868
1886
 
1869
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1887
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1870
1888
  * ctypedef npy_longdouble longdouble_t
1871
1889
  *
1872
1890
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1875,7 +1893,7 @@ struct __pyx_memoryviewslice_obj;
1875
1893
  */
1876
1894
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1877
1895
 
1878
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1896
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1879
1897
  *
1880
1898
  * ctypedef npy_cfloat cfloat_t
1881
1899
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1884,7 +1902,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1884
1902
  */
1885
1903
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1886
1904
 
1887
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1905
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1888
1906
  * ctypedef npy_cfloat cfloat_t
1889
1907
  * ctypedef npy_cdouble cdouble_t
1890
1908
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1893,7 +1911,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1893
1911
  */
1894
1912
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1895
1913
 
1896
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1914
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1897
1915
  * ctypedef npy_clongdouble clongdouble_t
1898
1916
  *
1899
1917
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2199,8 +2217,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2199
2217
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2200
2218
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2201
2219
  #else
2202
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2203
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2220
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2221
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2204
2222
  #endif
2205
2223
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2206
2224
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2216,8 +2234,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2216
2234
  #else
2217
2235
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2218
2236
  #endif
2219
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2220
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2237
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2238
+ to have the same reference counting */
2239
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2221
2240
  #else
2222
2241
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2223
2242
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2680,22 +2699,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2680
2699
  #endif
2681
2700
 
2682
2701
  /* TypeImport.proto */
2683
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2684
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2702
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2703
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2685
2704
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2686
2705
  #include <stdalign.h>
2687
2706
  #endif
2688
2707
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2689
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2708
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2690
2709
  #else
2691
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2710
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2692
2711
  #endif
2693
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2694
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2695
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2696
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2712
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2713
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2714
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2715
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2697
2716
  };
2698
- 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);
2717
+ 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);
2699
2718
  #endif
2700
2719
 
2701
2720
  /* FetchSharedCythonModule.proto */
@@ -2788,7 +2807,7 @@ typedef struct {
2788
2807
  #endif
2789
2808
  void *defaults;
2790
2809
  int defaults_pyobjects;
2791
- size_t defaults_size; // used by FusedFunction for copying defaults
2810
+ size_t defaults_size;
2792
2811
  int flags;
2793
2812
  PyObject *defaults_tuple;
2794
2813
  PyObject *defaults_kwdict;
@@ -18272,7 +18291,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18272
18291
  return __pyx_r;
18273
18292
  }
18274
18293
 
18275
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18294
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18276
18295
  *
18277
18296
  * @property
18278
18297
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18283,7 +18302,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18283
18302
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
18284
18303
  PyObject *__pyx_r;
18285
18304
 
18286
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
18305
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
18287
18306
  * """Returns a borrowed reference to the object owning the data/memory.
18288
18307
  * """
18289
18308
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -18293,7 +18312,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18293
18312
  __pyx_r = PyArray_BASE(__pyx_v_self);
18294
18313
  goto __pyx_L0;
18295
18314
 
18296
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18315
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
18297
18316
  *
18298
18317
  * @property
18299
18318
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18306,7 +18325,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18306
18325
  return __pyx_r;
18307
18326
  }
18308
18327
 
18309
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18328
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18310
18329
  *
18311
18330
  * @property
18312
18331
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18320,7 +18339,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18320
18339
  PyArray_Descr *__pyx_t_1;
18321
18340
  __Pyx_RefNannySetupContext("descr", 1);
18322
18341
 
18323
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
18342
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
18324
18343
  * """Returns an owned reference to the dtype of the array.
18325
18344
  * """
18326
18345
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -18333,7 +18352,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18333
18352
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
18334
18353
  goto __pyx_L0;
18335
18354
 
18336
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18355
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
18337
18356
  *
18338
18357
  * @property
18339
18358
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18348,7 +18367,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18348
18367
  return __pyx_r;
18349
18368
  }
18350
18369
 
18351
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18370
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18352
18371
  *
18353
18372
  * @property
18354
18373
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18359,7 +18378,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18359
18378
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
18360
18379
  int __pyx_r;
18361
18380
 
18362
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
18381
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
18363
18382
  * """Returns the number of dimensions in the array.
18364
18383
  * """
18365
18384
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -18369,7 +18388,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18369
18388
  __pyx_r = PyArray_NDIM(__pyx_v_self);
18370
18389
  goto __pyx_L0;
18371
18390
 
18372
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18391
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
18373
18392
  *
18374
18393
  * @property
18375
18394
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18382,7 +18401,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18382
18401
  return __pyx_r;
18383
18402
  }
18384
18403
 
18385
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18404
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18386
18405
  *
18387
18406
  * @property
18388
18407
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18393,7 +18412,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18393
18412
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
18394
18413
  npy_intp *__pyx_r;
18395
18414
 
18396
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
18415
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
18397
18416
  * Can return NULL for 0-dimensional arrays.
18398
18417
  * """
18399
18418
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -18403,7 +18422,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18403
18422
  __pyx_r = PyArray_DIMS(__pyx_v_self);
18404
18423
  goto __pyx_L0;
18405
18424
 
18406
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18425
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
18407
18426
  *
18408
18427
  * @property
18409
18428
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18416,7 +18435,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18416
18435
  return __pyx_r;
18417
18436
  }
18418
18437
 
18419
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18438
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18420
18439
  *
18421
18440
  * @property
18422
18441
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18427,7 +18446,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18427
18446
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
18428
18447
  npy_intp *__pyx_r;
18429
18448
 
18430
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
18449
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
18431
18450
  * The number of elements matches the number of dimensions of the array (ndim).
18432
18451
  * """
18433
18452
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -18437,7 +18456,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18437
18456
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
18438
18457
  goto __pyx_L0;
18439
18458
 
18440
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18459
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
18441
18460
  *
18442
18461
  * @property
18443
18462
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18450,7 +18469,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18450
18469
  return __pyx_r;
18451
18470
  }
18452
18471
 
18453
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18472
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18454
18473
  *
18455
18474
  * @property
18456
18475
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18461,7 +18480,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18461
18480
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
18462
18481
  npy_intp __pyx_r;
18463
18482
 
18464
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
18483
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
18465
18484
  * """Returns the total size (in number of elements) of the array.
18466
18485
  * """
18467
18486
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -18471,7 +18490,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18471
18490
  __pyx_r = PyArray_SIZE(__pyx_v_self);
18472
18491
  goto __pyx_L0;
18473
18492
 
18474
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18493
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18475
18494
  *
18476
18495
  * @property
18477
18496
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18484,7 +18503,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18484
18503
  return __pyx_r;
18485
18504
  }
18486
18505
 
18487
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18506
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18488
18507
  *
18489
18508
  * @property
18490
18509
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18495,7 +18514,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18495
18514
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
18496
18515
  char *__pyx_r;
18497
18516
 
18498
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
18517
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
18499
18518
  * of `PyArray_DATA()` instead, which returns a 'void*'.
18500
18519
  * """
18501
18520
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -18505,7 +18524,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18505
18524
  __pyx_r = PyArray_BYTES(__pyx_v_self);
18506
18525
  goto __pyx_L0;
18507
18526
 
18508
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18527
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18509
18528
  *
18510
18529
  * @property
18511
18530
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18518,7 +18537,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18518
18537
  return __pyx_r;
18519
18538
  }
18520
18539
 
18521
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
18540
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
18522
18541
  * ctypedef npy_cdouble complex_t
18523
18542
  *
18524
18543
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18535,7 +18554,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18535
18554
  int __pyx_clineno = 0;
18536
18555
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
18537
18556
 
18538
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
18557
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
18539
18558
  *
18540
18559
  * cdef inline object PyArray_MultiIterNew1(a):
18541
18560
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -18549,7 +18568,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18549
18568
  __pyx_t_1 = 0;
18550
18569
  goto __pyx_L0;
18551
18570
 
18552
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
18571
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
18553
18572
  * ctypedef npy_cdouble complex_t
18554
18573
  *
18555
18574
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18568,7 +18587,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18568
18587
  return __pyx_r;
18569
18588
  }
18570
18589
 
18571
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18590
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18572
18591
  * return PyArray_MultiIterNew(1, <void*>a)
18573
18592
  *
18574
18593
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18585,7 +18604,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18585
18604
  int __pyx_clineno = 0;
18586
18605
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
18587
18606
 
18588
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18607
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18589
18608
  *
18590
18609
  * cdef inline object PyArray_MultiIterNew2(a, b):
18591
18610
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -18599,7 +18618,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18599
18618
  __pyx_t_1 = 0;
18600
18619
  goto __pyx_L0;
18601
18620
 
18602
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18621
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18603
18622
  * return PyArray_MultiIterNew(1, <void*>a)
18604
18623
  *
18605
18624
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18618,7 +18637,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18618
18637
  return __pyx_r;
18619
18638
  }
18620
18639
 
18621
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18640
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18622
18641
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18623
18642
  *
18624
18643
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18635,7 +18654,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18635
18654
  int __pyx_clineno = 0;
18636
18655
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
18637
18656
 
18638
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18657
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18639
18658
  *
18640
18659
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
18641
18660
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -18649,7 +18668,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18649
18668
  __pyx_t_1 = 0;
18650
18669
  goto __pyx_L0;
18651
18670
 
18652
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18671
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18653
18672
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18654
18673
  *
18655
18674
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18668,7 +18687,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18668
18687
  return __pyx_r;
18669
18688
  }
18670
18689
 
18671
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18690
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18672
18691
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18673
18692
  *
18674
18693
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18685,7 +18704,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18685
18704
  int __pyx_clineno = 0;
18686
18705
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
18687
18706
 
18688
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18707
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18689
18708
  *
18690
18709
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
18691
18710
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -18699,7 +18718,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18699
18718
  __pyx_t_1 = 0;
18700
18719
  goto __pyx_L0;
18701
18720
 
18702
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18721
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18703
18722
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18704
18723
  *
18705
18724
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18718,7 +18737,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18718
18737
  return __pyx_r;
18719
18738
  }
18720
18739
 
18721
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18740
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18722
18741
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18723
18742
  *
18724
18743
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18735,7 +18754,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18735
18754
  int __pyx_clineno = 0;
18736
18755
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
18737
18756
 
18738
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18757
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18739
18758
  *
18740
18759
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
18741
18760
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -18749,7 +18768,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18749
18768
  __pyx_t_1 = 0;
18750
18769
  goto __pyx_L0;
18751
18770
 
18752
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18771
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18753
18772
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18754
18773
  *
18755
18774
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18768,7 +18787,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18768
18787
  return __pyx_r;
18769
18788
  }
18770
18789
 
18771
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18790
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18772
18791
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18773
18792
  *
18774
18793
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18782,7 +18801,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18782
18801
  int __pyx_t_1;
18783
18802
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
18784
18803
 
18785
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18804
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18786
18805
  *
18787
18806
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18788
18807
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18792,7 +18811,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18792
18811
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
18793
18812
  if (__pyx_t_1) {
18794
18813
 
18795
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
18814
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
18796
18815
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18797
18816
  * if PyDataType_HASSUBARRAY(d):
18798
18817
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -18804,7 +18823,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18804
18823
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
18805
18824
  goto __pyx_L0;
18806
18825
 
18807
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18826
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18808
18827
  *
18809
18828
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18810
18829
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18813,7 +18832,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18813
18832
  */
18814
18833
  }
18815
18834
 
18816
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
18835
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
18817
18836
  * return <tuple>d.subarray.shape
18818
18837
  * else:
18819
18838
  * return () # <<<<<<<<<<<<<<
@@ -18827,7 +18846,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18827
18846
  goto __pyx_L0;
18828
18847
  }
18829
18848
 
18830
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18849
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18831
18850
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18832
18851
  *
18833
18852
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18842,7 +18861,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18842
18861
  return __pyx_r;
18843
18862
  }
18844
18863
 
18845
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
18864
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
18846
18865
  * int _import_umath() except -1
18847
18866
  *
18848
18867
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -18856,7 +18875,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18856
18875
  const char *__pyx_filename = NULL;
18857
18876
  int __pyx_clineno = 0;
18858
18877
 
18859
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
18878
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
18860
18879
  *
18861
18880
  * cdef inline void set_array_base(ndarray arr, object base):
18862
18881
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -18865,7 +18884,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18865
18884
  */
18866
18885
  Py_INCREF(__pyx_v_base);
18867
18886
 
18868
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
18887
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
18869
18888
  * cdef inline void set_array_base(ndarray arr, object base):
18870
18889
  * Py_INCREF(base) # important to do this before stealing the reference below!
18871
18890
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -18874,7 +18893,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18874
18893
  */
18875
18894
  __pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(2, 970, __pyx_L1_error)
18876
18895
 
18877
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
18896
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
18878
18897
  * int _import_umath() except -1
18879
18898
  *
18880
18899
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -18889,7 +18908,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18889
18908
  __pyx_L0:;
18890
18909
  }
18891
18910
 
18892
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
18911
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
18893
18912
  * PyArray_SetBaseObject(arr, base)
18894
18913
  *
18895
18914
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -18904,7 +18923,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18904
18923
  int __pyx_t_1;
18905
18924
  __Pyx_RefNannySetupContext("get_array_base", 1);
18906
18925
 
18907
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
18926
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
18908
18927
  *
18909
18928
  * cdef inline object get_array_base(ndarray arr):
18910
18929
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -18913,7 +18932,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18913
18932
  */
18914
18933
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
18915
18934
 
18916
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
18935
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
18917
18936
  * cdef inline object get_array_base(ndarray arr):
18918
18937
  * base = PyArray_BASE(arr)
18919
18938
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -18923,7 +18942,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18923
18942
  __pyx_t_1 = (__pyx_v_base == NULL);
18924
18943
  if (__pyx_t_1) {
18925
18944
 
18926
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
18945
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
18927
18946
  * base = PyArray_BASE(arr)
18928
18947
  * if base is NULL:
18929
18948
  * return None # <<<<<<<<<<<<<<
@@ -18934,7 +18953,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18934
18953
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
18935
18954
  goto __pyx_L0;
18936
18955
 
18937
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
18956
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
18938
18957
  * cdef inline object get_array_base(ndarray arr):
18939
18958
  * base = PyArray_BASE(arr)
18940
18959
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -18943,7 +18962,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18943
18962
  */
18944
18963
  }
18945
18964
 
18946
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
18965
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
18947
18966
  * if base is NULL:
18948
18967
  * return None
18949
18968
  * return <object>base # <<<<<<<<<<<<<<
@@ -18955,7 +18974,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18955
18974
  __pyx_r = ((PyObject *)__pyx_v_base);
18956
18975
  goto __pyx_L0;
18957
18976
 
18958
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
18977
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
18959
18978
  * PyArray_SetBaseObject(arr, base)
18960
18979
  *
18961
18980
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -18970,7 +18989,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18970
18989
  return __pyx_r;
18971
18990
  }
18972
18991
 
18973
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
18992
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
18974
18993
  * # Versions of the import_* functions which are more suitable for
18975
18994
  * # Cython code.
18976
18995
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -18994,7 +19013,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18994
19013
  int __pyx_clineno = 0;
18995
19014
  __Pyx_RefNannySetupContext("import_array", 1);
18996
19015
 
18997
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19016
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
18998
19017
  * # Cython code.
18999
19018
  * cdef inline int import_array() except -1:
19000
19019
  * try: # <<<<<<<<<<<<<<
@@ -19010,7 +19029,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19010
19029
  __Pyx_XGOTREF(__pyx_t_3);
19011
19030
  /*try:*/ {
19012
19031
 
19013
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19032
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19014
19033
  * cdef inline int import_array() except -1:
19015
19034
  * try:
19016
19035
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -19019,7 +19038,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19019
19038
  */
19020
19039
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
19021
19040
 
19022
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19041
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19023
19042
  * # Cython code.
19024
19043
  * cdef inline int import_array() except -1:
19025
19044
  * try: # <<<<<<<<<<<<<<
@@ -19033,7 +19052,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19033
19052
  goto __pyx_L8_try_end;
19034
19053
  __pyx_L3_error:;
19035
19054
 
19036
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19055
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19037
19056
  * try:
19038
19057
  * __pyx_import_array()
19039
19058
  * except Exception: # <<<<<<<<<<<<<<
@@ -19048,7 +19067,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19048
19067
  __Pyx_XGOTREF(__pyx_t_6);
19049
19068
  __Pyx_XGOTREF(__pyx_t_7);
19050
19069
 
19051
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19070
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19052
19071
  * __pyx_import_array()
19053
19072
  * except Exception:
19054
19073
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -19063,7 +19082,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19063
19082
  }
19064
19083
  goto __pyx_L5_except_error;
19065
19084
 
19066
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19085
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
19067
19086
  * # Cython code.
19068
19087
  * cdef inline int import_array() except -1:
19069
19088
  * try: # <<<<<<<<<<<<<<
@@ -19079,7 +19098,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19079
19098
  __pyx_L8_try_end:;
19080
19099
  }
19081
19100
 
19082
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19101
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
19083
19102
  * # Versions of the import_* functions which are more suitable for
19084
19103
  * # Cython code.
19085
19104
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19102,7 +19121,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19102
19121
  return __pyx_r;
19103
19122
  }
19104
19123
 
19105
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19124
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19106
19125
  * raise ImportError("numpy.core.multiarray failed to import")
19107
19126
  *
19108
19127
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19126,7 +19145,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19126
19145
  int __pyx_clineno = 0;
19127
19146
  __Pyx_RefNannySetupContext("import_umath", 1);
19128
19147
 
19129
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19148
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19130
19149
  *
19131
19150
  * cdef inline int import_umath() except -1:
19132
19151
  * try: # <<<<<<<<<<<<<<
@@ -19142,7 +19161,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19142
19161
  __Pyx_XGOTREF(__pyx_t_3);
19143
19162
  /*try:*/ {
19144
19163
 
19145
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19164
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19146
19165
  * cdef inline int import_umath() except -1:
19147
19166
  * try:
19148
19167
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19151,7 +19170,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19151
19170
  */
19152
19171
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
19153
19172
 
19154
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19173
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19155
19174
  *
19156
19175
  * cdef inline int import_umath() except -1:
19157
19176
  * try: # <<<<<<<<<<<<<<
@@ -19165,7 +19184,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19165
19184
  goto __pyx_L8_try_end;
19166
19185
  __pyx_L3_error:;
19167
19186
 
19168
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19187
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19169
19188
  * try:
19170
19189
  * _import_umath()
19171
19190
  * except Exception: # <<<<<<<<<<<<<<
@@ -19180,7 +19199,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19180
19199
  __Pyx_XGOTREF(__pyx_t_6);
19181
19200
  __Pyx_XGOTREF(__pyx_t_7);
19182
19201
 
19183
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19202
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19184
19203
  * _import_umath()
19185
19204
  * except Exception:
19186
19205
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19195,7 +19214,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19195
19214
  }
19196
19215
  goto __pyx_L5_except_error;
19197
19216
 
19198
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19217
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
19199
19218
  *
19200
19219
  * cdef inline int import_umath() except -1:
19201
19220
  * try: # <<<<<<<<<<<<<<
@@ -19211,7 +19230,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19211
19230
  __pyx_L8_try_end:;
19212
19231
  }
19213
19232
 
19214
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19233
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19215
19234
  * raise ImportError("numpy.core.multiarray failed to import")
19216
19235
  *
19217
19236
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19234,7 +19253,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19234
19253
  return __pyx_r;
19235
19254
  }
19236
19255
 
19237
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19256
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19238
19257
  * raise ImportError("numpy.core.umath failed to import")
19239
19258
  *
19240
19259
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19258,7 +19277,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19258
19277
  int __pyx_clineno = 0;
19259
19278
  __Pyx_RefNannySetupContext("import_ufunc", 1);
19260
19279
 
19261
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19280
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19262
19281
  *
19263
19282
  * cdef inline int import_ufunc() except -1:
19264
19283
  * try: # <<<<<<<<<<<<<<
@@ -19274,7 +19293,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19274
19293
  __Pyx_XGOTREF(__pyx_t_3);
19275
19294
  /*try:*/ {
19276
19295
 
19277
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19296
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
19278
19297
  * cdef inline int import_ufunc() except -1:
19279
19298
  * try:
19280
19299
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19283,7 +19302,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19283
19302
  */
19284
19303
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
19285
19304
 
19286
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19305
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19287
19306
  *
19288
19307
  * cdef inline int import_ufunc() except -1:
19289
19308
  * try: # <<<<<<<<<<<<<<
@@ -19297,7 +19316,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19297
19316
  goto __pyx_L8_try_end;
19298
19317
  __pyx_L3_error:;
19299
19318
 
19300
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19319
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19301
19320
  * try:
19302
19321
  * _import_umath()
19303
19322
  * except Exception: # <<<<<<<<<<<<<<
@@ -19312,7 +19331,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19312
19331
  __Pyx_XGOTREF(__pyx_t_6);
19313
19332
  __Pyx_XGOTREF(__pyx_t_7);
19314
19333
 
19315
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19334
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19316
19335
  * _import_umath()
19317
19336
  * except Exception:
19318
19337
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19327,7 +19346,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19327
19346
  }
19328
19347
  goto __pyx_L5_except_error;
19329
19348
 
19330
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19349
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19331
19350
  *
19332
19351
  * cdef inline int import_ufunc() except -1:
19333
19352
  * try: # <<<<<<<<<<<<<<
@@ -19343,7 +19362,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19343
19362
  __pyx_L8_try_end:;
19344
19363
  }
19345
19364
 
19346
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19365
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19347
19366
  * raise ImportError("numpy.core.umath failed to import")
19348
19367
  *
19349
19368
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19366,7 +19385,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19366
19385
  return __pyx_r;
19367
19386
  }
19368
19387
 
19369
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19388
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19370
19389
  *
19371
19390
  *
19372
19391
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19377,7 +19396,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19377
19396
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
19378
19397
  int __pyx_r;
19379
19398
 
19380
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
19399
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
19381
19400
  * bool
19382
19401
  * """
19383
19402
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -19387,7 +19406,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19387
19406
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
19388
19407
  goto __pyx_L0;
19389
19408
 
19390
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19409
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19391
19410
  *
19392
19411
  *
19393
19412
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19400,7 +19419,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19400
19419
  return __pyx_r;
19401
19420
  }
19402
19421
 
19403
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19422
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19404
19423
  *
19405
19424
  *
19406
19425
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19411,7 +19430,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19411
19430
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
19412
19431
  int __pyx_r;
19413
19432
 
19414
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
19433
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
19415
19434
  * bool
19416
19435
  * """
19417
19436
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -19421,7 +19440,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19421
19440
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
19422
19441
  goto __pyx_L0;
19423
19442
 
19424
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19443
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19425
19444
  *
19426
19445
  *
19427
19446
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19434,7 +19453,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19434
19453
  return __pyx_r;
19435
19454
  }
19436
19455
 
19437
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19456
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19438
19457
  *
19439
19458
  *
19440
19459
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19445,7 +19464,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19445
19464
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
19446
19465
  npy_datetime __pyx_r;
19447
19466
 
19448
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
19467
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
19449
19468
  * also needed. That can be found using `get_datetime64_unit`.
19450
19469
  * """
19451
19470
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19455,7 +19474,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19455
19474
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
19456
19475
  goto __pyx_L0;
19457
19476
 
19458
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19477
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19459
19478
  *
19460
19479
  *
19461
19480
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19468,7 +19487,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19468
19487
  return __pyx_r;
19469
19488
  }
19470
19489
 
19471
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19490
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19472
19491
  *
19473
19492
  *
19474
19493
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19479,7 +19498,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19479
19498
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
19480
19499
  npy_timedelta __pyx_r;
19481
19500
 
19482
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
19501
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
19483
19502
  * returns the int64 value underlying scalar numpy timedelta64 object
19484
19503
  * """
19485
19504
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19489,7 +19508,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19489
19508
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
19490
19509
  goto __pyx_L0;
19491
19510
 
19492
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19511
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19493
19512
  *
19494
19513
  *
19495
19514
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19502,7 +19521,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19502
19521
  return __pyx_r;
19503
19522
  }
19504
19523
 
19505
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19524
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19506
19525
  *
19507
19526
  *
19508
19527
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19513,7 +19532,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19513
19532
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
19514
19533
  NPY_DATETIMEUNIT __pyx_r;
19515
19534
 
19516
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
19535
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
19517
19536
  * returns the unit part of the dtype for a numpy datetime64 object.
19518
19537
  * """
19519
19538
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -19521,7 +19540,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
19521
19540
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
19522
19541
  goto __pyx_L0;
19523
19542
 
19524
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19543
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19525
19544
  *
19526
19545
  *
19527
19546
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -22467,7 +22486,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
22467
22486
  __Pyx_GOTREF(__pyx_tuple__8);
22468
22487
  __Pyx_GIVEREF(__pyx_tuple__8);
22469
22488
 
22470
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
22489
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
22471
22490
  * __pyx_import_array()
22472
22491
  * except Exception:
22473
22492
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -22478,7 +22497,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
22478
22497
  __Pyx_GOTREF(__pyx_tuple__9);
22479
22498
  __Pyx_GIVEREF(__pyx_tuple__9);
22480
22499
 
22481
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
22500
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
22482
22501
  * _import_umath()
22483
22502
  * except Exception:
22484
22503
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -22905,33 +22924,33 @@ static int __Pyx_modinit_type_import_code(void) {
22905
22924
  /*--- Type import code ---*/
22906
22925
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
22907
22926
  __Pyx_GOTREF(__pyx_t_1);
22908
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
22927
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
22909
22928
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
22910
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
22929
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
22911
22930
  #elif CYTHON_COMPILING_IN_LIMITED_API
22912
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
22931
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
22913
22932
  #else
22914
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
22933
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
22915
22934
  #endif
22916
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
22935
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
22917
22936
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
22918
22937
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
22919
22938
  __Pyx_GOTREF(__pyx_t_1);
22920
- __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
22921
- __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
22922
- __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
22923
- __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
22924
- __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 809, __pyx_L1_error)
22925
- __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 811, __pyx_L1_error)
22926
- __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 813, __pyx_L1_error)
22927
- __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 815, __pyx_L1_error)
22928
- __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 817, __pyx_L1_error)
22929
- __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 819, __pyx_L1_error)
22930
- __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 821, __pyx_L1_error)
22931
- __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 823, __pyx_L1_error)
22932
- __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 825, __pyx_L1_error)
22933
- __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 827, __pyx_L1_error)
22934
- __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 866, __pyx_L1_error)
22939
+ __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
22940
+ __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
22941
+ __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
22942
+ __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
22943
+ __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 809, __pyx_L1_error)
22944
+ __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 811, __pyx_L1_error)
22945
+ __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 813, __pyx_L1_error)
22946
+ __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 815, __pyx_L1_error)
22947
+ __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 817, __pyx_L1_error)
22948
+ __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 819, __pyx_L1_error)
22949
+ __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 821, __pyx_L1_error)
22950
+ __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 823, __pyx_L1_error)
22951
+ __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 825, __pyx_L1_error)
22952
+ __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 827, __pyx_L1_error)
22953
+ __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 866, __pyx_L1_error)
22935
22954
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
22936
22955
  __Pyx_RefNannyFinishContext();
22937
22956
  return 0;
@@ -24397,11 +24416,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
24397
24416
  {
24398
24417
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
24399
24418
  if (unlikely(eq != 0)) {
24400
- if (unlikely(eq < 0)) return NULL; // error
24419
+ if (unlikely(eq < 0)) return NULL;
24401
24420
  return kwvalues[i];
24402
24421
  }
24403
24422
  }
24404
- return NULL; // not found (no exception set)
24423
+ return NULL;
24405
24424
  }
24406
24425
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
24407
24426
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -24514,7 +24533,7 @@ static int __Pyx_ParseOptionalKeywords(
24514
24533
  if (*name) {
24515
24534
  values[name-argnames] = value;
24516
24535
  #if CYTHON_AVOID_BORROWED_REFS
24517
- Py_INCREF(value); // transfer ownership of value to values
24536
+ Py_INCREF(value);
24518
24537
  Py_DECREF(key);
24519
24538
  #endif
24520
24539
  key = NULL;
@@ -24533,7 +24552,7 @@ static int __Pyx_ParseOptionalKeywords(
24533
24552
  && _PyString_Eq(**name, key)) {
24534
24553
  values[name-argnames] = value;
24535
24554
  #if CYTHON_AVOID_BORROWED_REFS
24536
- value = NULL; // ownership transferred to values
24555
+ value = NULL;
24537
24556
  #endif
24538
24557
  break;
24539
24558
  }
@@ -24565,7 +24584,7 @@ static int __Pyx_ParseOptionalKeywords(
24565
24584
  if (cmp == 0) {
24566
24585
  values[name-argnames] = value;
24567
24586
  #if CYTHON_AVOID_BORROWED_REFS
24568
- value = NULL; // ownership transferred to values
24587
+ value = NULL;
24569
24588
  #endif
24570
24589
  break;
24571
24590
  }
@@ -27087,10 +27106,10 @@ __PYX_GOOD:
27087
27106
  #endif
27088
27107
 
27089
27108
  /* TypeImport */
27090
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
27091
- #define __PYX_HAVE_RT_ImportType_3_0_7
27092
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
27093
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
27109
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
27110
+ #define __PYX_HAVE_RT_ImportType_3_0_10
27111
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
27112
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
27094
27113
  {
27095
27114
  PyObject *result = 0;
27096
27115
  char warning[200];
@@ -27144,7 +27163,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
27144
27163
  module_name, class_name, size, basicsize+itemsize);
27145
27164
  goto bad;
27146
27165
  }
27147
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
27166
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
27148
27167
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
27149
27168
  PyErr_Format(PyExc_ValueError,
27150
27169
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -27152,7 +27171,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
27152
27171
  module_name, class_name, size, basicsize, basicsize+itemsize);
27153
27172
  goto bad;
27154
27173
  }
27155
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
27174
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
27156
27175
  PyOS_snprintf(warning, sizeof(warning),
27157
27176
  "%s.%s size changed, may indicate binary incompatibility. "
27158
27177
  "Expected %zd from C header, got %zd from PyObject",
@@ -28152,7 +28171,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
28152
28171
  default:
28153
28172
  return NULL;
28154
28173
  }
28155
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
28174
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
28156
28175
  }
28157
28176
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
28158
28177
  {
@@ -28966,7 +28985,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
28966
28985
  #else
28967
28986
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
28968
28987
  #endif
28969
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
28988
+ Py_XDECREF(py_funcname);
28970
28989
  return py_code;
28971
28990
  bad:
28972
28991
  Py_XDECREF(py_funcname);