biotite 0.39.0__cp310-cp310-win_amd64.whl → 0.41.0__cp310-cp310-win_amd64.whl

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

Potentially problematic release.


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

Files changed (121) hide show
  1. biotite/__init__.py +3 -3
  2. biotite/application/dssp/app.py +18 -18
  3. biotite/database/pubchem/download.py +23 -23
  4. biotite/database/pubchem/query.py +7 -7
  5. biotite/database/rcsb/download.py +19 -14
  6. biotite/file.py +17 -9
  7. biotite/sequence/align/banded.c +258 -237
  8. biotite/sequence/align/banded.cp310-win_amd64.pyd +0 -0
  9. biotite/sequence/align/cigar.py +60 -15
  10. biotite/sequence/align/kmeralphabet.c +243 -222
  11. biotite/sequence/align/kmeralphabet.cp310-win_amd64.pyd +0 -0
  12. biotite/sequence/align/kmersimilarity.c +215 -196
  13. biotite/sequence/align/kmersimilarity.cp310-win_amd64.pyd +0 -0
  14. biotite/sequence/align/kmertable.cp310-win_amd64.pyd +0 -0
  15. biotite/sequence/align/kmertable.cpp +233 -205
  16. biotite/sequence/align/localgapped.c +258 -237
  17. biotite/sequence/align/localgapped.cp310-win_amd64.pyd +0 -0
  18. biotite/sequence/align/localungapped.c +235 -214
  19. biotite/sequence/align/localungapped.cp310-win_amd64.pyd +0 -0
  20. biotite/sequence/align/multiple.c +255 -234
  21. biotite/sequence/align/multiple.cp310-win_amd64.pyd +0 -0
  22. biotite/sequence/align/pairwise.c +274 -253
  23. biotite/sequence/align/pairwise.cp310-win_amd64.pyd +0 -0
  24. biotite/sequence/align/permutation.c +215 -196
  25. biotite/sequence/align/permutation.cp310-win_amd64.pyd +0 -0
  26. biotite/sequence/align/selector.c +217 -197
  27. biotite/sequence/align/selector.cp310-win_amd64.pyd +0 -0
  28. biotite/sequence/align/tracetable.c +215 -195
  29. biotite/sequence/align/tracetable.cp310-win_amd64.pyd +0 -0
  30. biotite/sequence/annotation.py +2 -2
  31. biotite/sequence/codec.c +235 -214
  32. biotite/sequence/codec.cp310-win_amd64.pyd +0 -0
  33. biotite/sequence/io/fasta/convert.py +27 -24
  34. biotite/sequence/phylo/nj.c +215 -196
  35. biotite/sequence/phylo/nj.cp310-win_amd64.pyd +0 -0
  36. biotite/sequence/phylo/tree.c +227 -202
  37. biotite/sequence/phylo/tree.cp310-win_amd64.pyd +0 -0
  38. biotite/sequence/phylo/upgma.c +215 -196
  39. biotite/sequence/phylo/upgma.cp310-win_amd64.pyd +0 -0
  40. biotite/structure/__init__.py +2 -0
  41. biotite/structure/basepairs.py +7 -12
  42. biotite/structure/bonds.c +1437 -1279
  43. biotite/structure/bonds.cp310-win_amd64.pyd +0 -0
  44. biotite/structure/celllist.c +217 -197
  45. biotite/structure/celllist.cp310-win_amd64.pyd +0 -0
  46. biotite/structure/charges.c +1052 -1101
  47. biotite/structure/charges.cp310-win_amd64.pyd +0 -0
  48. biotite/structure/dotbracket.py +2 -0
  49. biotite/structure/filter.py +30 -37
  50. biotite/structure/info/__init__.py +5 -8
  51. biotite/structure/info/atoms.py +31 -68
  52. biotite/structure/info/bonds.py +47 -101
  53. biotite/structure/info/ccd/README.rst +8 -0
  54. biotite/structure/info/ccd/amino_acids.txt +1663 -0
  55. biotite/structure/info/ccd/carbohydrates.txt +1135 -0
  56. biotite/structure/info/ccd/components.bcif +0 -0
  57. biotite/structure/info/ccd/nucleotides.txt +798 -0
  58. biotite/structure/info/ccd.py +95 -0
  59. biotite/structure/info/groups.py +90 -0
  60. biotite/structure/info/masses.py +21 -20
  61. biotite/structure/info/misc.py +78 -25
  62. biotite/structure/info/standardize.py +17 -12
  63. biotite/structure/integrity.py +19 -70
  64. biotite/structure/io/__init__.py +2 -4
  65. biotite/structure/io/ctab.py +12 -106
  66. biotite/structure/io/general.py +167 -181
  67. biotite/structure/io/gro/file.py +16 -16
  68. biotite/structure/io/mmtf/__init__.py +3 -0
  69. biotite/structure/io/mmtf/convertarray.c +219 -198
  70. biotite/structure/io/mmtf/convertarray.cp310-win_amd64.pyd +0 -0
  71. biotite/structure/io/mmtf/convertfile.c +217 -197
  72. biotite/structure/io/mmtf/convertfile.cp310-win_amd64.pyd +0 -0
  73. biotite/structure/io/mmtf/decode.c +225 -204
  74. biotite/structure/io/mmtf/decode.cp310-win_amd64.pyd +0 -0
  75. biotite/structure/io/mmtf/encode.c +215 -196
  76. biotite/structure/io/mmtf/encode.cp310-win_amd64.pyd +0 -0
  77. biotite/structure/io/mmtf/file.py +34 -26
  78. biotite/structure/io/mol/__init__.py +4 -2
  79. biotite/structure/io/mol/convert.py +71 -7
  80. biotite/structure/io/mol/ctab.py +414 -0
  81. biotite/structure/io/mol/header.py +116 -0
  82. biotite/structure/io/mol/{file.py → mol.py} +69 -82
  83. biotite/structure/io/mol/sdf.py +909 -0
  84. biotite/structure/io/npz/__init__.py +3 -0
  85. biotite/structure/io/npz/file.py +21 -18
  86. biotite/structure/io/pdb/__init__.py +3 -3
  87. biotite/structure/io/pdb/file.py +89 -34
  88. biotite/structure/io/pdb/hybrid36.c +63 -43
  89. biotite/structure/io/pdb/hybrid36.cp310-win_amd64.pyd +0 -0
  90. biotite/structure/io/pdbqt/file.py +32 -32
  91. biotite/structure/io/pdbx/__init__.py +12 -6
  92. biotite/structure/io/pdbx/bcif.py +648 -0
  93. biotite/structure/io/pdbx/cif.py +1032 -0
  94. biotite/structure/io/pdbx/component.py +246 -0
  95. biotite/structure/io/pdbx/convert.py +858 -386
  96. biotite/structure/io/pdbx/encoding.c +112813 -0
  97. biotite/structure/io/pdbx/encoding.cp310-win_amd64.pyd +0 -0
  98. biotite/structure/io/pdbx/legacy.py +267 -0
  99. biotite/structure/molecules.py +151 -151
  100. biotite/structure/repair.py +253 -0
  101. biotite/structure/sasa.c +215 -196
  102. biotite/structure/sasa.cp310-win_amd64.pyd +0 -0
  103. biotite/structure/sequence.py +112 -0
  104. biotite/structure/superimpose.py +618 -116
  105. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/METADATA +3 -3
  106. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/RECORD +109 -103
  107. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/WHEEL +1 -1
  108. biotite/structure/info/amino_acids.json +0 -1556
  109. biotite/structure/info/amino_acids.py +0 -42
  110. biotite/structure/info/carbohydrates.json +0 -1122
  111. biotite/structure/info/carbohydrates.py +0 -39
  112. biotite/structure/info/intra_bonds.msgpack +0 -0
  113. biotite/structure/info/link_types.msgpack +0 -1
  114. biotite/structure/info/nucleotides.json +0 -772
  115. biotite/structure/info/nucleotides.py +0 -39
  116. biotite/structure/info/residue_masses.msgpack +0 -0
  117. biotite/structure/info/residue_names.msgpack +0 -3
  118. biotite/structure/info/residues.msgpack +0 -0
  119. biotite/structure/io/pdbx/file.py +0 -652
  120. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/LICENSE.rst +0 -0
  121. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.0.7 */
1
+ /* Generated by Cython 3.0.10 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -37,10 +37,10 @@ END: Cython Metadata */
37
37
  #else
38
38
  #define __PYX_EXTRA_ABI_MODULE_NAME ""
39
39
  #endif
40
- #define CYTHON_ABI "3_0_7" __PYX_EXTRA_ABI_MODULE_NAME
40
+ #define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
41
41
  #define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
42
42
  #define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
43
- #define CYTHON_HEX_VERSION 0x030007F0
43
+ #define CYTHON_HEX_VERSION 0x03000AF0
44
44
  #define CYTHON_FUTURE_DIVISION 1
45
45
  #include <stddef.h>
46
46
  #ifndef offsetof
@@ -132,6 +132,8 @@ END: Cython Metadata */
132
132
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
133
133
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
134
134
  #endif
135
+ #undef CYTHON_USE_FREELISTS
136
+ #define CYTHON_USE_FREELISTS 0
135
137
  #elif defined(PYPY_VERSION)
136
138
  #define CYTHON_COMPILING_IN_PYPY 1
137
139
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -193,6 +195,8 @@ END: Cython Metadata */
193
195
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
194
196
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
195
197
  #endif
198
+ #undef CYTHON_USE_FREELISTS
199
+ #define CYTHON_USE_FREELISTS 0
196
200
  #elif defined(CYTHON_LIMITED_API)
197
201
  #ifdef Py_LIMITED_API
198
202
  #undef __PYX_LIMITED_VERSION_HEX
@@ -254,6 +258,8 @@ END: Cython Metadata */
254
258
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
255
259
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
256
260
  #endif
261
+ #undef CYTHON_USE_FREELISTS
262
+ #define CYTHON_USE_FREELISTS 0
257
263
  #elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
258
264
  #define CYTHON_COMPILING_IN_PYPY 0
259
265
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -263,11 +269,17 @@ END: Cython Metadata */
263
269
  #ifndef CYTHON_USE_TYPE_SLOTS
264
270
  #define CYTHON_USE_TYPE_SLOTS 1
265
271
  #endif
272
+ #ifndef CYTHON_USE_TYPE_SPECS
273
+ #define CYTHON_USE_TYPE_SPECS 0
274
+ #endif
266
275
  #undef CYTHON_USE_PYTYPE_LOOKUP
267
276
  #define CYTHON_USE_PYTYPE_LOOKUP 0
268
277
  #ifndef CYTHON_USE_ASYNC_SLOTS
269
278
  #define CYTHON_USE_ASYNC_SLOTS 1
270
279
  #endif
280
+ #ifndef CYTHON_USE_PYLONG_INTERNALS
281
+ #define CYTHON_USE_PYLONG_INTERNALS 0
282
+ #endif
271
283
  #undef CYTHON_USE_PYLIST_INTERNALS
272
284
  #define CYTHON_USE_PYLIST_INTERNALS 0
273
285
  #ifndef CYTHON_USE_UNICODE_INTERNALS
@@ -275,8 +287,6 @@ END: Cython Metadata */
275
287
  #endif
276
288
  #undef CYTHON_USE_UNICODE_WRITER
277
289
  #define CYTHON_USE_UNICODE_WRITER 0
278
- #undef CYTHON_USE_PYLONG_INTERNALS
279
- #define CYTHON_USE_PYLONG_INTERNALS 0
280
290
  #ifndef CYTHON_AVOID_BORROWED_REFS
281
291
  #define CYTHON_AVOID_BORROWED_REFS 0
282
292
  #endif
@@ -288,11 +298,22 @@ END: Cython Metadata */
288
298
  #endif
289
299
  #undef CYTHON_FAST_THREAD_STATE
290
300
  #define CYTHON_FAST_THREAD_STATE 0
301
+ #undef CYTHON_FAST_GIL
302
+ #define CYTHON_FAST_GIL 0
303
+ #ifndef CYTHON_METH_FASTCALL
304
+ #define CYTHON_METH_FASTCALL 1
305
+ #endif
291
306
  #undef CYTHON_FAST_PYCALL
292
307
  #define CYTHON_FAST_PYCALL 0
308
+ #ifndef CYTHON_PEP487_INIT_SUBCLASS
309
+ #define CYTHON_PEP487_INIT_SUBCLASS 1
310
+ #endif
293
311
  #ifndef CYTHON_PEP489_MULTI_PHASE_INIT
294
312
  #define CYTHON_PEP489_MULTI_PHASE_INIT 1
295
313
  #endif
314
+ #ifndef CYTHON_USE_MODULE_STATE
315
+ #define CYTHON_USE_MODULE_STATE 0
316
+ #endif
296
317
  #ifndef CYTHON_USE_TP_FINALIZE
297
318
  #define CYTHON_USE_TP_FINALIZE 1
298
319
  #endif
@@ -300,6 +321,12 @@ END: Cython Metadata */
300
321
  #define CYTHON_USE_DICT_VERSIONS 0
301
322
  #undef CYTHON_USE_EXC_INFO_STACK
302
323
  #define CYTHON_USE_EXC_INFO_STACK 0
324
+ #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
325
+ #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
326
+ #endif
327
+ #ifndef CYTHON_USE_FREELISTS
328
+ #define CYTHON_USE_FREELISTS 0
329
+ #endif
303
330
  #else
304
331
  #define CYTHON_COMPILING_IN_PYPY 0
305
332
  #define CYTHON_COMPILING_IN_CPYTHON 1
@@ -390,6 +417,9 @@ END: Cython Metadata */
390
417
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
391
418
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
392
419
  #endif
420
+ #ifndef CYTHON_USE_FREELISTS
421
+ #define CYTHON_USE_FREELISTS 1
422
+ #endif
393
423
  #endif
394
424
  #if !defined(CYTHON_FAST_PYCCALL)
395
425
  #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
@@ -582,14 +612,14 @@ END: Cython Metadata */
582
612
  PyObject *exception_table = NULL;
583
613
  PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
584
614
  #if __PYX_LIMITED_VERSION_HEX < 0x030B0000
585
- PyObject *version_info; // borrowed
615
+ PyObject *version_info;
586
616
  PyObject *py_minor_version = NULL;
587
617
  #endif
588
618
  long minor_version = 0;
589
619
  PyObject *type, *value, *traceback;
590
620
  PyErr_Fetch(&type, &value, &traceback);
591
621
  #if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
592
- minor_version = 11; // we don't yet need to distinguish between versions > 11
622
+ minor_version = 11;
593
623
  #else
594
624
  if (!(version_info = PySys_GetObject("version_info"))) goto end;
595
625
  if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
@@ -647,7 +677,7 @@ END: Cython Metadata */
647
677
  PyObject *fv, PyObject *cell, PyObject* fn,
648
678
  PyObject *name, int fline, PyObject *lnos) {
649
679
  PyCodeObject *result;
650
- PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0); // we don't have access to __pyx_empty_bytes here
680
+ PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
651
681
  if (!empty_bytes) return NULL;
652
682
  result =
653
683
  #if PY_VERSION_HEX >= 0x030C0000
@@ -733,8 +763,13 @@ END: Cython Metadata */
733
763
  typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
734
764
  Py_ssize_t nargs, PyObject *kwnames);
735
765
  #else
736
- #define __Pyx_PyCFunctionFast _PyCFunctionFast
737
- #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
766
+ #if PY_VERSION_HEX >= 0x030d00A4
767
+ # define __Pyx_PyCFunctionFast PyCFunctionFast
768
+ # define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
769
+ #else
770
+ # define __Pyx_PyCFunctionFast _PyCFunctionFast
771
+ # define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
772
+ #endif
738
773
  #endif
739
774
  #if CYTHON_METH_FASTCALL
740
775
  #define __Pyx_METH_FASTCALL METH_FASTCALL
@@ -1086,7 +1121,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
1086
1121
  #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
1087
1122
  #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
1088
1123
  #endif
1089
- #if PY_VERSION_HEX >= 0x030d00A1
1124
+ #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
1090
1125
  #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
1091
1126
  #else
1092
1127
  static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
@@ -1173,7 +1208,7 @@ static CYTHON_INLINE float __PYX_NAN() {
1173
1208
  #endif
1174
1209
 
1175
1210
  #define __PYX_MARK_ERR_POS(f_index, lineno) \
1176
- { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1211
+ { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1177
1212
  #define __PYX_ERR(f_index, lineno, Ln_error) \
1178
1213
  { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
1179
1214
 
@@ -1288,24 +1323,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1288
1323
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1289
1324
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1290
1325
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1291
- #if CYTHON_COMPILING_IN_LIMITED_API
1292
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1293
- {
1294
- const wchar_t *u_end = u;
1295
- while (*u_end++) ;
1296
- return (size_t)(u_end - u - 1);
1297
- }
1298
- #else
1299
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1300
- {
1301
- const Py_UNICODE *u_end = u;
1302
- while (*u_end++) ;
1303
- return (size_t)(u_end - u - 1);
1304
- }
1305
- #endif
1306
1326
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1307
- #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1308
- #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1309
1327
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1310
1328
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1311
1329
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -1355,7 +1373,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1355
1373
  #endif
1356
1374
  typedef Py_ssize_t __Pyx_compact_pylong;
1357
1375
  typedef size_t __Pyx_compact_upylong;
1358
- #else // Py < 3.12
1376
+ #else
1359
1377
  #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
1360
1378
  #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
1361
1379
  #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
@@ -1645,7 +1663,7 @@ typedef struct {
1645
1663
 
1646
1664
  /* #### Code section: numeric_typedefs ### */
1647
1665
 
1648
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1666
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1649
1667
  * # in Cython to enable them only on the right systems.
1650
1668
  *
1651
1669
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1654,7 +1672,7 @@ typedef struct {
1654
1672
  */
1655
1673
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1656
1674
 
1657
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1675
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1658
1676
  *
1659
1677
  * ctypedef npy_int8 int8_t
1660
1678
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1663,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1663
1681
  */
1664
1682
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1665
1683
 
1666
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
1684
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
1667
1685
  * ctypedef npy_int8 int8_t
1668
1686
  * ctypedef npy_int16 int16_t
1669
1687
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1672,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1672
1690
  */
1673
1691
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1674
1692
 
1675
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":735
1693
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":735
1676
1694
  * ctypedef npy_int16 int16_t
1677
1695
  * ctypedef npy_int32 int32_t
1678
1696
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1681,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1681
1699
  */
1682
1700
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1683
1701
 
1684
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1702
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1685
1703
  * #ctypedef npy_int128 int128_t
1686
1704
  *
1687
1705
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1690,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1690
1708
  */
1691
1709
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1692
1710
 
1693
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1711
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1694
1712
  *
1695
1713
  * ctypedef npy_uint8 uint8_t
1696
1714
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1699,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1699
1717
  */
1700
1718
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1701
1719
 
1702
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
1720
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
1703
1721
  * ctypedef npy_uint8 uint8_t
1704
1722
  * ctypedef npy_uint16 uint16_t
1705
1723
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1708,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1708
1726
  */
1709
1727
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1710
1728
 
1711
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":742
1729
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":742
1712
1730
  * ctypedef npy_uint16 uint16_t
1713
1731
  * ctypedef npy_uint32 uint32_t
1714
1732
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1717,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1717
1735
  */
1718
1736
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1719
1737
 
1720
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
1738
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
1721
1739
  * #ctypedef npy_uint128 uint128_t
1722
1740
  *
1723
1741
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1726,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1726
1744
  */
1727
1745
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1728
1746
 
1729
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":747
1747
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":747
1730
1748
  *
1731
1749
  * ctypedef npy_float32 float32_t
1732
1750
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1735,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1735
1753
  */
1736
1754
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1737
1755
 
1738
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
1756
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
1739
1757
  * # The int types are mapped a bit surprising --
1740
1758
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1741
1759
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1744,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1744
1762
  */
1745
1763
  typedef npy_long __pyx_t_5numpy_int_t;
1746
1764
 
1747
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1765
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1748
1766
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1749
1767
  * ctypedef npy_long int_t
1750
1768
  * ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1753
1771
  */
1754
1772
  typedef npy_longlong __pyx_t_5numpy_long_t;
1755
1773
 
1756
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1774
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1757
1775
  * ctypedef npy_long int_t
1758
1776
  * ctypedef npy_longlong long_t
1759
1777
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
1762
1780
  */
1763
1781
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1764
1782
 
1765
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1783
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1766
1784
  * ctypedef npy_longlong longlong_t
1767
1785
  *
1768
1786
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1771,7 +1789,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1771
1789
  */
1772
1790
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1773
1791
 
1774
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1792
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1775
1793
  *
1776
1794
  * ctypedef npy_ulong uint_t
1777
1795
  * ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
@@ -1780,7 +1798,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1780
1798
  */
1781
1799
  typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1782
1800
 
1783
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":762
1801
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":762
1784
1802
  * ctypedef npy_ulong uint_t
1785
1803
  * ctypedef npy_ulonglong ulong_t
1786
1804
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1789,7 +1807,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1789
1807
  */
1790
1808
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1791
1809
 
1792
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1810
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1793
1811
  * ctypedef npy_ulonglong ulonglong_t
1794
1812
  *
1795
1813
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1798,7 +1816,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1798
1816
  */
1799
1817
  typedef npy_intp __pyx_t_5numpy_intp_t;
1800
1818
 
1801
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1819
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1802
1820
  *
1803
1821
  * ctypedef npy_intp intp_t
1804
1822
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1807,7 +1825,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1807
1825
  */
1808
1826
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1809
1827
 
1810
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1828
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1811
1829
  * ctypedef npy_uintp uintp_t
1812
1830
  *
1813
1831
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1816,7 +1834,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1816
1834
  */
1817
1835
  typedef npy_double __pyx_t_5numpy_float_t;
1818
1836
 
1819
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1837
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1820
1838
  *
1821
1839
  * ctypedef npy_double float_t
1822
1840
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1825,7 +1843,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1825
1843
  */
1826
1844
  typedef npy_double __pyx_t_5numpy_double_t;
1827
1845
 
1828
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1846
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1829
1847
  * ctypedef npy_double float_t
1830
1848
  * ctypedef npy_double double_t
1831
1849
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1893,7 +1911,7 @@ struct __pyx_MemviewEnum_obj;
1893
1911
  struct __pyx_memoryview_obj;
1894
1912
  struct __pyx_memoryviewslice_obj;
1895
1913
 
1896
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1914
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1897
1915
  * ctypedef npy_longdouble longdouble_t
1898
1916
  *
1899
1917
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1902,7 +1920,7 @@ struct __pyx_memoryviewslice_obj;
1902
1920
  */
1903
1921
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1904
1922
 
1905
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1923
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1906
1924
  *
1907
1925
  * ctypedef npy_cfloat cfloat_t
1908
1926
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1911,7 +1929,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1911
1929
  */
1912
1930
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1913
1931
 
1914
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
1932
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
1915
1933
  * ctypedef npy_cfloat cfloat_t
1916
1934
  * ctypedef npy_cdouble cdouble_t
1917
1935
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1920,7 +1938,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1920
1938
  */
1921
1939
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1922
1940
 
1923
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":775
1941
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":775
1924
1942
  * ctypedef npy_clongdouble clongdouble_t
1925
1943
  *
1926
1944
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2226,8 +2244,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2226
2244
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2227
2245
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2228
2246
  #else
2229
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2230
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2247
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2248
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2231
2249
  #endif
2232
2250
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2233
2251
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2243,8 +2261,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2243
2261
  #else
2244
2262
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2245
2263
  #endif
2246
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2247
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2264
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2265
+ to have the same reference counting */
2266
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2248
2267
  #else
2249
2268
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2250
2269
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2698,22 +2717,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2698
2717
  #endif
2699
2718
 
2700
2719
  /* TypeImport.proto */
2701
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2702
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2720
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2721
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2703
2722
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2704
2723
  #include <stdalign.h>
2705
2724
  #endif
2706
2725
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2707
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2726
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2708
2727
  #else
2709
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2728
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2710
2729
  #endif
2711
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2712
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2713
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2714
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2730
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2731
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2732
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2733
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2715
2734
  };
2716
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size);
2735
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size);
2717
2736
  #endif
2718
2737
 
2719
2738
  /* FetchSharedCythonModule.proto */
@@ -2806,7 +2825,7 @@ typedef struct {
2806
2825
  #endif
2807
2826
  void *defaults;
2808
2827
  int defaults_pyobjects;
2809
- size_t defaults_size; // used by FusedFunction for copying defaults
2828
+ size_t defaults_size;
2810
2829
  int flags;
2811
2830
  PyObject *defaults_tuple;
2812
2831
  PyObject *defaults_kwdict;
@@ -18130,7 +18149,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18130
18149
  return __pyx_r;
18131
18150
  }
18132
18151
 
18133
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
18152
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
18134
18153
  *
18135
18154
  * @property
18136
18155
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18141,7 +18160,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18141
18160
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
18142
18161
  PyObject *__pyx_r;
18143
18162
 
18144
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":249
18163
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":249
18145
18164
  * """Returns a borrowed reference to the object owning the data/memory.
18146
18165
  * """
18147
18166
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -18151,7 +18170,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18151
18170
  __pyx_r = PyArray_BASE(__pyx_v_self);
18152
18171
  goto __pyx_L0;
18153
18172
 
18154
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
18173
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":246
18155
18174
  *
18156
18175
  * @property
18157
18176
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18164,7 +18183,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18164
18183
  return __pyx_r;
18165
18184
  }
18166
18185
 
18167
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
18186
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
18168
18187
  *
18169
18188
  * @property
18170
18189
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18178,7 +18197,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18178
18197
  PyArray_Descr *__pyx_t_1;
18179
18198
  __Pyx_RefNannySetupContext("descr", 1);
18180
18199
 
18181
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":255
18200
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":255
18182
18201
  * """Returns an owned reference to the dtype of the array.
18183
18202
  * """
18184
18203
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -18191,7 +18210,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18191
18210
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
18192
18211
  goto __pyx_L0;
18193
18212
 
18194
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
18213
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":252
18195
18214
  *
18196
18215
  * @property
18197
18216
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18206,7 +18225,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18206
18225
  return __pyx_r;
18207
18226
  }
18208
18227
 
18209
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
18228
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
18210
18229
  *
18211
18230
  * @property
18212
18231
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18217,7 +18236,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18217
18236
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
18218
18237
  int __pyx_r;
18219
18238
 
18220
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":261
18239
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":261
18221
18240
  * """Returns the number of dimensions in the array.
18222
18241
  * """
18223
18242
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -18227,7 +18246,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18227
18246
  __pyx_r = PyArray_NDIM(__pyx_v_self);
18228
18247
  goto __pyx_L0;
18229
18248
 
18230
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
18249
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":258
18231
18250
  *
18232
18251
  * @property
18233
18252
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18240,7 +18259,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18240
18259
  return __pyx_r;
18241
18260
  }
18242
18261
 
18243
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
18262
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
18244
18263
  *
18245
18264
  * @property
18246
18265
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18251,7 +18270,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18251
18270
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
18252
18271
  npy_intp *__pyx_r;
18253
18272
 
18254
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":269
18273
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":269
18255
18274
  * Can return NULL for 0-dimensional arrays.
18256
18275
  * """
18257
18276
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -18261,7 +18280,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18261
18280
  __pyx_r = PyArray_DIMS(__pyx_v_self);
18262
18281
  goto __pyx_L0;
18263
18282
 
18264
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
18283
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":264
18265
18284
  *
18266
18285
  * @property
18267
18286
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18274,7 +18293,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18274
18293
  return __pyx_r;
18275
18294
  }
18276
18295
 
18277
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
18296
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
18278
18297
  *
18279
18298
  * @property
18280
18299
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18285,7 +18304,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18285
18304
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
18286
18305
  npy_intp *__pyx_r;
18287
18306
 
18288
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":276
18307
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":276
18289
18308
  * The number of elements matches the number of dimensions of the array (ndim).
18290
18309
  * """
18291
18310
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -18295,7 +18314,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18295
18314
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
18296
18315
  goto __pyx_L0;
18297
18316
 
18298
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
18317
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":272
18299
18318
  *
18300
18319
  * @property
18301
18320
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18308,7 +18327,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18308
18327
  return __pyx_r;
18309
18328
  }
18310
18329
 
18311
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
18330
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
18312
18331
  *
18313
18332
  * @property
18314
18333
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18319,7 +18338,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18319
18338
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
18320
18339
  npy_intp __pyx_r;
18321
18340
 
18322
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":282
18341
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":282
18323
18342
  * """Returns the total size (in number of elements) of the array.
18324
18343
  * """
18325
18344
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -18329,7 +18348,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18329
18348
  __pyx_r = PyArray_SIZE(__pyx_v_self);
18330
18349
  goto __pyx_L0;
18331
18350
 
18332
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
18351
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":279
18333
18352
  *
18334
18353
  * @property
18335
18354
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18342,7 +18361,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18342
18361
  return __pyx_r;
18343
18362
  }
18344
18363
 
18345
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
18364
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
18346
18365
  *
18347
18366
  * @property
18348
18367
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18353,7 +18372,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18353
18372
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
18354
18373
  char *__pyx_r;
18355
18374
 
18356
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":291
18375
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":291
18357
18376
  * of `PyArray_DATA()` instead, which returns a 'void*'.
18358
18377
  * """
18359
18378
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -18363,7 +18382,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18363
18382
  __pyx_r = PyArray_BYTES(__pyx_v_self);
18364
18383
  goto __pyx_L0;
18365
18384
 
18366
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
18385
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":285
18367
18386
  *
18368
18387
  * @property
18369
18388
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18376,7 +18395,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18376
18395
  return __pyx_r;
18377
18396
  }
18378
18397
 
18379
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18398
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18380
18399
  * ctypedef npy_cdouble complex_t
18381
18400
  *
18382
18401
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18393,7 +18412,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18393
18412
  int __pyx_clineno = 0;
18394
18413
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
18395
18414
 
18396
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":778
18415
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":778
18397
18416
  *
18398
18417
  * cdef inline object PyArray_MultiIterNew1(a):
18399
18418
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -18407,7 +18426,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18407
18426
  __pyx_t_1 = 0;
18408
18427
  goto __pyx_L0;
18409
18428
 
18410
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18429
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18411
18430
  * ctypedef npy_cdouble complex_t
18412
18431
  *
18413
18432
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18426,7 +18445,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18426
18445
  return __pyx_r;
18427
18446
  }
18428
18447
 
18429
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18448
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18430
18449
  * return PyArray_MultiIterNew(1, <void*>a)
18431
18450
  *
18432
18451
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18443,7 +18462,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18443
18462
  int __pyx_clineno = 0;
18444
18463
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
18445
18464
 
18446
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":781
18465
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":781
18447
18466
  *
18448
18467
  * cdef inline object PyArray_MultiIterNew2(a, b):
18449
18468
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -18457,7 +18476,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18457
18476
  __pyx_t_1 = 0;
18458
18477
  goto __pyx_L0;
18459
18478
 
18460
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18479
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18461
18480
  * return PyArray_MultiIterNew(1, <void*>a)
18462
18481
  *
18463
18482
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18476,7 +18495,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18476
18495
  return __pyx_r;
18477
18496
  }
18478
18497
 
18479
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18498
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18480
18499
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18481
18500
  *
18482
18501
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18493,7 +18512,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18493
18512
  int __pyx_clineno = 0;
18494
18513
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
18495
18514
 
18496
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":784
18515
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":784
18497
18516
  *
18498
18517
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
18499
18518
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -18507,7 +18526,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18507
18526
  __pyx_t_1 = 0;
18508
18527
  goto __pyx_L0;
18509
18528
 
18510
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18529
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18511
18530
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18512
18531
  *
18513
18532
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18526,7 +18545,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18526
18545
  return __pyx_r;
18527
18546
  }
18528
18547
 
18529
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18548
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18530
18549
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18531
18550
  *
18532
18551
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18543,7 +18562,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18543
18562
  int __pyx_clineno = 0;
18544
18563
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
18545
18564
 
18546
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":787
18565
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":787
18547
18566
  *
18548
18567
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
18549
18568
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -18557,7 +18576,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18557
18576
  __pyx_t_1 = 0;
18558
18577
  goto __pyx_L0;
18559
18578
 
18560
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18579
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18561
18580
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18562
18581
  *
18563
18582
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18576,7 +18595,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18576
18595
  return __pyx_r;
18577
18596
  }
18578
18597
 
18579
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18598
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18580
18599
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18581
18600
  *
18582
18601
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18593,7 +18612,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18593
18612
  int __pyx_clineno = 0;
18594
18613
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
18595
18614
 
18596
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
18615
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
18597
18616
  *
18598
18617
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
18599
18618
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -18607,7 +18626,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18607
18626
  __pyx_t_1 = 0;
18608
18627
  goto __pyx_L0;
18609
18628
 
18610
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18629
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18611
18630
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18612
18631
  *
18613
18632
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18626,7 +18645,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18626
18645
  return __pyx_r;
18627
18646
  }
18628
18647
 
18629
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
18648
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
18630
18649
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18631
18650
  *
18632
18651
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18640,7 +18659,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18640
18659
  int __pyx_t_1;
18641
18660
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
18642
18661
 
18643
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
18662
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
18644
18663
  *
18645
18664
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18646
18665
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18650,7 +18669,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18650
18669
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
18651
18670
  if (__pyx_t_1) {
18652
18671
 
18653
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":794
18672
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":794
18654
18673
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18655
18674
  * if PyDataType_HASSUBARRAY(d):
18656
18675
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -18662,7 +18681,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18662
18681
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
18663
18682
  goto __pyx_L0;
18664
18683
 
18665
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
18684
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
18666
18685
  *
18667
18686
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18668
18687
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18671,7 +18690,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18671
18690
  */
18672
18691
  }
18673
18692
 
18674
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":796
18693
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":796
18675
18694
  * return <tuple>d.subarray.shape
18676
18695
  * else:
18677
18696
  * return () # <<<<<<<<<<<<<<
@@ -18685,7 +18704,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18685
18704
  goto __pyx_L0;
18686
18705
  }
18687
18706
 
18688
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
18707
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
18689
18708
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18690
18709
  *
18691
18710
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18700,7 +18719,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18700
18719
  return __pyx_r;
18701
18720
  }
18702
18721
 
18703
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
18722
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
18704
18723
  * int _import_umath() except -1
18705
18724
  *
18706
18725
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -18710,7 +18729,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18710
18729
 
18711
18730
  static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
18712
18731
 
18713
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
18732
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
18714
18733
  *
18715
18734
  * cdef inline void set_array_base(ndarray arr, object base):
18716
18735
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -18719,7 +18738,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18719
18738
  */
18720
18739
  Py_INCREF(__pyx_v_base);
18721
18740
 
18722
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
18741
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
18723
18742
  * cdef inline void set_array_base(ndarray arr, object base):
18724
18743
  * Py_INCREF(base) # important to do this before stealing the reference below!
18725
18744
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -18728,7 +18747,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18728
18747
  */
18729
18748
  (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
18730
18749
 
18731
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
18750
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
18732
18751
  * int _import_umath() except -1
18733
18752
  *
18734
18753
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -18739,7 +18758,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18739
18758
  /* function exit code */
18740
18759
  }
18741
18760
 
18742
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
18761
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
18743
18762
  * PyArray_SetBaseObject(arr, base)
18744
18763
  *
18745
18764
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -18754,7 +18773,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18754
18773
  int __pyx_t_1;
18755
18774
  __Pyx_RefNannySetupContext("get_array_base", 1);
18756
18775
 
18757
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
18776
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
18758
18777
  *
18759
18778
  * cdef inline object get_array_base(ndarray arr):
18760
18779
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -18763,7 +18782,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18763
18782
  */
18764
18783
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
18765
18784
 
18766
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
18785
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
18767
18786
  * cdef inline object get_array_base(ndarray arr):
18768
18787
  * base = PyArray_BASE(arr)
18769
18788
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -18773,7 +18792,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18773
18792
  __pyx_t_1 = (__pyx_v_base == NULL);
18774
18793
  if (__pyx_t_1) {
18775
18794
 
18776
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
18795
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
18777
18796
  * base = PyArray_BASE(arr)
18778
18797
  * if base is NULL:
18779
18798
  * return None # <<<<<<<<<<<<<<
@@ -18784,7 +18803,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18784
18803
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
18785
18804
  goto __pyx_L0;
18786
18805
 
18787
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
18806
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
18788
18807
  * cdef inline object get_array_base(ndarray arr):
18789
18808
  * base = PyArray_BASE(arr)
18790
18809
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -18793,7 +18812,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18793
18812
  */
18794
18813
  }
18795
18814
 
18796
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":979
18815
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":979
18797
18816
  * if base is NULL:
18798
18817
  * return None
18799
18818
  * return <object>base # <<<<<<<<<<<<<<
@@ -18805,7 +18824,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18805
18824
  __pyx_r = ((PyObject *)__pyx_v_base);
18806
18825
  goto __pyx_L0;
18807
18826
 
18808
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
18827
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
18809
18828
  * PyArray_SetBaseObject(arr, base)
18810
18829
  *
18811
18830
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -18820,7 +18839,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18820
18839
  return __pyx_r;
18821
18840
  }
18822
18841
 
18823
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
18842
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
18824
18843
  * # Versions of the import_* functions which are more suitable for
18825
18844
  * # Cython code.
18826
18845
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -18844,7 +18863,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18844
18863
  int __pyx_clineno = 0;
18845
18864
  __Pyx_RefNannySetupContext("import_array", 1);
18846
18865
 
18847
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
18866
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
18848
18867
  * # Cython code.
18849
18868
  * cdef inline int import_array() except -1:
18850
18869
  * try: # <<<<<<<<<<<<<<
@@ -18860,7 +18879,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18860
18879
  __Pyx_XGOTREF(__pyx_t_3);
18861
18880
  /*try:*/ {
18862
18881
 
18863
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
18882
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
18864
18883
  * cdef inline int import_array() except -1:
18865
18884
  * try:
18866
18885
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -18869,7 +18888,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18869
18888
  */
18870
18889
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 985, __pyx_L3_error)
18871
18890
 
18872
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
18891
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
18873
18892
  * # Cython code.
18874
18893
  * cdef inline int import_array() except -1:
18875
18894
  * try: # <<<<<<<<<<<<<<
@@ -18883,7 +18902,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18883
18902
  goto __pyx_L8_try_end;
18884
18903
  __pyx_L3_error:;
18885
18904
 
18886
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
18905
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
18887
18906
  * try:
18888
18907
  * __pyx_import_array()
18889
18908
  * except Exception: # <<<<<<<<<<<<<<
@@ -18898,7 +18917,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18898
18917
  __Pyx_XGOTREF(__pyx_t_6);
18899
18918
  __Pyx_XGOTREF(__pyx_t_7);
18900
18919
 
18901
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
18920
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
18902
18921
  * __pyx_import_array()
18903
18922
  * except Exception:
18904
18923
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -18913,7 +18932,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18913
18932
  }
18914
18933
  goto __pyx_L5_except_error;
18915
18934
 
18916
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
18935
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
18917
18936
  * # Cython code.
18918
18937
  * cdef inline int import_array() except -1:
18919
18938
  * try: # <<<<<<<<<<<<<<
@@ -18929,7 +18948,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18929
18948
  __pyx_L8_try_end:;
18930
18949
  }
18931
18950
 
18932
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
18951
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
18933
18952
  * # Versions of the import_* functions which are more suitable for
18934
18953
  * # Cython code.
18935
18954
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -18952,7 +18971,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18952
18971
  return __pyx_r;
18953
18972
  }
18954
18973
 
18955
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
18974
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
18956
18975
  * raise ImportError("numpy.core.multiarray failed to import")
18957
18976
  *
18958
18977
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -18976,7 +18995,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
18976
18995
  int __pyx_clineno = 0;
18977
18996
  __Pyx_RefNannySetupContext("import_umath", 1);
18978
18997
 
18979
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
18998
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
18980
18999
  *
18981
19000
  * cdef inline int import_umath() except -1:
18982
19001
  * try: # <<<<<<<<<<<<<<
@@ -18992,7 +19011,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
18992
19011
  __Pyx_XGOTREF(__pyx_t_3);
18993
19012
  /*try:*/ {
18994
19013
 
18995
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
19014
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
18996
19015
  * cdef inline int import_umath() except -1:
18997
19016
  * try:
18998
19017
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19001,7 +19020,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19001
19020
  */
19002
19021
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 991, __pyx_L3_error)
19003
19022
 
19004
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19023
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19005
19024
  *
19006
19025
  * cdef inline int import_umath() except -1:
19007
19026
  * try: # <<<<<<<<<<<<<<
@@ -19015,7 +19034,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19015
19034
  goto __pyx_L8_try_end;
19016
19035
  __pyx_L3_error:;
19017
19036
 
19018
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19037
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19019
19038
  * try:
19020
19039
  * _import_umath()
19021
19040
  * except Exception: # <<<<<<<<<<<<<<
@@ -19030,7 +19049,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19030
19049
  __Pyx_XGOTREF(__pyx_t_6);
19031
19050
  __Pyx_XGOTREF(__pyx_t_7);
19032
19051
 
19033
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19052
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
19034
19053
  * _import_umath()
19035
19054
  * except Exception:
19036
19055
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19045,7 +19064,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19045
19064
  }
19046
19065
  goto __pyx_L5_except_error;
19047
19066
 
19048
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19067
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19049
19068
  *
19050
19069
  * cdef inline int import_umath() except -1:
19051
19070
  * try: # <<<<<<<<<<<<<<
@@ -19061,7 +19080,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19061
19080
  __pyx_L8_try_end:;
19062
19081
  }
19063
19082
 
19064
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19083
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19065
19084
  * raise ImportError("numpy.core.multiarray failed to import")
19066
19085
  *
19067
19086
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19084,7 +19103,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19084
19103
  return __pyx_r;
19085
19104
  }
19086
19105
 
19087
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19106
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19088
19107
  * raise ImportError("numpy.core.umath failed to import")
19089
19108
  *
19090
19109
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19108,7 +19127,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19108
19127
  int __pyx_clineno = 0;
19109
19128
  __Pyx_RefNannySetupContext("import_ufunc", 1);
19110
19129
 
19111
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19130
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19112
19131
  *
19113
19132
  * cdef inline int import_ufunc() except -1:
19114
19133
  * try: # <<<<<<<<<<<<<<
@@ -19124,7 +19143,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19124
19143
  __Pyx_XGOTREF(__pyx_t_3);
19125
19144
  /*try:*/ {
19126
19145
 
19127
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
19146
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
19128
19147
  * cdef inline int import_ufunc() except -1:
19129
19148
  * try:
19130
19149
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19133,7 +19152,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19133
19152
  */
19134
19153
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 997, __pyx_L3_error)
19135
19154
 
19136
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19155
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19137
19156
  *
19138
19157
  * cdef inline int import_ufunc() except -1:
19139
19158
  * try: # <<<<<<<<<<<<<<
@@ -19147,7 +19166,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19147
19166
  goto __pyx_L8_try_end;
19148
19167
  __pyx_L3_error:;
19149
19168
 
19150
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
19169
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
19151
19170
  * try:
19152
19171
  * _import_umath()
19153
19172
  * except Exception: # <<<<<<<<<<<<<<
@@ -19162,7 +19181,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19162
19181
  __Pyx_XGOTREF(__pyx_t_6);
19163
19182
  __Pyx_XGOTREF(__pyx_t_7);
19164
19183
 
19165
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19184
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
19166
19185
  * _import_umath()
19167
19186
  * except Exception:
19168
19187
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19177,7 +19196,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19177
19196
  }
19178
19197
  goto __pyx_L5_except_error;
19179
19198
 
19180
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19199
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
19181
19200
  *
19182
19201
  * cdef inline int import_ufunc() except -1:
19183
19202
  * try: # <<<<<<<<<<<<<<
@@ -19193,7 +19212,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19193
19212
  __pyx_L8_try_end:;
19194
19213
  }
19195
19214
 
19196
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19215
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
19197
19216
  * raise ImportError("numpy.core.umath failed to import")
19198
19217
  *
19199
19218
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19216,7 +19235,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19216
19235
  return __pyx_r;
19217
19236
  }
19218
19237
 
19219
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
19238
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
19220
19239
  *
19221
19240
  *
19222
19241
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19227,7 +19246,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19227
19246
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
19228
19247
  int __pyx_r;
19229
19248
 
19230
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19249
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
19231
19250
  * bool
19232
19251
  * """
19233
19252
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -19237,7 +19256,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19237
19256
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
19238
19257
  goto __pyx_L0;
19239
19258
 
19240
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
19259
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1002
19241
19260
  *
19242
19261
  *
19243
19262
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19250,7 +19269,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19250
19269
  return __pyx_r;
19251
19270
  }
19252
19271
 
19253
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
19272
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
19254
19273
  *
19255
19274
  *
19256
19275
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19261,7 +19280,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19261
19280
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
19262
19281
  int __pyx_r;
19263
19282
 
19264
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19283
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19265
19284
  * bool
19266
19285
  * """
19267
19286
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -19271,7 +19290,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19271
19290
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
19272
19291
  goto __pyx_L0;
19273
19292
 
19274
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
19293
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1017
19275
19294
  *
19276
19295
  *
19277
19296
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19284,7 +19303,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19284
19303
  return __pyx_r;
19285
19304
  }
19286
19305
 
19287
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
19306
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
19288
19307
  *
19289
19308
  *
19290
19309
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19295,7 +19314,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19295
19314
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
19296
19315
  npy_datetime __pyx_r;
19297
19316
 
19298
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19317
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19299
19318
  * also needed. That can be found using `get_datetime64_unit`.
19300
19319
  * """
19301
19320
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19305,7 +19324,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19305
19324
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
19306
19325
  goto __pyx_L0;
19307
19326
 
19308
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
19327
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1032
19309
19328
  *
19310
19329
  *
19311
19330
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19318,7 +19337,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19318
19337
  return __pyx_r;
19319
19338
  }
19320
19339
 
19321
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
19340
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
19322
19341
  *
19323
19342
  *
19324
19343
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19329,7 +19348,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19329
19348
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
19330
19349
  npy_timedelta __pyx_r;
19331
19350
 
19332
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19351
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19333
19352
  * returns the int64 value underlying scalar numpy timedelta64 object
19334
19353
  * """
19335
19354
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19339,7 +19358,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19339
19358
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
19340
19359
  goto __pyx_L0;
19341
19360
 
19342
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
19361
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1042
19343
19362
  *
19344
19363
  *
19345
19364
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19352,7 +19371,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19352
19371
  return __pyx_r;
19353
19372
  }
19354
19373
 
19355
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
19374
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
19356
19375
  *
19357
19376
  *
19358
19377
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19363,7 +19382,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19363
19382
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
19364
19383
  NPY_DATETIMEUNIT __pyx_r;
19365
19384
 
19366
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1053
19385
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1053
19367
19386
  * returns the unit part of the dtype for a numpy datetime64 object.
19368
19387
  * """
19369
19388
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -19371,7 +19390,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
19371
19390
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
19372
19391
  goto __pyx_L0;
19373
19392
 
19374
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
19393
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1049
19375
19394
  *
19376
19395
  *
19377
19396
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -21918,7 +21937,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
21918
21937
  __Pyx_GOTREF(__pyx_tuple__8);
21919
21938
  __Pyx_GIVEREF(__pyx_tuple__8);
21920
21939
 
21921
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
21940
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
21922
21941
  * __pyx_import_array()
21923
21942
  * except Exception:
21924
21943
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -21929,7 +21948,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
21929
21948
  __Pyx_GOTREF(__pyx_tuple__9);
21930
21949
  __Pyx_GIVEREF(__pyx_tuple__9);
21931
21950
 
21932
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-n889v233/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
21951
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-tu_hrx72/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
21933
21952
  * _import_umath()
21934
21953
  * except Exception:
21935
21954
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -22354,33 +22373,33 @@ static int __Pyx_modinit_type_import_code(void) {
22354
22373
  /*--- Type import code ---*/
22355
22374
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
22356
22375
  __Pyx_GOTREF(__pyx_t_1);
22357
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
22376
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
22358
22377
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
22359
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
22378
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
22360
22379
  #elif CYTHON_COMPILING_IN_LIMITED_API
22361
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
22380
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
22362
22381
  #else
22363
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
22382
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
22364
22383
  #endif
22365
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
22384
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
22366
22385
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
22367
22386
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 203, __pyx_L1_error)
22368
22387
  __Pyx_GOTREF(__pyx_t_1);
22369
- __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 203, __pyx_L1_error)
22370
- __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 226, __pyx_L1_error)
22371
- __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 230, __pyx_L1_error)
22372
- __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 239, __pyx_L1_error)
22373
- __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 813, __pyx_L1_error)
22374
- __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 815, __pyx_L1_error)
22375
- __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 817, __pyx_L1_error)
22376
- __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 819, __pyx_L1_error)
22377
- __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 821, __pyx_L1_error)
22378
- __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 823, __pyx_L1_error)
22379
- __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 825, __pyx_L1_error)
22380
- __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 827, __pyx_L1_error)
22381
- __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 829, __pyx_L1_error)
22382
- __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 831, __pyx_L1_error)
22383
- __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 869, __pyx_L1_error)
22388
+ __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 203, __pyx_L1_error)
22389
+ __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 226, __pyx_L1_error)
22390
+ __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 230, __pyx_L1_error)
22391
+ __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 239, __pyx_L1_error)
22392
+ __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 813, __pyx_L1_error)
22393
+ __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 815, __pyx_L1_error)
22394
+ __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 817, __pyx_L1_error)
22395
+ __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 819, __pyx_L1_error)
22396
+ __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 821, __pyx_L1_error)
22397
+ __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 823, __pyx_L1_error)
22398
+ __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 825, __pyx_L1_error)
22399
+ __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 827, __pyx_L1_error)
22400
+ __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 829, __pyx_L1_error)
22401
+ __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 831, __pyx_L1_error)
22402
+ __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 869, __pyx_L1_error)
22384
22403
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
22385
22404
  __Pyx_RefNannyFinishContext();
22386
22405
  return 0;
@@ -23756,11 +23775,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
23756
23775
  {
23757
23776
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
23758
23777
  if (unlikely(eq != 0)) {
23759
- if (unlikely(eq < 0)) return NULL; // error
23778
+ if (unlikely(eq < 0)) return NULL;
23760
23779
  return kwvalues[i];
23761
23780
  }
23762
23781
  }
23763
- return NULL; // not found (no exception set)
23782
+ return NULL;
23764
23783
  }
23765
23784
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
23766
23785
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -23873,7 +23892,7 @@ static int __Pyx_ParseOptionalKeywords(
23873
23892
  if (*name) {
23874
23893
  values[name-argnames] = value;
23875
23894
  #if CYTHON_AVOID_BORROWED_REFS
23876
- Py_INCREF(value); // transfer ownership of value to values
23895
+ Py_INCREF(value);
23877
23896
  Py_DECREF(key);
23878
23897
  #endif
23879
23898
  key = NULL;
@@ -23892,7 +23911,7 @@ static int __Pyx_ParseOptionalKeywords(
23892
23911
  && _PyString_Eq(**name, key)) {
23893
23912
  values[name-argnames] = value;
23894
23913
  #if CYTHON_AVOID_BORROWED_REFS
23895
- value = NULL; // ownership transferred to values
23914
+ value = NULL;
23896
23915
  #endif
23897
23916
  break;
23898
23917
  }
@@ -23924,7 +23943,7 @@ static int __Pyx_ParseOptionalKeywords(
23924
23943
  if (cmp == 0) {
23925
23944
  values[name-argnames] = value;
23926
23945
  #if CYTHON_AVOID_BORROWED_REFS
23927
- value = NULL; // ownership transferred to values
23946
+ value = NULL;
23928
23947
  #endif
23929
23948
  break;
23930
23949
  }
@@ -26432,10 +26451,10 @@ __PYX_GOOD:
26432
26451
  #endif
26433
26452
 
26434
26453
  /* TypeImport */
26435
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
26436
- #define __PYX_HAVE_RT_ImportType_3_0_7
26437
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
26438
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
26454
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
26455
+ #define __PYX_HAVE_RT_ImportType_3_0_10
26456
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
26457
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
26439
26458
  {
26440
26459
  PyObject *result = 0;
26441
26460
  char warning[200];
@@ -26489,7 +26508,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
26489
26508
  module_name, class_name, size, basicsize+itemsize);
26490
26509
  goto bad;
26491
26510
  }
26492
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
26511
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
26493
26512
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
26494
26513
  PyErr_Format(PyExc_ValueError,
26495
26514
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -26497,7 +26516,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
26497
26516
  module_name, class_name, size, basicsize, basicsize+itemsize);
26498
26517
  goto bad;
26499
26518
  }
26500
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
26519
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
26501
26520
  PyOS_snprintf(warning, sizeof(warning),
26502
26521
  "%s.%s size changed, may indicate binary incompatibility. "
26503
26522
  "Expected %zd from C header, got %zd from PyObject",
@@ -27497,7 +27516,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
27497
27516
  default:
27498
27517
  return NULL;
27499
27518
  }
27500
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
27519
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
27501
27520
  }
27502
27521
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
27503
27522
  {
@@ -27956,7 +27975,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
27956
27975
  #else
27957
27976
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
27958
27977
  #endif
27959
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
27978
+ Py_XDECREF(py_funcname);
27960
27979
  return py_code;
27961
27980
  bad:
27962
27981
  Py_XDECREF(py_funcname);