micropython/py/repl.h
Damien George 97790455fe Improve REPL detecting when input needs to continue.
Full CPython compatibility with this requires actually parsing the
input so far collected, and if it fails parsing due to lack of tokens,
then continue collecting input.  It's not worth doing it this way.  Not
having compatibility at this level does not hurt the goals of Micro
Python.
2014-04-08 11:04:29 +00:00

4 lines
92 B
C

#if MICROPY_ENABLE_REPL_HELPERS
bool mp_repl_continue_with_input(const char *input);
#endif