biotite 0.38.0__cp311-cp311-win_amd64.whl → 0.40.0__cp311-cp311-win_amd64.whl

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

Potentially problematic release.


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

Files changed (124) hide show
  1. biotite/__init__.py +3 -3
  2. biotite/application/application.py +33 -28
  3. biotite/application/dssp/app.py +18 -18
  4. biotite/application/sra/__init__.py +5 -0
  5. biotite/application/sra/app.py +337 -55
  6. biotite/database/entrez/__init__.py +2 -1
  7. biotite/database/entrez/check.py +14 -3
  8. biotite/database/entrez/download.py +20 -13
  9. biotite/database/entrez/key.py +44 -0
  10. biotite/database/entrez/query.py +38 -34
  11. biotite/database/pubchem/query.py +44 -44
  12. biotite/database/rcsb/download.py +19 -14
  13. biotite/database/rcsb/query.py +46 -46
  14. biotite/sequence/align/__init__.py +5 -1
  15. biotite/sequence/align/banded.c +1408 -1025
  16. biotite/sequence/align/banded.cp311-win_amd64.pyd +0 -0
  17. biotite/sequence/align/buckets.py +69 -0
  18. biotite/sequence/align/cigar.py +389 -0
  19. biotite/sequence/align/kmeralphabet.c +3220 -2850
  20. biotite/sequence/align/kmeralphabet.cp311-win_amd64.pyd +0 -0
  21. biotite/sequence/align/kmersimilarity.c +713 -663
  22. biotite/sequence/align/kmersimilarity.cp311-win_amd64.pyd +0 -0
  23. biotite/sequence/align/kmertable.cp311-win_amd64.pyd +0 -0
  24. biotite/sequence/align/kmertable.cpp +68398 -0
  25. biotite/sequence/align/localgapped.c +1507 -1074
  26. biotite/sequence/align/localgapped.cp311-win_amd64.pyd +0 -0
  27. biotite/sequence/align/localungapped.c +1143 -833
  28. biotite/sequence/align/localungapped.cp311-win_amd64.pyd +0 -0
  29. biotite/sequence/align/multiple.c +1569 -1092
  30. biotite/sequence/align/multiple.cp311-win_amd64.pyd +0 -0
  31. biotite/sequence/align/pairwise.c +1612 -1212
  32. biotite/sequence/align/pairwise.cp311-win_amd64.pyd +0 -0
  33. biotite/sequence/align/permutation.c +33259 -0
  34. biotite/sequence/align/permutation.cp311-win_amd64.pyd +0 -0
  35. biotite/sequence/align/primes.txt +821 -0
  36. biotite/sequence/align/{kmertable.c → selector.c} +9129 -16497
  37. biotite/sequence/align/selector.cp311-win_amd64.pyd +0 -0
  38. biotite/sequence/align/tracetable.c +685 -646
  39. biotite/sequence/align/tracetable.cp311-win_amd64.pyd +0 -0
  40. biotite/sequence/codec.c +1159 -841
  41. biotite/sequence/codec.cp311-win_amd64.pyd +0 -0
  42. biotite/sequence/graphics/alignment.py +212 -2
  43. biotite/sequence/io/genbank/annotation.py +11 -11
  44. biotite/sequence/phylo/nj.c +684 -636
  45. biotite/sequence/phylo/nj.cp311-win_amd64.pyd +0 -0
  46. biotite/sequence/phylo/tree.c +970 -673
  47. biotite/sequence/phylo/tree.cp311-win_amd64.pyd +0 -0
  48. biotite/sequence/phylo/upgma.c +672 -626
  49. biotite/sequence/phylo/upgma.cp311-win_amd64.pyd +0 -0
  50. biotite/structure/__init__.py +1 -1
  51. biotite/structure/atoms.py +1 -1
  52. biotite/structure/basepairs.py +7 -12
  53. biotite/structure/bonds.c +3861 -3749
  54. biotite/structure/bonds.cp311-win_amd64.pyd +0 -0
  55. biotite/structure/celllist.c +727 -707
  56. biotite/structure/celllist.cp311-win_amd64.pyd +0 -0
  57. biotite/structure/charges.c +1561 -1560
  58. biotite/structure/charges.cp311-win_amd64.pyd +0 -0
  59. biotite/structure/filter.py +30 -37
  60. biotite/structure/info/__init__.py +5 -8
  61. biotite/structure/info/atoms.py +25 -67
  62. biotite/structure/info/bonds.py +46 -100
  63. biotite/structure/info/ccd/README.rst +8 -0
  64. biotite/structure/info/ccd/amino_acids.txt +1646 -0
  65. biotite/structure/info/ccd/carbohydrates.txt +1133 -0
  66. biotite/structure/info/ccd/components.bcif +0 -0
  67. biotite/structure/info/ccd/nucleotides.txt +797 -0
  68. biotite/structure/info/ccd.py +95 -0
  69. biotite/structure/info/groups.py +90 -0
  70. biotite/structure/info/masses.py +21 -20
  71. biotite/structure/info/misc.py +11 -22
  72. biotite/structure/info/standardize.py +17 -12
  73. biotite/structure/io/__init__.py +2 -4
  74. biotite/structure/io/ctab.py +1 -1
  75. biotite/structure/io/general.py +37 -43
  76. biotite/structure/io/mmtf/__init__.py +3 -0
  77. biotite/structure/io/mmtf/convertarray.c +528 -365
  78. biotite/structure/io/mmtf/convertarray.cp311-win_amd64.pyd +0 -0
  79. biotite/structure/io/mmtf/convertfile.c +725 -676
  80. biotite/structure/io/mmtf/convertfile.cp311-win_amd64.pyd +0 -0
  81. biotite/structure/io/mmtf/decode.c +1070 -754
  82. biotite/structure/io/mmtf/decode.cp311-win_amd64.pyd +0 -0
  83. biotite/structure/io/mmtf/encode.c +727 -677
  84. biotite/structure/io/mmtf/encode.cp311-win_amd64.pyd +0 -0
  85. biotite/structure/io/mmtf/file.py +34 -26
  86. biotite/structure/io/npz/__init__.py +3 -0
  87. biotite/structure/io/npz/file.py +21 -18
  88. biotite/structure/io/pdb/__init__.py +3 -3
  89. biotite/structure/io/pdb/file.py +72 -70
  90. biotite/structure/io/pdb/hybrid36.c +540 -478
  91. biotite/structure/io/pdb/hybrid36.cp311-win_amd64.pyd +0 -0
  92. biotite/structure/io/pdbqt/file.py +82 -68
  93. biotite/structure/io/pdbx/__init__.py +13 -6
  94. biotite/structure/io/pdbx/bcif.py +649 -0
  95. biotite/structure/io/pdbx/cif.py +1028 -0
  96. biotite/structure/io/pdbx/component.py +243 -0
  97. biotite/structure/io/pdbx/convert.py +707 -359
  98. biotite/structure/io/pdbx/encoding.c +112813 -0
  99. biotite/structure/io/pdbx/encoding.cp311-win_amd64.pyd +0 -0
  100. biotite/structure/io/pdbx/error.py +14 -0
  101. biotite/structure/io/pdbx/legacy.py +267 -0
  102. biotite/structure/molecules.py +151 -151
  103. biotite/structure/residues.py +40 -40
  104. biotite/structure/sasa.c +713 -644
  105. biotite/structure/sasa.cp311-win_amd64.pyd +0 -0
  106. biotite/structure/superimpose.py +158 -115
  107. biotite/visualize.py +9 -11
  108. {biotite-0.38.0.dist-info → biotite-0.40.0.dist-info}/METADATA +2 -2
  109. {biotite-0.38.0.dist-info → biotite-0.40.0.dist-info}/RECORD +112 -102
  110. {biotite-0.38.0.dist-info → biotite-0.40.0.dist-info}/WHEEL +1 -1
  111. biotite/structure/info/amino_acids.json +0 -1556
  112. biotite/structure/info/amino_acids.py +0 -42
  113. biotite/structure/info/carbohydrates.json +0 -1122
  114. biotite/structure/info/carbohydrates.py +0 -39
  115. biotite/structure/info/intra_bonds.msgpack +0 -0
  116. biotite/structure/info/link_types.msgpack +0 -1
  117. biotite/structure/info/nucleotides.json +0 -772
  118. biotite/structure/info/nucleotides.py +0 -39
  119. biotite/structure/info/residue_masses.msgpack +0 -0
  120. biotite/structure/info/residue_names.msgpack +0 -3
  121. biotite/structure/info/residues.msgpack +0 -0
  122. biotite/structure/io/pdbx/file.py +0 -652
  123. {biotite-0.38.0.dist-info → biotite-0.40.0.dist-info}/LICENSE.rst +0 -0
  124. {biotite-0.38.0.dist-info → biotite-0.40.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.0.2 */
1
+ /* Generated by Cython 3.0.10 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -32,15 +32,15 @@ END: Cython Metadata */
32
32
  #elif PY_VERSION_HEX < 0x02070000 || (0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03030000)
33
33
  #error Cython requires Python 2.7+ or Python 3.3+.
34
34
  #else
35
- #if CYTHON_LIMITED_API
35
+ #if defined(CYTHON_LIMITED_API) && CYTHON_LIMITED_API
36
36
  #define __PYX_EXTRA_ABI_MODULE_NAME "limited"
37
37
  #else
38
38
  #define __PYX_EXTRA_ABI_MODULE_NAME ""
39
39
  #endif
40
- #define CYTHON_ABI "3_0_2" __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 0x030002F0
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,7 +258,9 @@ END: Cython Metadata */
254
258
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
255
259
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
256
260
  #endif
257
- #elif defined(PY_NOGIL)
261
+ #undef CYTHON_USE_FREELISTS
262
+ #define CYTHON_USE_FREELISTS 0
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
260
266
  #define CYTHON_COMPILING_IN_LIMITED_API 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)
@@ -581,17 +611,20 @@ END: Cython Metadata */
581
611
  PyObject *name, int fline, PyObject *lnos) {
582
612
  PyObject *exception_table = NULL;
583
613
  PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
584
- PyObject *version_info; // borrowed
614
+ #if __PYX_LIMITED_VERSION_HEX < 0x030B0000
615
+ PyObject *version_info;
585
616
  PyObject *py_minor_version = NULL;
617
+ #endif
586
618
  long minor_version = 0;
587
619
  PyObject *type, *value, *traceback;
588
620
  PyErr_Fetch(&type, &value, &traceback);
589
621
  #if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
590
- minor_version = 11; // we don't yet need to distinguish between versions > 11
622
+ minor_version = 11;
591
623
  #else
592
624
  if (!(version_info = PySys_GetObject("version_info"))) goto end;
593
625
  if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
594
626
  minor_version = PyLong_AsLong(py_minor_version);
627
+ Py_DECREF(py_minor_version);
595
628
  if (minor_version == -1 && PyErr_Occurred()) goto end;
596
629
  #endif
597
630
  if (!(types_module = PyImport_ImportModule("types"))) goto end;
@@ -612,7 +645,6 @@ END: Cython Metadata */
612
645
  Py_XDECREF(code_type);
613
646
  Py_XDECREF(exception_table);
614
647
  Py_XDECREF(types_module);
615
- Py_XDECREF(py_minor_version);
616
648
  if (type) {
617
649
  PyErr_Restore(type, value, traceback);
618
650
  }
@@ -645,7 +677,7 @@ END: Cython Metadata */
645
677
  PyObject *fv, PyObject *cell, PyObject* fn,
646
678
  PyObject *name, int fline, PyObject *lnos) {
647
679
  PyCodeObject *result;
648
- PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0); // we don't have access to __pyx_empty_bytes here
680
+ PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
649
681
  if (!empty_bytes) return NULL;
650
682
  result =
651
683
  #if PY_VERSION_HEX >= 0x030C0000
@@ -731,8 +763,13 @@ END: Cython Metadata */
731
763
  typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
732
764
  Py_ssize_t nargs, PyObject *kwnames);
733
765
  #else
734
- #define __Pyx_PyCFunctionFast _PyCFunctionFast
735
- #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
736
773
  #endif
737
774
  #if CYTHON_METH_FASTCALL
738
775
  #define __Pyx_METH_FASTCALL METH_FASTCALL
@@ -756,6 +793,31 @@ END: Cython Metadata */
756
793
  #define __Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET 0
757
794
  #define __Pyx_PyVectorcall_NARGS(n) ((Py_ssize_t)(n))
758
795
  #endif
796
+ #if PY_MAJOR_VERSION >= 0x030900B1
797
+ #define __Pyx_PyCFunction_CheckExact(func) PyCFunction_CheckExact(func)
798
+ #else
799
+ #define __Pyx_PyCFunction_CheckExact(func) PyCFunction_Check(func)
800
+ #endif
801
+ #define __Pyx_CyOrPyCFunction_Check(func) PyCFunction_Check(func)
802
+ #if CYTHON_COMPILING_IN_CPYTHON
803
+ #define __Pyx_CyOrPyCFunction_GET_FUNCTION(func) (((PyCFunctionObject*)(func))->m_ml->ml_meth)
804
+ #elif !CYTHON_COMPILING_IN_LIMITED_API
805
+ #define __Pyx_CyOrPyCFunction_GET_FUNCTION(func) PyCFunction_GET_FUNCTION(func)
806
+ #endif
807
+ #if CYTHON_COMPILING_IN_CPYTHON
808
+ #define __Pyx_CyOrPyCFunction_GET_FLAGS(func) (((PyCFunctionObject*)(func))->m_ml->ml_flags)
809
+ static CYTHON_INLINE PyObject* __Pyx_CyOrPyCFunction_GET_SELF(PyObject *func) {
810
+ return (__Pyx_CyOrPyCFunction_GET_FLAGS(func) & METH_STATIC) ? NULL : ((PyCFunctionObject*)func)->m_self;
811
+ }
812
+ #endif
813
+ static CYTHON_INLINE int __Pyx__IsSameCFunction(PyObject *func, void *cfunc) {
814
+ #if CYTHON_COMPILING_IN_LIMITED_API
815
+ return PyCFunction_Check(func) && PyCFunction_GetFunction(func) == (PyCFunction) cfunc;
816
+ #else
817
+ return PyCFunction_Check(func) && PyCFunction_GET_FUNCTION(func) == (PyCFunction) cfunc;
818
+ #endif
819
+ }
820
+ #define __Pyx_IsSameCFunction(func, cfunc) __Pyx__IsSameCFunction(func, cfunc)
759
821
  #if __PYX_LIMITED_VERSION_HEX < 0x030900B1
760
822
  #define __Pyx_PyType_FromModuleAndSpec(m, s, b) ((void)m, PyType_FromSpecWithBases(s, b))
761
823
  typedef PyObject *(*__Pyx_PyCMethod)(PyObject *, PyTypeObject *, PyObject *const *, size_t, PyObject *);
@@ -782,6 +844,8 @@ END: Cython Metadata */
782
844
  #define __Pyx_PyThreadState_Current PyThreadState_Get()
783
845
  #elif !CYTHON_FAST_THREAD_STATE
784
846
  #define __Pyx_PyThreadState_Current PyThreadState_GET()
847
+ #elif PY_VERSION_HEX >= 0x030d00A1
848
+ #define __Pyx_PyThreadState_Current PyThreadState_GetUnchecked()
785
849
  #elif PY_VERSION_HEX >= 0x03060000
786
850
  #define __Pyx_PyThreadState_Current _PyThreadState_UncheckedGet()
787
851
  #elif PY_VERSION_HEX >= 0x03000000
@@ -857,7 +921,7 @@ static CYTHON_INLINE void * PyThread_tss_get(Py_tss_t *key) {
857
921
  }
858
922
  #endif
859
923
  #endif
860
- #if CYTHON_COMPILING_IN_CPYTHON || defined(_PyDict_NewPresized)
924
+ #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x030d0000 || defined(_PyDict_NewPresized)
861
925
  #define __Pyx_PyDict_NewPresized(n) ((n <= 8) ? PyDict_New() : _PyDict_NewPresized(n))
862
926
  #else
863
927
  #define __Pyx_PyDict_NewPresized(n) PyDict_New()
@@ -869,7 +933,7 @@ static CYTHON_INLINE void * PyThread_tss_get(Py_tss_t *key) {
869
933
  #define __Pyx_PyNumber_Divide(x,y) PyNumber_Divide(x,y)
870
934
  #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceDivide(x,y)
871
935
  #endif
872
- #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX > 0x030600B4 && CYTHON_USE_UNICODE_INTERNALS
936
+ #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX > 0x030600B4 && PY_VERSION_HEX < 0x030d0000 && CYTHON_USE_UNICODE_INTERNALS
873
937
  #define __Pyx_PyDict_GetItemStrWithError(dict, name) _PyDict_GetItem_KnownHash(dict, name, ((PyASCIIObject *) name)->hash)
874
938
  static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStr(PyObject *dict, PyObject *name) {
875
939
  PyObject *res = __Pyx_PyDict_GetItemStrWithError(dict, name);
@@ -913,7 +977,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
913
977
  #endif
914
978
  #if CYTHON_USE_TYPE_SPECS && PY_VERSION_HEX >= 0x03080000
915
979
  #define __Pyx_PyHeapTypeObject_GC_Del(obj) {\
916
- PyTypeObject *type = Py_TYPE(obj);\
980
+ PyTypeObject *type = Py_TYPE((PyObject*)obj);\
917
981
  assert(__Pyx_PyType_HasFeature(type, Py_TPFLAGS_HEAPTYPE));\
918
982
  PyObject_GC_Del(obj);\
919
983
  Py_DECREF(type);\
@@ -1057,6 +1121,15 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
1057
1121
  #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
1058
1122
  #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
1059
1123
  #endif
1124
+ #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
1125
+ #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
1126
+ #else
1127
+ static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
1128
+ PyObject *module = PyImport_AddModule(name);
1129
+ Py_XINCREF(module);
1130
+ return module;
1131
+ }
1132
+ #endif
1060
1133
  #if PY_MAJOR_VERSION >= 3
1061
1134
  #define PyIntObject PyLongObject
1062
1135
  #define PyInt_Type PyLong_Type
@@ -1135,7 +1208,7 @@ static CYTHON_INLINE float __PYX_NAN() {
1135
1208
  #endif
1136
1209
 
1137
1210
  #define __PYX_MARK_ERR_POS(f_index, lineno) \
1138
- { __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; }
1139
1212
  #define __PYX_ERR(f_index, lineno, Ln_error) \
1140
1213
  { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
1141
1214
 
@@ -1217,9 +1290,10 @@ static CYTHON_INLINE int __Pyx_is_valid_index(Py_ssize_t i, Py_ssize_t limit) {
1217
1290
  #else
1218
1291
  #define __Pyx_sst_abs(value) ((value<0) ? -value : value)
1219
1292
  #endif
1293
+ static CYTHON_INLINE Py_ssize_t __Pyx_ssize_strlen(const char *s);
1220
1294
  static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject*);
1221
1295
  static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject*, Py_ssize_t* length);
1222
- #define __Pyx_PyByteArray_FromString(s) PyByteArray_FromStringAndSize((const char*)s, strlen((const char*)s))
1296
+ static CYTHON_INLINE PyObject* __Pyx_PyByteArray_FromString(const char*);
1223
1297
  #define __Pyx_PyByteArray_FromStringAndSize(s, l) PyByteArray_FromStringAndSize((const char*)s, l)
1224
1298
  #define __Pyx_PyBytes_FromString PyBytes_FromString
1225
1299
  #define __Pyx_PyBytes_FromStringAndSize PyBytes_FromStringAndSize
@@ -1247,24 +1321,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1247
1321
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1248
1322
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1249
1323
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1250
- #if CYTHON_COMPILING_IN_LIMITED_API
1251
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1252
- {
1253
- const wchar_t *u_end = u;
1254
- while (*u_end++) ;
1255
- return (size_t)(u_end - u - 1);
1256
- }
1257
- #else
1258
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1259
- {
1260
- const Py_UNICODE *u_end = u;
1261
- while (*u_end++) ;
1262
- return (size_t)(u_end - u - 1);
1263
- }
1264
- #endif
1265
1324
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1266
- #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1267
- #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1268
1325
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1269
1326
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1270
1327
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -1314,7 +1371,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1314
1371
  #endif
1315
1372
  typedef Py_ssize_t __Pyx_compact_pylong;
1316
1373
  typedef size_t __Pyx_compact_upylong;
1317
- #else // Py < 3.12
1374
+ #else
1318
1375
  #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
1319
1376
  #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
1320
1377
  #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
@@ -1335,6 +1392,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1335
1392
  #endif
1336
1393
  #endif
1337
1394
  #if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII
1395
+ #include <string.h>
1338
1396
  static int __Pyx_sys_getdefaultencoding_not_ascii;
1339
1397
  static int __Pyx_init_sys_getdefaultencoding_params(void) {
1340
1398
  PyObject* sys;
@@ -1385,6 +1443,7 @@ bad:
1385
1443
  #else
1386
1444
  #define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_Decode(c_str, size, __PYX_DEFAULT_STRING_ENCODING, NULL)
1387
1445
  #if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT
1446
+ #include <string.h>
1388
1447
  static char* __PYX_DEFAULT_STRING_ENCODING;
1389
1448
  static int __Pyx_init_sys_getdefaultencoding_params(void) {
1390
1449
  PyObject* sys;
@@ -1432,7 +1491,7 @@ static const char *__pyx_filename;
1432
1491
  #if !defined(CYTHON_CCOMPLEX)
1433
1492
  #if defined(__cplusplus)
1434
1493
  #define CYTHON_CCOMPLEX 1
1435
- #elif (defined(_Complex_I) && !defined(_MSC_VER)) || ((defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) && !defined(__STDC_NO_COMPLEX__))
1494
+ #elif (defined(_Complex_I) && !defined(_MSC_VER)) || ((defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) && !defined(__STDC_NO_COMPLEX__) && !defined(_MSC_VER))
1436
1495
  #define CYTHON_CCOMPLEX 1
1437
1496
  #else
1438
1497
  #define CYTHON_CCOMPLEX 0
@@ -1458,9 +1517,14 @@ static const char *__pyx_f[] = {
1458
1517
  "type.pxd",
1459
1518
  };
1460
1519
  /* #### Code section: utility_code_proto_before_types ### */
1520
+ /* ForceInitThreads.proto */
1521
+ #ifndef __PYX_FORCE_INIT_THREADS
1522
+ #define __PYX_FORCE_INIT_THREADS 0
1523
+ #endif
1524
+
1461
1525
  /* #### Code section: numeric_typedefs ### */
1462
1526
 
1463
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1527
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1464
1528
  * # in Cython to enable them only on the right systems.
1465
1529
  *
1466
1530
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1469,7 +1533,7 @@ static const char *__pyx_f[] = {
1469
1533
  */
1470
1534
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1471
1535
 
1472
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1536
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1473
1537
  *
1474
1538
  * ctypedef npy_int8 int8_t
1475
1539
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1478,7 +1542,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1478
1542
  */
1479
1543
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1480
1544
 
1481
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1545
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1482
1546
  * ctypedef npy_int8 int8_t
1483
1547
  * ctypedef npy_int16 int16_t
1484
1548
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1487,7 +1551,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1487
1551
  */
1488
1552
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1489
1553
 
1490
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
1554
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
1491
1555
  * ctypedef npy_int16 int16_t
1492
1556
  * ctypedef npy_int32 int32_t
1493
1557
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1496,7 +1560,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1496
1560
  */
1497
1561
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1498
1562
 
1499
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1563
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1500
1564
  * #ctypedef npy_int128 int128_t
1501
1565
  *
1502
1566
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1505,7 +1569,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1505
1569
  */
1506
1570
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1507
1571
 
1508
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1572
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1509
1573
  *
1510
1574
  * ctypedef npy_uint8 uint8_t
1511
1575
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1514,7 +1578,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1514
1578
  */
1515
1579
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1516
1580
 
1517
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1581
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1518
1582
  * ctypedef npy_uint8 uint8_t
1519
1583
  * ctypedef npy_uint16 uint16_t
1520
1584
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1523,7 +1587,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1523
1587
  */
1524
1588
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1525
1589
 
1526
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
1590
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
1527
1591
  * ctypedef npy_uint16 uint16_t
1528
1592
  * ctypedef npy_uint32 uint32_t
1529
1593
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1532,7 +1596,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1532
1596
  */
1533
1597
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1534
1598
 
1535
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1599
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1536
1600
  * #ctypedef npy_uint128 uint128_t
1537
1601
  *
1538
1602
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1541,7 +1605,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1541
1605
  */
1542
1606
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1543
1607
 
1544
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
1608
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
1545
1609
  *
1546
1610
  * ctypedef npy_float32 float32_t
1547
1611
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1550,7 +1614,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1550
1614
  */
1551
1615
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1552
1616
 
1553
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1617
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1554
1618
  * # The int types are mapped a bit surprising --
1555
1619
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1556
1620
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1559,7 +1623,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1559
1623
  */
1560
1624
  typedef npy_long __pyx_t_5numpy_int_t;
1561
1625
 
1562
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
1626
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
1563
1627
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1564
1628
  * ctypedef npy_long int_t
1565
1629
  * ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
@@ -1568,7 +1632,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1568
1632
  */
1569
1633
  typedef npy_longlong __pyx_t_5numpy_long_t;
1570
1634
 
1571
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1635
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1572
1636
  * ctypedef npy_long int_t
1573
1637
  * ctypedef npy_longlong long_t
1574
1638
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1577,7 +1641,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
1577
1641
  */
1578
1642
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1579
1643
 
1580
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":759
1644
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":759
1581
1645
  * ctypedef npy_longlong longlong_t
1582
1646
  *
1583
1647
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1586,7 +1650,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1586
1650
  */
1587
1651
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1588
1652
 
1589
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1653
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1590
1654
  *
1591
1655
  * ctypedef npy_ulong uint_t
1592
1656
  * ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
@@ -1595,7 +1659,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1595
1659
  */
1596
1660
  typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1597
1661
 
1598
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1662
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1599
1663
  * ctypedef npy_ulong uint_t
1600
1664
  * ctypedef npy_ulonglong ulong_t
1601
1665
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1604,7 +1668,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1604
1668
  */
1605
1669
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1606
1670
 
1607
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1671
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1608
1672
  * ctypedef npy_ulonglong ulonglong_t
1609
1673
  *
1610
1674
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1613,7 +1677,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1613
1677
  */
1614
1678
  typedef npy_intp __pyx_t_5numpy_intp_t;
1615
1679
 
1616
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1680
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1617
1681
  *
1618
1682
  * ctypedef npy_intp intp_t
1619
1683
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1622,7 +1686,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1622
1686
  */
1623
1687
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1624
1688
 
1625
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":766
1689
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":766
1626
1690
  * ctypedef npy_uintp uintp_t
1627
1691
  *
1628
1692
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1631,7 +1695,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1631
1695
  */
1632
1696
  typedef npy_double __pyx_t_5numpy_float_t;
1633
1697
 
1634
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1698
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1635
1699
  *
1636
1700
  * ctypedef npy_double float_t
1637
1701
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1640,7 +1704,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1640
1704
  */
1641
1705
  typedef npy_double __pyx_t_5numpy_double_t;
1642
1706
 
1643
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1707
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1644
1708
  * ctypedef npy_double float_t
1645
1709
  * ctypedef npy_double double_t
1646
1710
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1749,7 +1813,7 @@ static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(do
1749
1813
 
1750
1814
  /*--- Type declarations ---*/
1751
1815
 
1752
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
1816
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
1753
1817
  * ctypedef npy_longdouble longdouble_t
1754
1818
  *
1755
1819
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1758,7 +1822,7 @@ static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(do
1758
1822
  */
1759
1823
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1760
1824
 
1761
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1825
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1762
1826
  *
1763
1827
  * ctypedef npy_cfloat cfloat_t
1764
1828
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1767,7 +1831,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1767
1831
  */
1768
1832
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1769
1833
 
1770
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1834
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1771
1835
  * ctypedef npy_cfloat cfloat_t
1772
1836
  * ctypedef npy_cdouble cdouble_t
1773
1837
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1776,7 +1840,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1776
1840
  */
1777
1841
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1778
1842
 
1779
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
1843
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
1780
1844
  * ctypedef npy_clongdouble clongdouble_t
1781
1845
  *
1782
1846
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -1991,8 +2055,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
1991
2055
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
1992
2056
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
1993
2057
  #else
1994
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
1995
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2058
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2059
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
1996
2060
  #endif
1997
2061
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
1998
2062
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2003,9 +2067,14 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2003
2067
  #define __Pyx_NumKwargs_FASTCALL(kwds) PyTuple_GET_SIZE(kwds)
2004
2068
  #define __Pyx_KwValues_FASTCALL(args, nargs) ((args) + (nargs))
2005
2069
  static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues, PyObject *s);
2070
+ #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
2071
+ CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues);
2072
+ #else
2006
2073
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2007
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2008
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2074
+ #endif
2075
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2076
+ to have the same reference counting */
2077
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2009
2078
  #else
2010
2079
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2011
2080
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2171,7 +2240,11 @@ static CYTHON_INLINE int __Pyx_ListComp_Append(PyObject* list, PyObject* x) {
2171
2240
  Py_ssize_t len = Py_SIZE(list);
2172
2241
  if (likely(L->allocated > len)) {
2173
2242
  Py_INCREF(x);
2243
+ #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
2244
+ L->ob_item[len] = x;
2245
+ #else
2174
2246
  PyList_SET_ITEM(list, len, x);
2247
+ #endif
2175
2248
  __Pyx_SET_SIZE(list, len + 1);
2176
2249
  return 0;
2177
2250
  }
@@ -2253,7 +2326,11 @@ static CYTHON_INLINE int __Pyx_PyList_Append(PyObject* list, PyObject* x) {
2253
2326
  Py_ssize_t len = Py_SIZE(list);
2254
2327
  if (likely(L->allocated > len) & likely(len > (L->allocated >> 1))) {
2255
2328
  Py_INCREF(x);
2329
+ #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
2330
+ L->ob_item[len] = x;
2331
+ #else
2256
2332
  PyList_SET_ITEM(list, len, x);
2333
+ #endif
2257
2334
  __Pyx_SET_SIZE(list, len + 1);
2258
2335
  return 0;
2259
2336
  }
@@ -2300,22 +2377,22 @@ static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key);
2300
2377
  #endif
2301
2378
 
2302
2379
  /* TypeImport.proto */
2303
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_2
2304
- #define __PYX_HAVE_RT_ImportType_proto_3_0_2
2380
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2381
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2305
2382
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2306
2383
  #include <stdalign.h>
2307
2384
  #endif
2308
2385
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2309
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_2(s) alignof(s)
2386
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2310
2387
  #else
2311
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_2(s) sizeof(void*)
2388
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2312
2389
  #endif
2313
- enum __Pyx_ImportType_CheckSize_3_0_2 {
2314
- __Pyx_ImportType_CheckSize_Error_3_0_2 = 0,
2315
- __Pyx_ImportType_CheckSize_Warn_3_0_2 = 1,
2316
- __Pyx_ImportType_CheckSize_Ignore_3_0_2 = 2
2390
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2391
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2392
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2393
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2317
2394
  };
2318
- static PyTypeObject *__Pyx_ImportType_3_0_2(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_2 check_size);
2395
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size);
2319
2396
  #endif
2320
2397
 
2321
2398
  /* Import.proto */
@@ -2428,7 +2505,7 @@ typedef struct {
2428
2505
  #endif
2429
2506
  void *defaults;
2430
2507
  int defaults_pyobjects;
2431
- size_t defaults_size; // used by FusedFunction for copying defaults
2508
+ size_t defaults_size;
2432
2509
  int flags;
2433
2510
  PyObject *defaults_tuple;
2434
2511
  PyObject *defaults_kwdict;
@@ -2436,9 +2513,13 @@ typedef struct {
2436
2513
  PyObject *func_annotations;
2437
2514
  PyObject *func_is_coroutine;
2438
2515
  } __pyx_CyFunctionObject;
2516
+ #undef __Pyx_CyOrPyCFunction_Check
2439
2517
  #define __Pyx_CyFunction_Check(obj) __Pyx_TypeCheck(obj, __pyx_CyFunctionType)
2440
- #define __Pyx_IsCyOrPyCFunction(obj) __Pyx_TypeCheck2(obj, __pyx_CyFunctionType, &PyCFunction_Type)
2518
+ #define __Pyx_CyOrPyCFunction_Check(obj) __Pyx_TypeCheck2(obj, __pyx_CyFunctionType, &PyCFunction_Type)
2441
2519
  #define __Pyx_CyFunction_CheckExact(obj) __Pyx_IS_TYPE(obj, __pyx_CyFunctionType)
2520
+ static CYTHON_INLINE int __Pyx__IsSameCyOrCFunction(PyObject *func, void *cfunc);
2521
+ #undef __Pyx_IsSameCFunction
2522
+ #define __Pyx_IsSameCFunction(func, cfunc) __Pyx__IsSameCyOrCFunction(func, cfunc)
2442
2523
  static PyObject *__Pyx_CyFunction_Init(__pyx_CyFunctionObject* op, PyMethodDef *ml,
2443
2524
  int flags, PyObject* qualname,
2444
2525
  PyObject *closure,
@@ -2648,7 +2729,8 @@ static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObj
2648
2729
  #define __Pyx_PyException_Check(obj) __Pyx_TypeCheck(obj, PyExc_Exception)
2649
2730
 
2650
2731
  /* CheckBinaryVersion.proto */
2651
- static int __Pyx_check_binary_version(void);
2732
+ static unsigned long __Pyx_get_runtime_version(void);
2733
+ static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt_version, int allow_newer);
2652
2734
 
2653
2735
  /* InitStrings.proto */
2654
2736
  static int __Pyx_InitStrings(__Pyx_StringTabEntry *t);
@@ -3875,7 +3957,7 @@ static int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) {
3875
3957
  #define __pyx_codeobj__16 __pyx_mstate_global->__pyx_codeobj__16
3876
3958
  /* #### Code section: module_code ### */
3877
3959
 
3878
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
3960
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
3879
3961
  *
3880
3962
  * @property
3881
3963
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -3886,7 +3968,7 @@ static int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) {
3886
3968
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
3887
3969
  PyObject *__pyx_r;
3888
3970
 
3889
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
3971
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
3890
3972
  * """Returns a borrowed reference to the object owning the data/memory.
3891
3973
  * """
3892
3974
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -3896,7 +3978,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
3896
3978
  __pyx_r = PyArray_BASE(__pyx_v_self);
3897
3979
  goto __pyx_L0;
3898
3980
 
3899
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
3981
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
3900
3982
  *
3901
3983
  * @property
3902
3984
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -3909,7 +3991,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
3909
3991
  return __pyx_r;
3910
3992
  }
3911
3993
 
3912
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
3994
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
3913
3995
  *
3914
3996
  * @property
3915
3997
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -3921,9 +4003,9 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
3921
4003
  PyArray_Descr *__pyx_r = NULL;
3922
4004
  __Pyx_RefNannyDeclarations
3923
4005
  PyArray_Descr *__pyx_t_1;
3924
- __Pyx_RefNannySetupContext("descr", 0);
4006
+ __Pyx_RefNannySetupContext("descr", 1);
3925
4007
 
3926
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
4008
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
3927
4009
  * """Returns an owned reference to the dtype of the array.
3928
4010
  * """
3929
4011
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -3936,7 +4018,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
3936
4018
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
3937
4019
  goto __pyx_L0;
3938
4020
 
3939
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
4021
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
3940
4022
  *
3941
4023
  * @property
3942
4024
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -3951,7 +4033,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
3951
4033
  return __pyx_r;
3952
4034
  }
3953
4035
 
3954
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
4036
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
3955
4037
  *
3956
4038
  * @property
3957
4039
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -3962,7 +4044,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
3962
4044
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
3963
4045
  int __pyx_r;
3964
4046
 
3965
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
4047
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
3966
4048
  * """Returns the number of dimensions in the array.
3967
4049
  * """
3968
4050
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -3972,7 +4054,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
3972
4054
  __pyx_r = PyArray_NDIM(__pyx_v_self);
3973
4055
  goto __pyx_L0;
3974
4056
 
3975
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
4057
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
3976
4058
  *
3977
4059
  * @property
3978
4060
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -3985,7 +4067,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
3985
4067
  return __pyx_r;
3986
4068
  }
3987
4069
 
3988
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
4070
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
3989
4071
  *
3990
4072
  * @property
3991
4073
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -3996,7 +4078,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
3996
4078
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
3997
4079
  npy_intp *__pyx_r;
3998
4080
 
3999
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
4081
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
4000
4082
  * Can return NULL for 0-dimensional arrays.
4001
4083
  * """
4002
4084
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -4006,7 +4088,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
4006
4088
  __pyx_r = PyArray_DIMS(__pyx_v_self);
4007
4089
  goto __pyx_L0;
4008
4090
 
4009
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
4091
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
4010
4092
  *
4011
4093
  * @property
4012
4094
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -4019,7 +4101,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
4019
4101
  return __pyx_r;
4020
4102
  }
4021
4103
 
4022
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
4104
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
4023
4105
  *
4024
4106
  * @property
4025
4107
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -4030,7 +4112,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
4030
4112
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
4031
4113
  npy_intp *__pyx_r;
4032
4114
 
4033
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
4115
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
4034
4116
  * The number of elements matches the number of dimensions of the array (ndim).
4035
4117
  * """
4036
4118
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -4040,7 +4122,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
4040
4122
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
4041
4123
  goto __pyx_L0;
4042
4124
 
4043
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
4125
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
4044
4126
  *
4045
4127
  * @property
4046
4128
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -4053,7 +4135,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
4053
4135
  return __pyx_r;
4054
4136
  }
4055
4137
 
4056
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
4138
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
4057
4139
  *
4058
4140
  * @property
4059
4141
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -4064,7 +4146,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
4064
4146
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
4065
4147
  npy_intp __pyx_r;
4066
4148
 
4067
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
4149
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
4068
4150
  * """Returns the total size (in number of elements) of the array.
4069
4151
  * """
4070
4152
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -4074,7 +4156,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
4074
4156
  __pyx_r = PyArray_SIZE(__pyx_v_self);
4075
4157
  goto __pyx_L0;
4076
4158
 
4077
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
4159
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
4078
4160
  *
4079
4161
  * @property
4080
4162
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -4087,7 +4169,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
4087
4169
  return __pyx_r;
4088
4170
  }
4089
4171
 
4090
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
4172
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
4091
4173
  *
4092
4174
  * @property
4093
4175
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -4098,7 +4180,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
4098
4180
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
4099
4181
  char *__pyx_r;
4100
4182
 
4101
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
4183
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
4102
4184
  * of `PyArray_DATA()` instead, which returns a 'void*'.
4103
4185
  * """
4104
4186
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -4108,7 +4190,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
4108
4190
  __pyx_r = PyArray_BYTES(__pyx_v_self);
4109
4191
  goto __pyx_L0;
4110
4192
 
4111
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
4193
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
4112
4194
  *
4113
4195
  * @property
4114
4196
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -4121,7 +4203,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
4121
4203
  return __pyx_r;
4122
4204
  }
4123
4205
 
4124
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
4206
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
4125
4207
  * ctypedef npy_cdouble complex_t
4126
4208
  *
4127
4209
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -4136,9 +4218,9 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
4136
4218
  int __pyx_lineno = 0;
4137
4219
  const char *__pyx_filename = NULL;
4138
4220
  int __pyx_clineno = 0;
4139
- __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0);
4221
+ __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
4140
4222
 
4141
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
4223
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
4142
4224
  *
4143
4225
  * cdef inline object PyArray_MultiIterNew1(a):
4144
4226
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -4152,7 +4234,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
4152
4234
  __pyx_t_1 = 0;
4153
4235
  goto __pyx_L0;
4154
4236
 
4155
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
4237
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
4156
4238
  * ctypedef npy_cdouble complex_t
4157
4239
  *
4158
4240
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -4171,7 +4253,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
4171
4253
  return __pyx_r;
4172
4254
  }
4173
4255
 
4174
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
4256
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
4175
4257
  * return PyArray_MultiIterNew(1, <void*>a)
4176
4258
  *
4177
4259
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -4186,9 +4268,9 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
4186
4268
  int __pyx_lineno = 0;
4187
4269
  const char *__pyx_filename = NULL;
4188
4270
  int __pyx_clineno = 0;
4189
- __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0);
4271
+ __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
4190
4272
 
4191
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
4273
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
4192
4274
  *
4193
4275
  * cdef inline object PyArray_MultiIterNew2(a, b):
4194
4276
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -4202,7 +4284,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
4202
4284
  __pyx_t_1 = 0;
4203
4285
  goto __pyx_L0;
4204
4286
 
4205
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
4287
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
4206
4288
  * return PyArray_MultiIterNew(1, <void*>a)
4207
4289
  *
4208
4290
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -4221,7 +4303,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
4221
4303
  return __pyx_r;
4222
4304
  }
4223
4305
 
4224
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
4306
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
4225
4307
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
4226
4308
  *
4227
4309
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -4236,9 +4318,9 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
4236
4318
  int __pyx_lineno = 0;
4237
4319
  const char *__pyx_filename = NULL;
4238
4320
  int __pyx_clineno = 0;
4239
- __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0);
4321
+ __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
4240
4322
 
4241
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
4323
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
4242
4324
  *
4243
4325
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
4244
4326
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -4252,7 +4334,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
4252
4334
  __pyx_t_1 = 0;
4253
4335
  goto __pyx_L0;
4254
4336
 
4255
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
4337
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
4256
4338
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
4257
4339
  *
4258
4340
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -4271,7 +4353,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
4271
4353
  return __pyx_r;
4272
4354
  }
4273
4355
 
4274
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
4356
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
4275
4357
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
4276
4358
  *
4277
4359
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -4286,9 +4368,9 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
4286
4368
  int __pyx_lineno = 0;
4287
4369
  const char *__pyx_filename = NULL;
4288
4370
  int __pyx_clineno = 0;
4289
- __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0);
4371
+ __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
4290
4372
 
4291
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
4373
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
4292
4374
  *
4293
4375
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
4294
4376
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -4302,7 +4384,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
4302
4384
  __pyx_t_1 = 0;
4303
4385
  goto __pyx_L0;
4304
4386
 
4305
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
4387
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
4306
4388
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
4307
4389
  *
4308
4390
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -4321,7 +4403,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
4321
4403
  return __pyx_r;
4322
4404
  }
4323
4405
 
4324
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
4406
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
4325
4407
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
4326
4408
  *
4327
4409
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -4336,9 +4418,9 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
4336
4418
  int __pyx_lineno = 0;
4337
4419
  const char *__pyx_filename = NULL;
4338
4420
  int __pyx_clineno = 0;
4339
- __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0);
4421
+ __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
4340
4422
 
4341
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
4423
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
4342
4424
  *
4343
4425
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
4344
4426
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -4352,7 +4434,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
4352
4434
  __pyx_t_1 = 0;
4353
4435
  goto __pyx_L0;
4354
4436
 
4355
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
4437
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
4356
4438
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
4357
4439
  *
4358
4440
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -4371,7 +4453,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
4371
4453
  return __pyx_r;
4372
4454
  }
4373
4455
 
4374
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
4456
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
4375
4457
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
4376
4458
  *
4377
4459
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -4383,9 +4465,9 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4383
4465
  PyObject *__pyx_r = NULL;
4384
4466
  __Pyx_RefNannyDeclarations
4385
4467
  int __pyx_t_1;
4386
- __Pyx_RefNannySetupContext("PyDataType_SHAPE", 0);
4468
+ __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
4387
4469
 
4388
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
4470
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
4389
4471
  *
4390
4472
  * cdef inline tuple PyDataType_SHAPE(dtype d):
4391
4473
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -4395,7 +4477,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4395
4477
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
4396
4478
  if (__pyx_t_1) {
4397
4479
 
4398
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
4480
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
4399
4481
  * cdef inline tuple PyDataType_SHAPE(dtype d):
4400
4482
  * if PyDataType_HASSUBARRAY(d):
4401
4483
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -4407,7 +4489,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4407
4489
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
4408
4490
  goto __pyx_L0;
4409
4491
 
4410
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
4492
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
4411
4493
  *
4412
4494
  * cdef inline tuple PyDataType_SHAPE(dtype d):
4413
4495
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -4416,7 +4498,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4416
4498
  */
4417
4499
  }
4418
4500
 
4419
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
4501
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
4420
4502
  * return <tuple>d.subarray.shape
4421
4503
  * else:
4422
4504
  * return () # <<<<<<<<<<<<<<
@@ -4430,7 +4512,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4430
4512
  goto __pyx_L0;
4431
4513
  }
4432
4514
 
4433
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
4515
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
4434
4516
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
4435
4517
  *
4436
4518
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -4445,7 +4527,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4445
4527
  return __pyx_r;
4446
4528
  }
4447
4529
 
4448
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
4530
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
4449
4531
  * int _import_umath() except -1
4450
4532
  *
4451
4533
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -4454,10 +4536,8 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
4454
4536
  */
4455
4537
 
4456
4538
  static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
4457
- __Pyx_RefNannyDeclarations
4458
- __Pyx_RefNannySetupContext("set_array_base", 0);
4459
4539
 
4460
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
4540
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
4461
4541
  *
4462
4542
  * cdef inline void set_array_base(ndarray arr, object base):
4463
4543
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -4466,7 +4546,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
4466
4546
  */
4467
4547
  Py_INCREF(__pyx_v_base);
4468
4548
 
4469
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
4549
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
4470
4550
  * cdef inline void set_array_base(ndarray arr, object base):
4471
4551
  * Py_INCREF(base) # important to do this before stealing the reference below!
4472
4552
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -4475,7 +4555,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
4475
4555
  */
4476
4556
  (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
4477
4557
 
4478
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
4558
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
4479
4559
  * int _import_umath() except -1
4480
4560
  *
4481
4561
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -4484,10 +4564,9 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
4484
4564
  */
4485
4565
 
4486
4566
  /* function exit code */
4487
- __Pyx_RefNannyFinishContext();
4488
4567
  }
4489
4568
 
4490
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
4569
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
4491
4570
  * PyArray_SetBaseObject(arr, base)
4492
4571
  *
4493
4572
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -4500,9 +4579,9 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4500
4579
  PyObject *__pyx_r = NULL;
4501
4580
  __Pyx_RefNannyDeclarations
4502
4581
  int __pyx_t_1;
4503
- __Pyx_RefNannySetupContext("get_array_base", 0);
4582
+ __Pyx_RefNannySetupContext("get_array_base", 1);
4504
4583
 
4505
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
4584
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
4506
4585
  *
4507
4586
  * cdef inline object get_array_base(ndarray arr):
4508
4587
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -4511,7 +4590,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4511
4590
  */
4512
4591
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
4513
4592
 
4514
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
4593
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
4515
4594
  * cdef inline object get_array_base(ndarray arr):
4516
4595
  * base = PyArray_BASE(arr)
4517
4596
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -4521,7 +4600,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4521
4600
  __pyx_t_1 = (__pyx_v_base == NULL);
4522
4601
  if (__pyx_t_1) {
4523
4602
 
4524
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
4603
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
4525
4604
  * base = PyArray_BASE(arr)
4526
4605
  * if base is NULL:
4527
4606
  * return None # <<<<<<<<<<<<<<
@@ -4532,7 +4611,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4532
4611
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
4533
4612
  goto __pyx_L0;
4534
4613
 
4535
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
4614
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
4536
4615
  * cdef inline object get_array_base(ndarray arr):
4537
4616
  * base = PyArray_BASE(arr)
4538
4617
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -4541,7 +4620,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4541
4620
  */
4542
4621
  }
4543
4622
 
4544
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
4623
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
4545
4624
  * if base is NULL:
4546
4625
  * return None
4547
4626
  * return <object>base # <<<<<<<<<<<<<<
@@ -4553,7 +4632,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4553
4632
  __pyx_r = ((PyObject *)__pyx_v_base);
4554
4633
  goto __pyx_L0;
4555
4634
 
4556
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
4635
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
4557
4636
  * PyArray_SetBaseObject(arr, base)
4558
4637
  *
4559
4638
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -4568,7 +4647,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
4568
4647
  return __pyx_r;
4569
4648
  }
4570
4649
 
4571
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
4650
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
4572
4651
  * # Versions of the import_* functions which are more suitable for
4573
4652
  * # Cython code.
4574
4653
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -4590,9 +4669,9 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4590
4669
  int __pyx_lineno = 0;
4591
4670
  const char *__pyx_filename = NULL;
4592
4671
  int __pyx_clineno = 0;
4593
- __Pyx_RefNannySetupContext("import_array", 0);
4672
+ __Pyx_RefNannySetupContext("import_array", 1);
4594
4673
 
4595
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
4674
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
4596
4675
  * # Cython code.
4597
4676
  * cdef inline int import_array() except -1:
4598
4677
  * try: # <<<<<<<<<<<<<<
@@ -4608,7 +4687,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4608
4687
  __Pyx_XGOTREF(__pyx_t_3);
4609
4688
  /*try:*/ {
4610
4689
 
4611
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
4690
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
4612
4691
  * cdef inline int import_array() except -1:
4613
4692
  * try:
4614
4693
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -4617,7 +4696,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4617
4696
  */
4618
4697
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 984, __pyx_L3_error)
4619
4698
 
4620
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
4699
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
4621
4700
  * # Cython code.
4622
4701
  * cdef inline int import_array() except -1:
4623
4702
  * try: # <<<<<<<<<<<<<<
@@ -4631,7 +4710,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4631
4710
  goto __pyx_L8_try_end;
4632
4711
  __pyx_L3_error:;
4633
4712
 
4634
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
4713
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
4635
4714
  * try:
4636
4715
  * __pyx_import_array()
4637
4716
  * except Exception: # <<<<<<<<<<<<<<
@@ -4646,7 +4725,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4646
4725
  __Pyx_XGOTREF(__pyx_t_6);
4647
4726
  __Pyx_XGOTREF(__pyx_t_7);
4648
4727
 
4649
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
4728
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
4650
4729
  * __pyx_import_array()
4651
4730
  * except Exception:
4652
4731
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -4661,7 +4740,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4661
4740
  }
4662
4741
  goto __pyx_L5_except_error;
4663
4742
 
4664
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
4743
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
4665
4744
  * # Cython code.
4666
4745
  * cdef inline int import_array() except -1:
4667
4746
  * try: # <<<<<<<<<<<<<<
@@ -4677,7 +4756,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4677
4756
  __pyx_L8_try_end:;
4678
4757
  }
4679
4758
 
4680
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
4759
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
4681
4760
  * # Versions of the import_* functions which are more suitable for
4682
4761
  * # Cython code.
4683
4762
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -4700,7 +4779,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
4700
4779
  return __pyx_r;
4701
4780
  }
4702
4781
 
4703
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
4782
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
4704
4783
  * raise ImportError("numpy.core.multiarray failed to import")
4705
4784
  *
4706
4785
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -4722,9 +4801,9 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4722
4801
  int __pyx_lineno = 0;
4723
4802
  const char *__pyx_filename = NULL;
4724
4803
  int __pyx_clineno = 0;
4725
- __Pyx_RefNannySetupContext("import_umath", 0);
4804
+ __Pyx_RefNannySetupContext("import_umath", 1);
4726
4805
 
4727
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
4806
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
4728
4807
  *
4729
4808
  * cdef inline int import_umath() except -1:
4730
4809
  * try: # <<<<<<<<<<<<<<
@@ -4740,7 +4819,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4740
4819
  __Pyx_XGOTREF(__pyx_t_3);
4741
4820
  /*try:*/ {
4742
4821
 
4743
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
4822
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
4744
4823
  * cdef inline int import_umath() except -1:
4745
4824
  * try:
4746
4825
  * _import_umath() # <<<<<<<<<<<<<<
@@ -4749,7 +4828,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4749
4828
  */
4750
4829
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 990, __pyx_L3_error)
4751
4830
 
4752
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
4831
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
4753
4832
  *
4754
4833
  * cdef inline int import_umath() except -1:
4755
4834
  * try: # <<<<<<<<<<<<<<
@@ -4763,7 +4842,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4763
4842
  goto __pyx_L8_try_end;
4764
4843
  __pyx_L3_error:;
4765
4844
 
4766
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
4845
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
4767
4846
  * try:
4768
4847
  * _import_umath()
4769
4848
  * except Exception: # <<<<<<<<<<<<<<
@@ -4778,7 +4857,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4778
4857
  __Pyx_XGOTREF(__pyx_t_6);
4779
4858
  __Pyx_XGOTREF(__pyx_t_7);
4780
4859
 
4781
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
4860
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
4782
4861
  * _import_umath()
4783
4862
  * except Exception:
4784
4863
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -4793,7 +4872,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4793
4872
  }
4794
4873
  goto __pyx_L5_except_error;
4795
4874
 
4796
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
4875
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
4797
4876
  *
4798
4877
  * cdef inline int import_umath() except -1:
4799
4878
  * try: # <<<<<<<<<<<<<<
@@ -4809,7 +4888,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4809
4888
  __pyx_L8_try_end:;
4810
4889
  }
4811
4890
 
4812
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
4891
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
4813
4892
  * raise ImportError("numpy.core.multiarray failed to import")
4814
4893
  *
4815
4894
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -4832,7 +4911,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4832
4911
  return __pyx_r;
4833
4912
  }
4834
4913
 
4835
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
4914
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
4836
4915
  * raise ImportError("numpy.core.umath failed to import")
4837
4916
  *
4838
4917
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -4854,9 +4933,9 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4854
4933
  int __pyx_lineno = 0;
4855
4934
  const char *__pyx_filename = NULL;
4856
4935
  int __pyx_clineno = 0;
4857
- __Pyx_RefNannySetupContext("import_ufunc", 0);
4936
+ __Pyx_RefNannySetupContext("import_ufunc", 1);
4858
4937
 
4859
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
4938
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
4860
4939
  *
4861
4940
  * cdef inline int import_ufunc() except -1:
4862
4941
  * try: # <<<<<<<<<<<<<<
@@ -4872,7 +4951,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4872
4951
  __Pyx_XGOTREF(__pyx_t_3);
4873
4952
  /*try:*/ {
4874
4953
 
4875
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
4954
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
4876
4955
  * cdef inline int import_ufunc() except -1:
4877
4956
  * try:
4878
4957
  * _import_umath() # <<<<<<<<<<<<<<
@@ -4881,7 +4960,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4881
4960
  */
4882
4961
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 996, __pyx_L3_error)
4883
4962
 
4884
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
4963
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
4885
4964
  *
4886
4965
  * cdef inline int import_ufunc() except -1:
4887
4966
  * try: # <<<<<<<<<<<<<<
@@ -4895,7 +4974,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4895
4974
  goto __pyx_L8_try_end;
4896
4975
  __pyx_L3_error:;
4897
4976
 
4898
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
4977
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
4899
4978
  * try:
4900
4979
  * _import_umath()
4901
4980
  * except Exception: # <<<<<<<<<<<<<<
@@ -4910,7 +4989,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4910
4989
  __Pyx_XGOTREF(__pyx_t_6);
4911
4990
  __Pyx_XGOTREF(__pyx_t_7);
4912
4991
 
4913
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
4992
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
4914
4993
  * _import_umath()
4915
4994
  * except Exception:
4916
4995
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -4925,7 +5004,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4925
5004
  }
4926
5005
  goto __pyx_L5_except_error;
4927
5006
 
4928
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
5007
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
4929
5008
  *
4930
5009
  * cdef inline int import_ufunc() except -1:
4931
5010
  * try: # <<<<<<<<<<<<<<
@@ -4941,7 +5020,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4941
5020
  __pyx_L8_try_end:;
4942
5021
  }
4943
5022
 
4944
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
5023
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
4945
5024
  * raise ImportError("numpy.core.umath failed to import")
4946
5025
  *
4947
5026
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -4964,7 +5043,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4964
5043
  return __pyx_r;
4965
5044
  }
4966
5045
 
4967
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
5046
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
4968
5047
  *
4969
5048
  *
4970
5049
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -4974,10 +5053,8 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4974
5053
 
4975
5054
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
4976
5055
  int __pyx_r;
4977
- __Pyx_RefNannyDeclarations
4978
- __Pyx_RefNannySetupContext("is_timedelta64_object", 0);
4979
5056
 
4980
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
5057
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
4981
5058
  * bool
4982
5059
  * """
4983
5060
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -4987,7 +5064,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
4987
5064
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
4988
5065
  goto __pyx_L0;
4989
5066
 
4990
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
5067
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
4991
5068
  *
4992
5069
  *
4993
5070
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -4997,11 +5074,10 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
4997
5074
 
4998
5075
  /* function exit code */
4999
5076
  __pyx_L0:;
5000
- __Pyx_RefNannyFinishContext();
5001
5077
  return __pyx_r;
5002
5078
  }
5003
5079
 
5004
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
5080
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
5005
5081
  *
5006
5082
  *
5007
5083
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -5011,10 +5087,8 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
5011
5087
 
5012
5088
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
5013
5089
  int __pyx_r;
5014
- __Pyx_RefNannyDeclarations
5015
- __Pyx_RefNannySetupContext("is_datetime64_object", 0);
5016
5090
 
5017
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
5091
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
5018
5092
  * bool
5019
5093
  * """
5020
5094
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -5024,7 +5098,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
5024
5098
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
5025
5099
  goto __pyx_L0;
5026
5100
 
5027
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
5101
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
5028
5102
  *
5029
5103
  *
5030
5104
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -5034,11 +5108,10 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
5034
5108
 
5035
5109
  /* function exit code */
5036
5110
  __pyx_L0:;
5037
- __Pyx_RefNannyFinishContext();
5038
5111
  return __pyx_r;
5039
5112
  }
5040
5113
 
5041
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
5114
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
5042
5115
  *
5043
5116
  *
5044
5117
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5049,7 +5122,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
5049
5122
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
5050
5123
  npy_datetime __pyx_r;
5051
5124
 
5052
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
5125
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
5053
5126
  * also needed. That can be found using `get_datetime64_unit`.
5054
5127
  * """
5055
5128
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -5059,7 +5132,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
5059
5132
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
5060
5133
  goto __pyx_L0;
5061
5134
 
5062
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
5135
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
5063
5136
  *
5064
5137
  *
5065
5138
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5072,7 +5145,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
5072
5145
  return __pyx_r;
5073
5146
  }
5074
5147
 
5075
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
5148
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
5076
5149
  *
5077
5150
  *
5078
5151
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5083,7 +5156,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
5083
5156
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
5084
5157
  npy_timedelta __pyx_r;
5085
5158
 
5086
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1045
5159
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1045
5087
5160
  * returns the int64 value underlying scalar numpy timedelta64 object
5088
5161
  * """
5089
5162
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -5093,7 +5166,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
5093
5166
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
5094
5167
  goto __pyx_L0;
5095
5168
 
5096
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
5169
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
5097
5170
  *
5098
5171
  *
5099
5172
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5106,7 +5179,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
5106
5179
  return __pyx_r;
5107
5180
  }
5108
5181
 
5109
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
5182
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
5110
5183
  *
5111
5184
  *
5112
5185
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5117,7 +5190,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
5117
5190
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
5118
5191
  NPY_DATETIMEUNIT __pyx_r;
5119
5192
 
5120
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1052
5193
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1052
5121
5194
  * returns the unit part of the dtype for a numpy datetime64 object.
5122
5195
  * """
5123
5196
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -5125,7 +5198,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
5125
5198
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
5126
5199
  goto __pyx_L0;
5127
5200
 
5128
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
5201
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
5129
5202
  *
5130
5203
  *
5131
5204
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5180,8 +5253,7 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
5180
5253
  #if CYTHON_ASSUME_SAFE_MACROS
5181
5254
  __pyx_nargs = PyTuple_GET_SIZE(__pyx_args);
5182
5255
  #else
5183
- __pyx_nargs = PyTuple_Size(__pyx_args);
5184
- if (unlikely((__pyx_nargs < 0))) __PYX_ERR(0, 31, __pyx_L3_error)
5256
+ __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL;
5185
5257
  #endif
5186
5258
  #endif
5187
5259
  __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs);
@@ -5230,10 +5302,11 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
5230
5302
  __pyx_v_file = values[0];
5231
5303
  __pyx_v_array = values[1];
5232
5304
  }
5233
- goto __pyx_L4_argument_unpacking_done;
5305
+ goto __pyx_L6_skip;
5234
5306
  __pyx_L5_argtuple_error:;
5235
5307
  __Pyx_RaiseArgtupleInvalid("set_structure", 1, 2, 2, __pyx_nargs); __PYX_ERR(0, 31, __pyx_L3_error)
5236
- goto __pyx_L3_error;
5308
+ __pyx_L6_skip:;
5309
+ goto __pyx_L4_argument_unpacking_done;
5237
5310
  __pyx_L3_error:;
5238
5311
  {
5239
5312
  Py_ssize_t __pyx_temp;
@@ -5334,7 +5407,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
5334
5407
  int __pyx_lineno = 0;
5335
5408
  const char *__pyx_filename = NULL;
5336
5409
  int __pyx_clineno = 0;
5337
- __Pyx_RefNannySetupContext("set_structure", 0);
5410
+ __Pyx_RefNannySetupContext("set_structure", 1);
5338
5411
 
5339
5412
  /* "biotite/structure/io/mmtf/convertarray.pyx":67
5340
5413
  *
@@ -5383,7 +5456,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
5383
5456
  }
5384
5457
  #endif
5385
5458
  {
5386
- PyObject *__pyx_callargs[1] = {__pyx_t_4, };
5459
+ PyObject *__pyx_callargs[2] = {__pyx_t_4, NULL};
5387
5460
  __pyx_t_1 = __Pyx_PyObject_FastCall(__pyx_t_3, __pyx_callargs+1-__pyx_t_5, 0+__pyx_t_5);
5388
5461
  __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
5389
5462
  if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 70, __pyx_L1_error)
@@ -5518,7 +5591,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
5518
5591
  }
5519
5592
  #endif
5520
5593
  {
5521
- PyObject *__pyx_callargs[1] = {__pyx_t_4, };
5594
+ PyObject *__pyx_callargs[2] = {__pyx_t_4, NULL};
5522
5595
  __pyx_t_1 = __Pyx_PyObject_FastCall(__pyx_t_3, __pyx_callargs+1-__pyx_t_5, 0+__pyx_t_5);
5523
5596
  __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
5524
5597
  if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 82, __pyx_L1_error)
@@ -5672,7 +5745,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
5672
5745
  }
5673
5746
  #endif
5674
5747
  {
5675
- PyObject *__pyx_callargs[1] = {__pyx_t_4, };
5748
+ PyObject *__pyx_callargs[2] = {__pyx_t_4, NULL};
5676
5749
  __pyx_t_1 = __Pyx_PyObject_FastCall(__pyx_t_6, __pyx_callargs+1-__pyx_t_5, 0+__pyx_t_5);
5677
5750
  __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
5678
5751
  if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 118, __pyx_L1_error)
@@ -5886,7 +5959,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
5886
5959
  }
5887
5960
  #endif
5888
5961
  {
5889
- PyObject *__pyx_callargs[1] = {__pyx_t_7, };
5962
+ PyObject *__pyx_callargs[2] = {__pyx_t_7, NULL};
5890
5963
  __pyx_t_1 = __Pyx_PyObject_FastCall(__pyx_t_4, __pyx_callargs+1-__pyx_t_10, 0+__pyx_t_10);
5891
5964
  __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0;
5892
5965
  if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 136, __pyx_L1_error)
@@ -5928,7 +6001,8 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
5928
6001
  __pyx_t_1 = __Pyx_PyObject_GetSlice(((PyObject *)__pyx_v_arr_element), __pyx_v_start, __pyx_v_stop, NULL, NULL, NULL, 1, 1, 1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 139, __pyx_L10_error)
5929
6002
  __Pyx_GOTREF(__pyx_t_1);
5930
6003
  if (likely(PyList_CheckExact(__pyx_t_1)) || PyTuple_CheckExact(__pyx_t_1)) {
5931
- __pyx_t_7 = __pyx_t_1; __Pyx_INCREF(__pyx_t_7); __pyx_t_12 = 0;
6004
+ __pyx_t_7 = __pyx_t_1; __Pyx_INCREF(__pyx_t_7);
6005
+ __pyx_t_12 = 0;
5932
6006
  __pyx_t_13 = NULL;
5933
6007
  } else {
5934
6008
  __pyx_t_12 = -1; __pyx_t_7 = PyObject_GetIter(__pyx_t_1); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 139, __pyx_L10_error)
@@ -5939,19 +6013,31 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
5939
6013
  for (;;) {
5940
6014
  if (likely(!__pyx_t_13)) {
5941
6015
  if (likely(PyList_CheckExact(__pyx_t_7))) {
5942
- if (__pyx_t_12 >= PyList_GET_SIZE(__pyx_t_7)) break;
6016
+ {
6017
+ Py_ssize_t __pyx_temp = __Pyx_PyList_GET_SIZE(__pyx_t_7);
6018
+ #if !CYTHON_ASSUME_SAFE_MACROS
6019
+ if (unlikely((__pyx_temp < 0))) __PYX_ERR(0, 139, __pyx_L10_error)
6020
+ #endif
6021
+ if (__pyx_t_12 >= __pyx_temp) break;
6022
+ }
5943
6023
  #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS
5944
6024
  __pyx_t_1 = PyList_GET_ITEM(__pyx_t_7, __pyx_t_12); __Pyx_INCREF(__pyx_t_1); __pyx_t_12++; if (unlikely((0 < 0))) __PYX_ERR(0, 139, __pyx_L10_error)
5945
6025
  #else
5946
- __pyx_t_1 = PySequence_ITEM(__pyx_t_7, __pyx_t_12); __pyx_t_12++; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 139, __pyx_L10_error)
6026
+ __pyx_t_1 = __Pyx_PySequence_ITEM(__pyx_t_7, __pyx_t_12); __pyx_t_12++; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 139, __pyx_L10_error)
5947
6027
  __Pyx_GOTREF(__pyx_t_1);
5948
6028
  #endif
5949
6029
  } else {
5950
- if (__pyx_t_12 >= PyTuple_GET_SIZE(__pyx_t_7)) break;
6030
+ {
6031
+ Py_ssize_t __pyx_temp = __Pyx_PyTuple_GET_SIZE(__pyx_t_7);
6032
+ #if !CYTHON_ASSUME_SAFE_MACROS
6033
+ if (unlikely((__pyx_temp < 0))) __PYX_ERR(0, 139, __pyx_L10_error)
6034
+ #endif
6035
+ if (__pyx_t_12 >= __pyx_temp) break;
6036
+ }
5951
6037
  #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS
5952
6038
  __pyx_t_1 = PyTuple_GET_ITEM(__pyx_t_7, __pyx_t_12); __Pyx_INCREF(__pyx_t_1); __pyx_t_12++; if (unlikely((0 < 0))) __PYX_ERR(0, 139, __pyx_L10_error)
5953
6039
  #else
5954
- __pyx_t_1 = PySequence_ITEM(__pyx_t_7, __pyx_t_12); __pyx_t_12++; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 139, __pyx_L10_error)
6040
+ __pyx_t_1 = __Pyx_PySequence_ITEM(__pyx_t_7, __pyx_t_12); __pyx_t_12++; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 139, __pyx_L10_error)
5955
6041
  __Pyx_GOTREF(__pyx_t_1);
5956
6042
  #endif
5957
6043
  }
@@ -5986,7 +6072,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
5986
6072
  }
5987
6073
  #endif
5988
6074
  {
5989
- PyObject *__pyx_callargs[1] = {__pyx_t_3, };
6075
+ PyObject *__pyx_callargs[2] = {__pyx_t_3, NULL};
5990
6076
  __pyx_t_1 = __Pyx_PyObject_FastCall(__pyx_t_6, __pyx_callargs+1-__pyx_t_10, 0+__pyx_t_10);
5991
6077
  __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0;
5992
6078
  if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 139, __pyx_L10_error)
@@ -6055,7 +6141,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
6055
6141
  }
6056
6142
  #endif
6057
6143
  {
6058
- PyObject *__pyx_callargs[1] = {__pyx_t_4, };
6144
+ PyObject *__pyx_callargs[2] = {__pyx_t_4, NULL};
6059
6145
  __pyx_t_7 = __Pyx_PyObject_FastCall(__pyx_t_1, __pyx_callargs+1-__pyx_t_10, 0+__pyx_t_10);
6060
6146
  __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
6061
6147
  if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 143, __pyx_L1_error)
@@ -6231,7 +6317,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
6231
6317
  }
6232
6318
  #endif
6233
6319
  {
6234
- PyObject *__pyx_callargs[1] = {__pyx_t_4, };
6320
+ PyObject *__pyx_callargs[2] = {__pyx_t_4, NULL};
6235
6321
  __pyx_t_7 = __Pyx_PyObject_FastCall(__pyx_t_1, __pyx_callargs+1-__pyx_t_10, 0+__pyx_t_10);
6236
6322
  __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
6237
6323
  if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 156, __pyx_L1_error)
@@ -6268,7 +6354,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
6268
6354
  }
6269
6355
  #endif
6270
6356
  {
6271
- PyObject *__pyx_callargs[1] = {__pyx_t_4, };
6357
+ PyObject *__pyx_callargs[2] = {__pyx_t_4, NULL};
6272
6358
  __pyx_t_1 = __Pyx_PyObject_FastCall(__pyx_t_6, __pyx_callargs+1-__pyx_t_10, 0+__pyx_t_10);
6273
6359
  __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
6274
6360
  if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 158, __pyx_L1_error)
@@ -6293,7 +6379,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
6293
6379
  }
6294
6380
  #endif
6295
6381
  {
6296
- PyObject *__pyx_callargs[1] = {__pyx_t_1, };
6382
+ PyObject *__pyx_callargs[2] = {__pyx_t_1, NULL};
6297
6383
  __pyx_t_7 = __Pyx_PyObject_FastCall(__pyx_t_6, __pyx_callargs+1-__pyx_t_10, 0+__pyx_t_10);
6298
6384
  __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0;
6299
6385
  if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 158, __pyx_L1_error)
@@ -6341,7 +6427,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
6341
6427
  }
6342
6428
  #endif
6343
6429
  {
6344
- PyObject *__pyx_callargs[1] = {__pyx_t_7, };
6430
+ PyObject *__pyx_callargs[2] = {__pyx_t_7, NULL};
6345
6431
  __pyx_t_6 = __Pyx_PyObject_FastCall(__pyx_t_1, __pyx_callargs+1-__pyx_t_10, 0+__pyx_t_10);
6346
6432
  __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0;
6347
6433
  if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 161, __pyx_L1_error)
@@ -6974,7 +7060,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
6974
7060
  }
6975
7061
  #endif
6976
7062
  {
6977
- PyObject *__pyx_callargs[1] = {__pyx_t_7, };
7063
+ PyObject *__pyx_callargs[2] = {__pyx_t_7, NULL};
6978
7064
  __pyx_t_6 = __Pyx_PyObject_FastCall(__pyx_t_3, __pyx_callargs+1-__pyx_t_5, 0+__pyx_t_5);
6979
7065
  __Pyx_XDECREF(__pyx_t_7); __pyx_t_7 = 0;
6980
7066
  if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 230, __pyx_L1_error)
@@ -7513,7 +7599,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
7513
7599
  }
7514
7600
  #endif
7515
7601
  {
7516
- PyObject *__pyx_callargs[1] = {__pyx_t_1, };
7602
+ PyObject *__pyx_callargs[2] = {__pyx_t_1, NULL};
7517
7603
  __pyx_t_7 = __Pyx_PyObject_FastCall(__pyx_t_4, __pyx_callargs+1-__pyx_t_5, 0+__pyx_t_5);
7518
7604
  __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0;
7519
7605
  if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 255, __pyx_L1_error)
@@ -7537,7 +7623,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
7537
7623
  }
7538
7624
  #endif
7539
7625
  {
7540
- PyObject *__pyx_callargs[1] = {__pyx_t_15, };
7626
+ PyObject *__pyx_callargs[2] = {__pyx_t_15, NULL};
7541
7627
  __pyx_t_4 = __Pyx_PyObject_FastCall(__pyx_t_1, __pyx_callargs+1-__pyx_t_5, 0+__pyx_t_5);
7542
7628
  __Pyx_XDECREF(__pyx_t_15); __pyx_t_15 = 0;
7543
7629
  if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 255, __pyx_L1_error)
@@ -7876,7 +7962,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
7876
7962
  }
7877
7963
  #endif
7878
7964
  {
7879
- PyObject *__pyx_callargs[1] = {__pyx_t_1, };
7965
+ PyObject *__pyx_callargs[2] = {__pyx_t_1, NULL};
7880
7966
  __pyx_t_6 = __Pyx_PyObject_FastCall(__pyx_t_4, __pyx_callargs+1-__pyx_t_5, 0+__pyx_t_5);
7881
7967
  __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0;
7882
7968
  if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 268, __pyx_L1_error)
@@ -8028,7 +8114,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
8028
8114
  }
8029
8115
  #endif
8030
8116
  {
8031
- PyObject *__pyx_callargs[1] = {__pyx_t_4, };
8117
+ PyObject *__pyx_callargs[2] = {__pyx_t_4, NULL};
8032
8118
  __pyx_t_1 = __Pyx_PyObject_FastCall(__pyx_t_3, __pyx_callargs+1-__pyx_t_5, 0+__pyx_t_5);
8033
8119
  __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
8034
8120
  if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 277, __pyx_L1_error)
@@ -8536,7 +8622,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
8536
8622
  }
8537
8623
  #endif
8538
8624
  {
8539
- PyObject *__pyx_callargs[1] = {__pyx_t_15, };
8625
+ PyObject *__pyx_callargs[2] = {__pyx_t_15, NULL};
8540
8626
  __pyx_t_7 = __Pyx_PyObject_FastCall(__pyx_t_3, __pyx_callargs+1-__pyx_t_5, 0+__pyx_t_5);
8541
8627
  __Pyx_XDECREF(__pyx_t_15); __pyx_t_15 = 0;
8542
8628
  if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 298, __pyx_L1_error)
@@ -8583,7 +8669,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
8583
8669
  }
8584
8670
  #endif
8585
8671
  {
8586
- PyObject *__pyx_callargs[1] = {__pyx_t_16, };
8672
+ PyObject *__pyx_callargs[2] = {__pyx_t_16, NULL};
8587
8673
  __pyx_t_15 = __Pyx_PyObject_FastCall(__pyx_t_1, __pyx_callargs+1-__pyx_t_5, 0+__pyx_t_5);
8588
8674
  __Pyx_XDECREF(__pyx_t_16); __pyx_t_16 = 0;
8589
8675
  if (unlikely(!__pyx_t_15)) __PYX_ERR(0, 300, __pyx_L1_error)
@@ -8782,7 +8868,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_set_struc
8782
8868
  }
8783
8869
  #endif
8784
8870
  {
8785
- PyObject *__pyx_callargs[1] = {__pyx_t_3, };
8871
+ PyObject *__pyx_callargs[2] = {__pyx_t_3, NULL};
8786
8872
  __pyx_t_15 = __Pyx_PyObject_FastCall(__pyx_t_7, __pyx_callargs+1-__pyx_t_5, 0+__pyx_t_5);
8787
8873
  __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0;
8788
8874
  if (unlikely(!__pyx_t_15)) __PYX_ERR(0, 305, __pyx_L1_error)
@@ -9453,8 +9539,7 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
9453
9539
  #if CYTHON_ASSUME_SAFE_MACROS
9454
9540
  __pyx_nargs = PyTuple_GET_SIZE(__pyx_args);
9455
9541
  #else
9456
- __pyx_nargs = PyTuple_Size(__pyx_args);
9457
- if (unlikely((__pyx_nargs < 0))) __PYX_ERR(0, 337, __pyx_L3_error)
9542
+ __pyx_nargs = PyTuple_Size(__pyx_args); if (unlikely(__pyx_nargs < 0)) return NULL;
9458
9543
  #endif
9459
9544
  #endif
9460
9545
  __pyx_kwvalues = __Pyx_KwValues_FASTCALL(__pyx_args, __pyx_nargs);
@@ -9503,10 +9588,11 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
9503
9588
  __pyx_v_file = values[0];
9504
9589
  __pyx_v_record = values[1];
9505
9590
  }
9506
- goto __pyx_L4_argument_unpacking_done;
9591
+ goto __pyx_L6_skip;
9507
9592
  __pyx_L5_argtuple_error:;
9508
9593
  __Pyx_RaiseArgtupleInvalid("_delete_record", 1, 2, 2, __pyx_nargs); __PYX_ERR(0, 337, __pyx_L3_error)
9509
- goto __pyx_L3_error;
9594
+ __pyx_L6_skip:;
9595
+ goto __pyx_L4_argument_unpacking_done;
9510
9596
  __pyx_L3_error:;
9511
9597
  {
9512
9598
  Py_ssize_t __pyx_temp;
@@ -9540,7 +9626,7 @@ static PyObject *__pyx_pf_7biotite_9structure_2io_4mmtf_12convertarray_2_delete_
9540
9626
  int __pyx_lineno = 0;
9541
9627
  const char *__pyx_filename = NULL;
9542
9628
  int __pyx_clineno = 0;
9543
- __Pyx_RefNannySetupContext("_delete_record", 0);
9629
+ __Pyx_RefNannySetupContext("_delete_record", 1);
9544
9630
 
9545
9631
  /* "biotite/structure/io/mmtf/convertarray.pyx":338
9546
9632
  *
@@ -9818,7 +9904,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
9818
9904
  __Pyx_RefNannyDeclarations
9819
9905
  __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0);
9820
9906
 
9821
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
9907
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
9822
9908
  * __pyx_import_array()
9823
9909
  * except Exception:
9824
9910
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -9829,7 +9915,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
9829
9915
  __Pyx_GOTREF(__pyx_tuple_);
9830
9916
  __Pyx_GIVEREF(__pyx_tuple_);
9831
9917
 
9832
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-4zheqwhz/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
9918
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-e7cfnk9g/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
9833
9919
  * _import_umath()
9834
9920
  * except Exception:
9835
9921
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -10047,33 +10133,33 @@ static int __Pyx_modinit_type_import_code(void) {
10047
10133
  /*--- Type import code ---*/
10048
10134
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 9, __pyx_L1_error)
10049
10135
  __Pyx_GOTREF(__pyx_t_1);
10050
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_2(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
10136
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
10051
10137
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
10052
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_2(PyTypeObject),
10138
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
10053
10139
  #elif CYTHON_COMPILING_IN_LIMITED_API
10054
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_2(PyTypeObject),
10140
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
10055
10141
  #else
10056
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_2(PyHeapTypeObject),
10142
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
10057
10143
  #endif
10058
- __Pyx_ImportType_CheckSize_Warn_3_0_2); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(2, 9, __pyx_L1_error)
10144
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(2, 9, __pyx_L1_error)
10059
10145
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
10060
10146
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 202, __pyx_L1_error)
10061
10147
  __Pyx_GOTREF(__pyx_t_1);
10062
- __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_2(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_2(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_2); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(1, 202, __pyx_L1_error)
10063
- __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_2(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_2(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_2); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(1, 225, __pyx_L1_error)
10064
- __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_2(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_2(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_2); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(1, 229, __pyx_L1_error)
10065
- __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_2(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_2(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_2); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(1, 238, __pyx_L1_error)
10066
- __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_2(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_2(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_2); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(1, 812, __pyx_L1_error)
10067
- __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_2(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_2(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_2); if (!__pyx_ptype_5numpy_number) __PYX_ERR(1, 814, __pyx_L1_error)
10068
- __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_2(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_2(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_2); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(1, 816, __pyx_L1_error)
10069
- __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_2(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_2(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_2); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(1, 818, __pyx_L1_error)
10070
- __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_2(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_2(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_2); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(1, 820, __pyx_L1_error)
10071
- __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_2(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_2(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_2); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(1, 822, __pyx_L1_error)
10072
- __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_2(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_2(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_2); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(1, 824, __pyx_L1_error)
10073
- __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_2(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_2(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_2); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(1, 826, __pyx_L1_error)
10074
- __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_2(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_2(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_2); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(1, 828, __pyx_L1_error)
10075
- __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_2(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_2(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_2); if (!__pyx_ptype_5numpy_character) __PYX_ERR(1, 830, __pyx_L1_error)
10076
- __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_2(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_2(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_2); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(1, 868, __pyx_L1_error)
10148
+ __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(1, 202, __pyx_L1_error)
10149
+ __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(1, 225, __pyx_L1_error)
10150
+ __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(1, 229, __pyx_L1_error)
10151
+ __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(1, 238, __pyx_L1_error)
10152
+ __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(1, 812, __pyx_L1_error)
10153
+ __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_number) __PYX_ERR(1, 814, __pyx_L1_error)
10154
+ __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(1, 816, __pyx_L1_error)
10155
+ __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(1, 818, __pyx_L1_error)
10156
+ __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(1, 820, __pyx_L1_error)
10157
+ __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(1, 822, __pyx_L1_error)
10158
+ __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(1, 824, __pyx_L1_error)
10159
+ __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(1, 826, __pyx_L1_error)
10160
+ __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(1, 828, __pyx_L1_error)
10161
+ __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_character) __PYX_ERR(1, 830, __pyx_L1_error)
10162
+ __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(1, 868, __pyx_L1_error)
10077
10163
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
10078
10164
  __Pyx_RefNannyFinishContext();
10079
10165
  return 0;
@@ -10288,7 +10374,7 @@ static CYTHON_SMALL_CODE int __pyx_pymod_exec_convertarray(PyObject *__pyx_pyini
10288
10374
  __pyx_t_1 = PyModule_Create(&__pyx_moduledef); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 1, __pyx_L1_error)
10289
10375
  {
10290
10376
  int add_module_result = PyState_AddModule(__pyx_t_1, &__pyx_moduledef);
10291
- __pyx_t_1 = 0; /* transfer ownership from __pyx_t_1 to convertarray pseudovariable */
10377
+ __pyx_t_1 = 0; /* transfer ownership from __pyx_t_1 to "convertarray" pseudovariable */
10292
10378
  if (unlikely((add_module_result < 0))) __PYX_ERR(0, 1, __pyx_L1_error)
10293
10379
  pystate_addmodule_run = 1;
10294
10380
  }
@@ -10300,10 +10386,8 @@ static CYTHON_SMALL_CODE int __pyx_pymod_exec_convertarray(PyObject *__pyx_pyini
10300
10386
  CYTHON_UNUSED_VAR(__pyx_t_1);
10301
10387
  __pyx_d = PyModule_GetDict(__pyx_m); if (unlikely(!__pyx_d)) __PYX_ERR(0, 1, __pyx_L1_error)
10302
10388
  Py_INCREF(__pyx_d);
10303
- __pyx_b = PyImport_AddModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_b)) __PYX_ERR(0, 1, __pyx_L1_error)
10304
- Py_INCREF(__pyx_b);
10305
- __pyx_cython_runtime = PyImport_AddModule((char *) "cython_runtime"); if (unlikely(!__pyx_cython_runtime)) __PYX_ERR(0, 1, __pyx_L1_error)
10306
- Py_INCREF(__pyx_cython_runtime);
10389
+ __pyx_b = __Pyx_PyImport_AddModuleRef(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_b)) __PYX_ERR(0, 1, __pyx_L1_error)
10390
+ __pyx_cython_runtime = __Pyx_PyImport_AddModuleRef((const char *) "cython_runtime"); if (unlikely(!__pyx_cython_runtime)) __PYX_ERR(0, 1, __pyx_L1_error)
10307
10391
  if (PyObject_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
10308
10392
  #if CYTHON_REFNANNY
10309
10393
  __Pyx_RefNanny = __Pyx_RefNannyImportAPI("refnanny");
@@ -10315,7 +10399,7 @@ if (!__Pyx_RefNanny) {
10315
10399
  }
10316
10400
  #endif
10317
10401
  __Pyx_RefNannySetupContext("__Pyx_PyMODINIT_FUNC PyInit_convertarray(void)", 0);
10318
- if (__Pyx_check_binary_version() < 0) __PYX_ERR(0, 1, __pyx_L1_error)
10402
+ if (__Pyx_check_binary_version(__PYX_LIMITED_VERSION_HEX, __Pyx_get_runtime_version(), CYTHON_COMPILING_IN_LIMITED_API) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
10319
10403
  #ifdef __Pxy_PyFrame_Initialize_Offsets
10320
10404
  __Pxy_PyFrame_Initialize_Offsets();
10321
10405
  #endif
@@ -10748,6 +10832,8 @@ static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObjec
10748
10832
  tmp_value = tstate->current_exception;
10749
10833
  tstate->current_exception = value;
10750
10834
  Py_XDECREF(tmp_value);
10835
+ Py_XDECREF(type);
10836
+ Py_XDECREF(tb);
10751
10837
  #else
10752
10838
  PyObject *tmp_type, *tmp_value, *tmp_tb;
10753
10839
  tmp_type = tstate->curexc_type;
@@ -10805,14 +10891,20 @@ static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject
10805
10891
  #endif
10806
10892
 
10807
10893
  /* PyObjectGetAttrStrNoError */
10894
+ #if __PYX_LIMITED_VERSION_HEX < 0x030d00A1
10808
10895
  static void __Pyx_PyObject_GetAttrStr_ClearAttributeError(void) {
10809
10896
  __Pyx_PyThreadState_declare
10810
10897
  __Pyx_PyThreadState_assign
10811
10898
  if (likely(__Pyx_PyErr_ExceptionMatches(PyExc_AttributeError)))
10812
10899
  __Pyx_PyErr_Clear();
10813
10900
  }
10901
+ #endif
10814
10902
  static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStrNoError(PyObject* obj, PyObject* attr_name) {
10815
10903
  PyObject *result;
10904
+ #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
10905
+ (void) PyObject_GetOptionalAttr(obj, attr_name, &result);
10906
+ return result;
10907
+ #else
10816
10908
  #if CYTHON_COMPILING_IN_CPYTHON && CYTHON_USE_TYPE_SLOTS && PY_VERSION_HEX >= 0x030700B1
10817
10909
  PyTypeObject* tp = Py_TYPE(obj);
10818
10910
  if (likely(tp->tp_getattro == PyObject_GenericGetAttr)) {
@@ -10824,6 +10916,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStrNoError(PyObject* obj, P
10824
10916
  __Pyx_PyObject_GetAttrStr_ClearAttributeError();
10825
10917
  }
10826
10918
  return result;
10919
+ #endif
10827
10920
  }
10828
10921
 
10829
10922
  /* GetBuiltinName */
@@ -11024,8 +11117,13 @@ static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg
11024
11117
  ternaryfunc call = Py_TYPE(func)->tp_call;
11025
11118
  if (unlikely(!call))
11026
11119
  return PyObject_Call(func, arg, kw);
11120
+ #if PY_MAJOR_VERSION < 3
11027
11121
  if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object")))
11028
11122
  return NULL;
11123
+ #else
11124
+ if (unlikely(Py_EnterRecursiveCall(" while calling a Python object")))
11125
+ return NULL;
11126
+ #endif
11029
11127
  result = (*call)(func, arg, kw);
11030
11128
  Py_LeaveRecursiveCall();
11031
11129
  if (unlikely(!result) && unlikely(!PyErr_Occurred())) {
@@ -11397,13 +11495,31 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
11397
11495
  {
11398
11496
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
11399
11497
  if (unlikely(eq != 0)) {
11400
- if (unlikely(eq < 0)) return NULL; // error
11498
+ if (unlikely(eq < 0)) return NULL;
11401
11499
  return kwvalues[i];
11402
11500
  }
11403
11501
  }
11404
- return NULL; // not found (no exception set)
11502
+ return NULL;
11503
+ }
11504
+ #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
11505
+ CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
11506
+ Py_ssize_t i, nkwargs = PyTuple_GET_SIZE(kwnames);
11507
+ PyObject *dict;
11508
+ dict = PyDict_New();
11509
+ if (unlikely(!dict))
11510
+ return NULL;
11511
+ for (i=0; i<nkwargs; i++) {
11512
+ PyObject *key = PyTuple_GET_ITEM(kwnames, i);
11513
+ if (unlikely(PyDict_SetItem(dict, key, kwvalues[i]) < 0))
11514
+ goto bad;
11515
+ }
11516
+ return dict;
11517
+ bad:
11518
+ Py_DECREF(dict);
11519
+ return NULL;
11405
11520
  }
11406
11521
  #endif
11522
+ #endif
11407
11523
 
11408
11524
  /* RaiseArgTupleInvalid */
11409
11525
  static void __Pyx_RaiseArgtupleInvalid(
@@ -11496,7 +11612,7 @@ static int __Pyx_ParseOptionalKeywords(
11496
11612
  if (*name) {
11497
11613
  values[name-argnames] = value;
11498
11614
  #if CYTHON_AVOID_BORROWED_REFS
11499
- Py_INCREF(value); // transfer ownership of value to values
11615
+ Py_INCREF(value);
11500
11616
  Py_DECREF(key);
11501
11617
  #endif
11502
11618
  key = NULL;
@@ -11515,7 +11631,7 @@ static int __Pyx_ParseOptionalKeywords(
11515
11631
  && _PyString_Eq(**name, key)) {
11516
11632
  values[name-argnames] = value;
11517
11633
  #if CYTHON_AVOID_BORROWED_REFS
11518
- value = NULL; // ownership transferred to values
11634
+ value = NULL;
11519
11635
  #endif
11520
11636
  break;
11521
11637
  }
@@ -11547,7 +11663,7 @@ static int __Pyx_ParseOptionalKeywords(
11547
11663
  if (cmp == 0) {
11548
11664
  values[name-argnames] = value;
11549
11665
  #if CYTHON_AVOID_BORROWED_REFS
11550
- value = NULL; // ownership transferred to values
11666
+ value = NULL;
11551
11667
  #endif
11552
11668
  break;
11553
11669
  }
@@ -11646,9 +11762,15 @@ static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args,
11646
11762
  PyObject *result;
11647
11763
  assert(kwargs == NULL || PyDict_Check(kwargs));
11648
11764
  nk = kwargs ? PyDict_Size(kwargs) : 0;
11765
+ #if PY_MAJOR_VERSION < 3
11649
11766
  if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) {
11650
11767
  return NULL;
11651
11768
  }
11769
+ #else
11770
+ if (unlikely(Py_EnterRecursiveCall(" while calling a Python object"))) {
11771
+ return NULL;
11772
+ }
11773
+ #endif
11652
11774
  if (
11653
11775
  #if PY_MAJOR_VERSION >= 3
11654
11776
  co->co_kwonlyargcount == 0 &&
@@ -11723,10 +11845,15 @@ done:
11723
11845
  static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg) {
11724
11846
  PyObject *self, *result;
11725
11847
  PyCFunction cfunc;
11726
- cfunc = PyCFunction_GET_FUNCTION(func);
11727
- self = PyCFunction_GET_SELF(func);
11848
+ cfunc = __Pyx_CyOrPyCFunction_GET_FUNCTION(func);
11849
+ self = __Pyx_CyOrPyCFunction_GET_SELF(func);
11850
+ #if PY_MAJOR_VERSION < 3
11728
11851
  if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object")))
11729
11852
  return NULL;
11853
+ #else
11854
+ if (unlikely(Py_EnterRecursiveCall(" while calling a Python object")))
11855
+ return NULL;
11856
+ #endif
11730
11857
  result = cfunc(self, arg);
11731
11858
  Py_LeaveRecursiveCall();
11732
11859
  if (unlikely(!result) && unlikely(!PyErr_Occurred())) {
@@ -11739,6 +11866,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject
11739
11866
  #endif
11740
11867
 
11741
11868
  /* PyObjectFastCall */
11869
+ #if PY_VERSION_HEX < 0x03090000 || CYTHON_COMPILING_IN_LIMITED_API
11742
11870
  static PyObject* __Pyx_PyObject_FastCall_fallback(PyObject *func, PyObject **args, size_t nargs, PyObject *kwargs) {
11743
11871
  PyObject *argstuple;
11744
11872
  PyObject *result = 0;
@@ -11754,28 +11882,17 @@ static PyObject* __Pyx_PyObject_FastCall_fallback(PyObject *func, PyObject **arg
11754
11882
  Py_DECREF(argstuple);
11755
11883
  return result;
11756
11884
  }
11885
+ #endif
11757
11886
  static CYTHON_INLINE PyObject* __Pyx_PyObject_FastCallDict(PyObject *func, PyObject **args, size_t _nargs, PyObject *kwargs) {
11758
11887
  Py_ssize_t nargs = __Pyx_PyVectorcall_NARGS(_nargs);
11759
11888
  #if CYTHON_COMPILING_IN_CPYTHON
11760
11889
  if (nargs == 0 && kwargs == NULL) {
11761
- #if defined(__Pyx_CyFunction_USED) && defined(NDEBUG)
11762
- if (__Pyx_IsCyOrPyCFunction(func))
11763
- #else
11764
- if (PyCFunction_Check(func))
11765
- #endif
11766
- {
11767
- if (likely(PyCFunction_GET_FLAGS(func) & METH_NOARGS)) {
11768
- return __Pyx_PyObject_CallMethO(func, NULL);
11769
- }
11770
- }
11890
+ if (__Pyx_CyOrPyCFunction_Check(func) && likely( __Pyx_CyOrPyCFunction_GET_FLAGS(func) & METH_NOARGS))
11891
+ return __Pyx_PyObject_CallMethO(func, NULL);
11771
11892
  }
11772
11893
  else if (nargs == 1 && kwargs == NULL) {
11773
- if (PyCFunction_Check(func))
11774
- {
11775
- if (likely(PyCFunction_GET_FLAGS(func) & METH_O)) {
11776
- return __Pyx_PyObject_CallMethO(func, args[0]);
11777
- }
11778
- }
11894
+ if (__Pyx_CyOrPyCFunction_Check(func) && likely( __Pyx_CyOrPyCFunction_GET_FLAGS(func) & METH_O))
11895
+ return __Pyx_PyObject_CallMethO(func, args[0]);
11779
11896
  }
11780
11897
  #endif
11781
11898
  #if PY_VERSION_HEX < 0x030800B1
@@ -11799,25 +11916,31 @@ static CYTHON_INLINE PyObject* __Pyx_PyObject_FastCallDict(PyObject *func, PyObj
11799
11916
  }
11800
11917
  #endif
11801
11918
  #endif
11802
- #if CYTHON_VECTORCALL
11803
- #if Py_VERSION_HEX < 0x03090000
11804
- vectorcallfunc f = _PyVectorcall_Function(func);
11805
- #else
11806
- vectorcallfunc f = PyVectorcall_Function(func);
11807
- #endif
11808
- if (f) {
11809
- return f(func, args, (size_t)nargs, kwargs);
11810
- }
11811
- #elif defined(__Pyx_CyFunction_USED) && CYTHON_BACKPORT_VECTORCALL
11812
- if (__Pyx_CyFunction_CheckExact(func)) {
11813
- __pyx_vectorcallfunc f = __Pyx_CyFunction_func_vectorcall(func);
11814
- if (f) return f(func, args, (size_t)nargs, kwargs);
11919
+ if (kwargs == NULL) {
11920
+ #if CYTHON_VECTORCALL
11921
+ #if PY_VERSION_HEX < 0x03090000
11922
+ vectorcallfunc f = _PyVectorcall_Function(func);
11923
+ #else
11924
+ vectorcallfunc f = PyVectorcall_Function(func);
11925
+ #endif
11926
+ if (f) {
11927
+ return f(func, args, (size_t)nargs, NULL);
11928
+ }
11929
+ #elif defined(__Pyx_CyFunction_USED) && CYTHON_BACKPORT_VECTORCALL
11930
+ if (__Pyx_CyFunction_CheckExact(func)) {
11931
+ __pyx_vectorcallfunc f = __Pyx_CyFunction_func_vectorcall(func);
11932
+ if (f) return f(func, args, (size_t)nargs, NULL);
11933
+ }
11934
+ #endif
11815
11935
  }
11816
- #endif
11817
11936
  if (nargs == 0) {
11818
11937
  return __Pyx_PyObject_Call(func, __pyx_empty_tuple, kwargs);
11819
11938
  }
11939
+ #if PY_VERSION_HEX >= 0x03090000 && !CYTHON_COMPILING_IN_LIMITED_API
11940
+ return PyObject_VectorcallDict(func, args, (size_t)nargs, kwargs);
11941
+ #else
11820
11942
  return __Pyx_PyObject_FastCall_fallback(func, args, (size_t)nargs, kwargs);
11943
+ #endif
11821
11944
  }
11822
11945
 
11823
11946
  /* ExtTypeTest */
@@ -11875,7 +11998,7 @@ static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name)
11875
11998
  {
11876
11999
  PyObject *result;
11877
12000
  #if !CYTHON_AVOID_BORROWED_REFS
11878
- #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1
12001
+ #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 && PY_VERSION_HEX < 0x030d0000
11879
12002
  result = _PyDict_GetItem_KnownHash(__pyx_d, name, ((PyASCIIObject *) name)->hash);
11880
12003
  __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version)
11881
12004
  if (likely(result)) {
@@ -11997,7 +12120,7 @@ static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i,
11997
12120
  }
11998
12121
  }
11999
12122
  #else
12000
- if (is_list || PySequence_Check(o)) {
12123
+ if (is_list || !PyMapping_Check(o)) {
12001
12124
  return PySequence_GetItem(o, i);
12002
12125
  }
12003
12126
  #endif
@@ -12157,7 +12280,9 @@ static PyObject *__Pyx_PyObject_GetItem_Slow(PyObject *obj, PyObject *key) {
12157
12280
  __Pyx_TypeName obj_type_name;
12158
12281
  if (likely(PyType_Check(obj))) {
12159
12282
  PyObject *meth = __Pyx_PyObject_GetAttrStrNoError(obj, __pyx_n_s_class_getitem);
12160
- if (meth) {
12283
+ if (!meth) {
12284
+ PyErr_Clear();
12285
+ } else {
12161
12286
  PyObject *result = __Pyx_PyObject_CallOneArg(meth, key);
12162
12287
  Py_DECREF(meth);
12163
12288
  return result;
@@ -12185,9 +12310,10 @@ static PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject *key) {
12185
12310
 
12186
12311
  /* UnpackUnboundCMethod */
12187
12312
  static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *args, PyObject *kwargs) {
12313
+ PyObject *result;
12188
12314
  PyObject *selfless_args = PyTuple_GetSlice(args, 1, PyTuple_Size(args));
12189
12315
  if (unlikely(!selfless_args)) return NULL;
12190
- PyObject *result = PyObject_Call(method, selfless_args, kwargs);
12316
+ result = PyObject_Call(method, selfless_args, kwargs);
12191
12317
  Py_DECREF(selfless_args);
12192
12318
  return result;
12193
12319
  }
@@ -12207,7 +12333,7 @@ static int __Pyx_TryUnpackUnboundCMethod(__Pyx_CachedCFunction* target) {
12207
12333
  #if PY_MAJOR_VERSION >= 3
12208
12334
  if (likely(__Pyx_TypeCheck(method, &PyMethodDescr_Type)))
12209
12335
  #else
12210
- if (likely(!PyCFunction_Check(method)))
12336
+ if (likely(!__Pyx_CyOrPyCFunction_Check(method)))
12211
12337
  #endif
12212
12338
  {
12213
12339
  PyMethodDescrObject *descr = (PyMethodDescrObject*) method;
@@ -12215,9 +12341,7 @@ static int __Pyx_TryUnpackUnboundCMethod(__Pyx_CachedCFunction* target) {
12215
12341
  target->flag = descr->d_method->ml_flags & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_STACKLESS);
12216
12342
  } else
12217
12343
  #endif
12218
- #if defined(CYTHON_COMPILING_IN_PYPY)
12219
- #elif PY_VERSION_HEX >= 0x03090000
12220
- if (PyCFunction_CheckExact(method))
12344
+ #if CYTHON_COMPILING_IN_PYPY
12221
12345
  #else
12222
12346
  if (PyCFunction_Check(method))
12223
12347
  #endif
@@ -12462,11 +12586,7 @@ static CYTHON_INLINE int __Pyx_SetItemInt_Fast(PyObject *o, Py_ssize_t i, PyObje
12462
12586
  }
12463
12587
  }
12464
12588
  #else
12465
- #if CYTHON_COMPILING_IN_PYPY
12466
- if (is_list || (PySequence_Check(o) && !PyDict_Check(o)))
12467
- #else
12468
- if (is_list || PySequence_Check(o))
12469
- #endif
12589
+ if (is_list || !PyMapping_Check(o))
12470
12590
  {
12471
12591
  return PySequence_SetItem(o, i, v);
12472
12592
  }
@@ -12489,9 +12609,10 @@ static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index) {
12489
12609
 
12490
12610
  /* IterFinish */
12491
12611
  static CYTHON_INLINE int __Pyx_IterFinish(void) {
12612
+ PyObject* exc_type;
12492
12613
  __Pyx_PyThreadState_declare
12493
12614
  __Pyx_PyThreadState_assign
12494
- PyObject* exc_type = __Pyx_PyErr_CurrentExceptionType();
12615
+ exc_type = __Pyx_PyErr_CurrentExceptionType();
12495
12616
  if (unlikely(exc_type)) {
12496
12617
  if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
12497
12618
  return -1;
@@ -12536,10 +12657,10 @@ static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key) {
12536
12657
  #endif
12537
12658
 
12538
12659
  /* TypeImport */
12539
- #ifndef __PYX_HAVE_RT_ImportType_3_0_2
12540
- #define __PYX_HAVE_RT_ImportType_3_0_2
12541
- static PyTypeObject *__Pyx_ImportType_3_0_2(PyObject *module, const char *module_name, const char *class_name,
12542
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_2 check_size)
12660
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
12661
+ #define __PYX_HAVE_RT_ImportType_3_0_10
12662
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
12663
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
12543
12664
  {
12544
12665
  PyObject *result = 0;
12545
12666
  char warning[200];
@@ -12593,7 +12714,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_2(PyObject *module, const char *module
12593
12714
  module_name, class_name, size, basicsize+itemsize);
12594
12715
  goto bad;
12595
12716
  }
12596
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_2 &&
12717
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
12597
12718
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
12598
12719
  PyErr_Format(PyExc_ValueError,
12599
12720
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -12601,7 +12722,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_2(PyObject *module, const char *module
12601
12722
  module_name, class_name, size, basicsize, basicsize+itemsize);
12602
12723
  goto bad;
12603
12724
  }
12604
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_2 && (size_t)basicsize > size) {
12725
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
12605
12726
  PyOS_snprintf(warning, sizeof(warning),
12606
12727
  "%s.%s size changed, may indicate binary incompatibility. "
12607
12728
  "Expected %zd from C header, got %zd from PyObject",
@@ -12638,7 +12759,7 @@ static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) {
12638
12759
  {
12639
12760
  #if PY_MAJOR_VERSION >= 3
12640
12761
  if (level == -1) {
12641
- if ((1) && (strchr(__Pyx_MODULE_NAME, '.'))) {
12762
+ if (strchr(__Pyx_MODULE_NAME, '.') != NULL) {
12642
12763
  module = PyImport_ImportModuleLevelObject(
12643
12764
  name, __pyx_d, empty_dict, from_list, 1);
12644
12765
  if (unlikely(!module)) {
@@ -12919,10 +13040,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
12919
13040
 
12920
13041
  /* FetchSharedCythonModule */
12921
13042
  static PyObject *__Pyx_FetchSharedCythonABIModule(void) {
12922
- PyObject *abi_module = PyImport_AddModule((char*) __PYX_ABI_MODULE_NAME);
12923
- if (unlikely(!abi_module)) return NULL;
12924
- Py_INCREF(abi_module);
12925
- return abi_module;
13043
+ return __Pyx_PyImport_AddModuleRef((char*) __PYX_ABI_MODULE_NAME);
12926
13044
  }
12927
13045
 
12928
13046
  /* FetchCommonType */
@@ -13083,6 +13201,20 @@ static CYTHON_INLINE PyObject *__Pyx_PyVectorcall_FastCallDict(PyObject *func, _
13083
13201
  #endif
13084
13202
 
13085
13203
  /* CythonFunctionShared */
13204
+ #if CYTHON_COMPILING_IN_LIMITED_API
13205
+ static CYTHON_INLINE int __Pyx__IsSameCyOrCFunction(PyObject *func, void *cfunc) {
13206
+ if (__Pyx_CyFunction_Check(func)) {
13207
+ return PyCFunction_GetFunction(((__pyx_CyFunctionObject*)func)->func) == (PyCFunction) cfunc;
13208
+ } else if (PyCFunction_Check(func)) {
13209
+ return PyCFunction_GetFunction(func) == (PyCFunction) cfunc;
13210
+ }
13211
+ return 0;
13212
+ }
13213
+ #else
13214
+ static CYTHON_INLINE int __Pyx__IsSameCyOrCFunction(PyObject *func, void *cfunc) {
13215
+ return __Pyx_CyOrPyCFunction_Check(func) && __Pyx_CyOrPyCFunction_GET_FUNCTION(func) == (PyCFunction) cfunc;
13216
+ }
13217
+ #endif
13086
13218
  static CYTHON_INLINE void __Pyx__CyFunction_SetClassObj(__pyx_CyFunctionObject* f, PyObject* classobj) {
13087
13219
  #if PY_VERSION_HEX < 0x030900B1 || CYTHON_COMPILING_IN_LIMITED_API
13088
13220
  __Pyx_Py_XDECREF_SET(
@@ -13892,7 +14024,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
13892
14024
  default:
13893
14025
  return NULL;
13894
14026
  }
13895
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
14027
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
13896
14028
  }
13897
14029
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
13898
14030
  {
@@ -14231,8 +14363,8 @@ static PyObject *__Pyx_PyCode_Replace_For_AddTraceback(PyObject *code, PyObject
14231
14363
  Py_DECREF(replace);
14232
14364
  return result;
14233
14365
  }
14234
- #if __PYX_LIMITED_VERSION_HEX < 0x030780000
14235
14366
  PyErr_Clear();
14367
+ #if __PYX_LIMITED_VERSION_HEX < 0x030780000
14236
14368
  {
14237
14369
  PyObject *compiled = NULL, *result = NULL;
14238
14370
  if (unlikely(PyDict_SetItemString(scratch_dict, "code", code))) return NULL;
@@ -14252,6 +14384,8 @@ static PyObject *__Pyx_PyCode_Replace_For_AddTraceback(PyObject *code, PyObject
14252
14384
  if (result) Py_INCREF(result);
14253
14385
  return result;
14254
14386
  }
14387
+ #else
14388
+ return NULL;
14255
14389
  #endif
14256
14390
  }
14257
14391
  static void __Pyx_AddTraceback(const char *funcname, int c_line,
@@ -14349,7 +14483,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
14349
14483
  #else
14350
14484
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
14351
14485
  #endif
14352
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
14486
+ Py_XDECREF(py_funcname);
14353
14487
  return py_code;
14354
14488
  bad:
14355
14489
  Py_XDECREF(py_funcname);
@@ -14898,7 +15032,7 @@ static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *x) {
14898
15032
  #endif
14899
15033
  if (likely(v)) {
14900
15034
  int ret = -1;
14901
- #if !(CYTHON_COMPILING_IN_PYPY || CYTHON_COMPILING_IN_LIMITED_API) || defined(_PyLong_AsByteArray)
15035
+ #if PY_VERSION_HEX < 0x030d0000 && !(CYTHON_COMPILING_IN_PYPY || CYTHON_COMPILING_IN_LIMITED_API) || defined(_PyLong_AsByteArray)
14902
15036
  int one = 1; int is_little = (int)*(unsigned char *)&one;
14903
15037
  unsigned char *bytes = (unsigned char *)&val;
14904
15038
  ret = _PyLong_AsByteArray((PyLongObject *)v,
@@ -15034,13 +15168,13 @@ static CYTHON_INLINE PyObject* __Pyx_PyInt_From_int(int value) {
15034
15168
  {
15035
15169
  int one = 1; int little = (int)*(unsigned char *)&one;
15036
15170
  unsigned char *bytes = (unsigned char *)&value;
15037
- #if !CYTHON_COMPILING_IN_LIMITED_API
15171
+ #if !CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX < 0x030d0000
15038
15172
  return _PyLong_FromByteArray(bytes, sizeof(int),
15039
15173
  little, !is_unsigned);
15040
15174
  #else
15041
15175
  PyObject *from_bytes, *result = NULL;
15042
15176
  PyObject *py_bytes = NULL, *arg_tuple = NULL, *kwds = NULL, *order_str = NULL;
15043
- from_bytes = PyObject_GetAttrString((PyObject*)&PyInt_Type, "from_bytes");
15177
+ from_bytes = PyObject_GetAttrString((PyObject*)&PyLong_Type, "from_bytes");
15044
15178
  if (!from_bytes) return NULL;
15045
15179
  py_bytes = PyBytes_FromStringAndSize((char*)bytes, sizeof(int));
15046
15180
  if (!py_bytes) goto limited_bad;
@@ -15048,16 +15182,18 @@ static CYTHON_INLINE PyObject* __Pyx_PyInt_From_int(int value) {
15048
15182
  if (!order_str) goto limited_bad;
15049
15183
  arg_tuple = PyTuple_Pack(2, py_bytes, order_str);
15050
15184
  if (!arg_tuple) goto limited_bad;
15051
- kwds = PyDict_New();
15052
- if (!kwds) goto limited_bad;
15053
- if (PyDict_SetItemString(kwds, "signed", __Pyx_NewRef(!is_unsigned ? Py_True : Py_False))) goto limited_bad;
15185
+ if (!is_unsigned) {
15186
+ kwds = PyDict_New();
15187
+ if (!kwds) goto limited_bad;
15188
+ if (PyDict_SetItemString(kwds, "signed", __Pyx_NewRef(Py_True))) goto limited_bad;
15189
+ }
15054
15190
  result = PyObject_Call(from_bytes, arg_tuple, kwds);
15055
15191
  limited_bad:
15056
- Py_XDECREF(from_bytes);
15057
- Py_XDECREF(py_bytes);
15058
- Py_XDECREF(order_str);
15059
- Py_XDECREF(arg_tuple);
15060
15192
  Py_XDECREF(kwds);
15193
+ Py_XDECREF(arg_tuple);
15194
+ Py_XDECREF(order_str);
15195
+ Py_XDECREF(py_bytes);
15196
+ Py_XDECREF(from_bytes);
15061
15197
  return result;
15062
15198
  #endif
15063
15199
  }
@@ -15096,13 +15232,13 @@ static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value) {
15096
15232
  {
15097
15233
  int one = 1; int little = (int)*(unsigned char *)&one;
15098
15234
  unsigned char *bytes = (unsigned char *)&value;
15099
- #if !CYTHON_COMPILING_IN_LIMITED_API
15235
+ #if !CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX < 0x030d0000
15100
15236
  return _PyLong_FromByteArray(bytes, sizeof(long),
15101
15237
  little, !is_unsigned);
15102
15238
  #else
15103
15239
  PyObject *from_bytes, *result = NULL;
15104
15240
  PyObject *py_bytes = NULL, *arg_tuple = NULL, *kwds = NULL, *order_str = NULL;
15105
- from_bytes = PyObject_GetAttrString((PyObject*)&PyInt_Type, "from_bytes");
15241
+ from_bytes = PyObject_GetAttrString((PyObject*)&PyLong_Type, "from_bytes");
15106
15242
  if (!from_bytes) return NULL;
15107
15243
  py_bytes = PyBytes_FromStringAndSize((char*)bytes, sizeof(long));
15108
15244
  if (!py_bytes) goto limited_bad;
@@ -15110,16 +15246,18 @@ static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value) {
15110
15246
  if (!order_str) goto limited_bad;
15111
15247
  arg_tuple = PyTuple_Pack(2, py_bytes, order_str);
15112
15248
  if (!arg_tuple) goto limited_bad;
15113
- kwds = PyDict_New();
15114
- if (!kwds) goto limited_bad;
15115
- if (PyDict_SetItemString(kwds, "signed", __Pyx_NewRef(!is_unsigned ? Py_True : Py_False))) goto limited_bad;
15249
+ if (!is_unsigned) {
15250
+ kwds = PyDict_New();
15251
+ if (!kwds) goto limited_bad;
15252
+ if (PyDict_SetItemString(kwds, "signed", __Pyx_NewRef(Py_True))) goto limited_bad;
15253
+ }
15116
15254
  result = PyObject_Call(from_bytes, arg_tuple, kwds);
15117
15255
  limited_bad:
15118
- Py_XDECREF(from_bytes);
15119
- Py_XDECREF(py_bytes);
15120
- Py_XDECREF(order_str);
15121
- Py_XDECREF(arg_tuple);
15122
15256
  Py_XDECREF(kwds);
15257
+ Py_XDECREF(arg_tuple);
15258
+ Py_XDECREF(order_str);
15259
+ Py_XDECREF(py_bytes);
15260
+ Py_XDECREF(from_bytes);
15123
15261
  return result;
15124
15262
  #endif
15125
15263
  }
@@ -15311,7 +15449,7 @@ static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *x) {
15311
15449
  #endif
15312
15450
  if (likely(v)) {
15313
15451
  int ret = -1;
15314
- #if !(CYTHON_COMPILING_IN_PYPY || CYTHON_COMPILING_IN_LIMITED_API) || defined(_PyLong_AsByteArray)
15452
+ #if PY_VERSION_HEX < 0x030d0000 && !(CYTHON_COMPILING_IN_PYPY || CYTHON_COMPILING_IN_LIMITED_API) || defined(_PyLong_AsByteArray)
15315
15453
  int one = 1; int is_little = (int)*(unsigned char *)&one;
15316
15454
  unsigned char *bytes = (unsigned char *)&val;
15317
15455
  ret = _PyLong_AsByteArray((PyLongObject *)v,
@@ -15531,41 +15669,50 @@ static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObj
15531
15669
  #endif
15532
15670
 
15533
15671
  /* CheckBinaryVersion */
15534
- static int __Pyx_check_binary_version(void) {
15535
- char ctversion[5];
15536
- int same=1, i, found_dot;
15537
- const char* rt_from_call = Py_GetVersion();
15538
- PyOS_snprintf(ctversion, 5, "%d.%d", PY_MAJOR_VERSION, PY_MINOR_VERSION);
15539
- found_dot = 0;
15540
- for (i = 0; i < 4; i++) {
15541
- if (!ctversion[i]) {
15542
- same = (rt_from_call[i] < '0' || rt_from_call[i] > '9');
15543
- break;
15672
+ static unsigned long __Pyx_get_runtime_version(void) {
15673
+ #if __PYX_LIMITED_VERSION_HEX >= 0x030B00A4
15674
+ return Py_Version & ~0xFFUL;
15675
+ #else
15676
+ const char* rt_version = Py_GetVersion();
15677
+ unsigned long version = 0;
15678
+ unsigned long factor = 0x01000000UL;
15679
+ unsigned int digit = 0;
15680
+ int i = 0;
15681
+ while (factor) {
15682
+ while ('0' <= rt_version[i] && rt_version[i] <= '9') {
15683
+ digit = digit * 10 + (unsigned int) (rt_version[i] - '0');
15684
+ ++i;
15544
15685
  }
15545
- if (rt_from_call[i] != ctversion[i]) {
15546
- same = 0;
15686
+ version += factor * digit;
15687
+ if (rt_version[i] != '.')
15547
15688
  break;
15548
- }
15689
+ digit = 0;
15690
+ factor >>= 8;
15691
+ ++i;
15549
15692
  }
15550
- if (!same) {
15551
- char rtversion[5] = {'\0'};
15693
+ return version;
15694
+ #endif
15695
+ }
15696
+ static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt_version, int allow_newer) {
15697
+ const unsigned long MAJOR_MINOR = 0xFFFF0000UL;
15698
+ if ((rt_version & MAJOR_MINOR) == (ct_version & MAJOR_MINOR))
15699
+ return 0;
15700
+ if (likely(allow_newer && (rt_version & MAJOR_MINOR) > (ct_version & MAJOR_MINOR)))
15701
+ return 1;
15702
+ {
15552
15703
  char message[200];
15553
- for (i=0; i<4; ++i) {
15554
- if (rt_from_call[i] == '.') {
15555
- if (found_dot) break;
15556
- found_dot = 1;
15557
- } else if (rt_from_call[i] < '0' || rt_from_call[i] > '9') {
15558
- break;
15559
- }
15560
- rtversion[i] = rt_from_call[i];
15561
- }
15562
15704
  PyOS_snprintf(message, sizeof(message),
15563
- "compile time version %s of module '%.100s' "
15564
- "does not match runtime version %s",
15565
- ctversion, __Pyx_MODULE_NAME, rtversion);
15705
+ "compile time Python version %d.%d "
15706
+ "of module '%.100s' "
15707
+ "%s "
15708
+ "runtime version %d.%d",
15709
+ (int) (ct_version >> 24), (int) ((ct_version >> 16) & 0xFF),
15710
+ __Pyx_MODULE_NAME,
15711
+ (allow_newer) ? "was newer than" : "does not match",
15712
+ (int) (rt_version >> 24), (int) ((rt_version >> 16) & 0xFF)
15713
+ );
15566
15714
  return PyErr_WarnEx(NULL, message, 1);
15567
15715
  }
15568
- return 0;
15569
15716
  }
15570
15717
 
15571
15718
  /* InitStrings */
@@ -15611,8 +15758,24 @@ static int __Pyx_InitStrings(__Pyx_StringTabEntry *t) {
15611
15758
  return 0;
15612
15759
  }
15613
15760
 
15761
+ #include <string.h>
15762
+ static CYTHON_INLINE Py_ssize_t __Pyx_ssize_strlen(const char *s) {
15763
+ size_t len = strlen(s);
15764
+ if (unlikely(len > (size_t) PY_SSIZE_T_MAX)) {
15765
+ PyErr_SetString(PyExc_OverflowError, "byte string is too long");
15766
+ return -1;
15767
+ }
15768
+ return (Py_ssize_t) len;
15769
+ }
15614
15770
  static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char* c_str) {
15615
- return __Pyx_PyUnicode_FromStringAndSize(c_str, (Py_ssize_t)strlen(c_str));
15771
+ Py_ssize_t len = __Pyx_ssize_strlen(c_str);
15772
+ if (unlikely(len < 0)) return NULL;
15773
+ return __Pyx_PyUnicode_FromStringAndSize(c_str, len);
15774
+ }
15775
+ static CYTHON_INLINE PyObject* __Pyx_PyByteArray_FromString(const char* c_str) {
15776
+ Py_ssize_t len = __Pyx_ssize_strlen(c_str);
15777
+ if (unlikely(len < 0)) return NULL;
15778
+ return PyByteArray_FromStringAndSize(c_str, len);
15616
15779
  }
15617
15780
  static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject* o) {
15618
15781
  Py_ssize_t ignore;