diff options
Diffstat (limited to 'py/repl.c')
-rw-r--r-- | py/repl.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -57,6 +57,9 @@ bool mp_repl_continue_with_input(const char *input) { || str_startswith_word(input, "with") || str_startswith_word(input, "def") || str_startswith_word(input, "class") + #if MICROPY_PY_ASYNC_AWAIT + || str_startswith_word(input, "async") + #endif ; // check for unmatched open bracket, quote or escape quote |