We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 932ac09 commit 70daf00Copy full SHA for 70daf00
2 files changed
py/obj.c
@@ -63,7 +63,9 @@ const char *mp_obj_get_type_str(mp_const_obj_t o_in) {
63
void mp_obj_print_helper(const mp_print_t *print, mp_obj_t o_in, mp_print_kind_t kind) {
64
// There can be data structures nested too deep, or just recursive
65
MP_STACK_CHECK();
66
+ #ifdef RUN_BACKGROUND_TASKS
67
RUN_BACKGROUND_TASKS;
68
+ #endif
69
#ifndef NDEBUG
70
if (o_in == MP_OBJ_NULL) {
71
mp_print_str(print, "(nil)");
py/stream.c
@@ -341,7 +341,9 @@ STATIC mp_obj_t stream_readall(mp_obj_t self_in) {
341
p = vstr_extend(&vstr, DEFAULT_BUFFER_SIZE);
342
current_read = DEFAULT_BUFFER_SIZE;
343
}
344
345
346
347
348
349
vstr.len = total_size;
0 commit comments