Skip to content
Snippets Groups Projects
Commit 73c79b99 authored by Damien George's avatar Damien George
Browse files

py: Continue line if last character is backslash.

parent 443e018a
No related tags found
No related merge requests found
...@@ -67,6 +67,11 @@ bool mp_repl_continue_with_input(const char *input) { ...@@ -67,6 +67,11 @@ bool mp_repl_continue_with_input(const char *input) {
return true; return true;
} }
// continue if last character was backslash (for line continuation)
if (i[-1] == '\\') {
return true;
}
// continue if compound keyword and last line was not empty // continue if compound keyword and last line was not empty
if (starts_with_compound_keyword && i[-1] != '\n') { if (starts_with_compound_keyword && i[-1] != '\n') {
return true; return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment