summaryrefslogtreecommitdiff
path: root/py/repl.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-04-08 11:04:29 +0000
committerDamien George <damien.p.george@gmail.com>2014-04-08 11:04:29 +0000
commit97790455fe10c5fb22bc3edde2b43474ce0dbaad (patch)
treeb887205c456731d7f4d92837d6ab19be183bb16f /py/repl.h
parent72d70cb0455c61ee963d9063bd42a8b0f6c80789 (diff)
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.
Diffstat (limited to 'py/repl.h')
-rw-r--r--py/repl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/repl.h b/py/repl.h
index 23259fa90..cba77aad0 100644
--- a/py/repl.h
+++ b/py/repl.h
@@ -1,3 +1,3 @@
#if MICROPY_ENABLE_REPL_HELPERS
-bool mp_repl_is_compound_stmt(const char *line);
+bool mp_repl_continue_with_input(const char *input);
#endif