py/lexer: Remove unreachable code in string tokeniser.
diff --git a/py/lexer.c b/py/lexer.c
index 7db49de..0611a72 100644
--- a/py/lexer.c
+++ b/py/lexer.c
@@ -430,7 +430,8 @@
vstr_add_char(&lex->vstr, '\\');
} else {
switch (c) {
- case MP_LEXER_EOF: break; // TODO a proper error message?
+ // note: "c" can never be MP_LEXER_EOF because next_char
+ // always inserts a newline at the end of the input stream
case '\n': c = MP_LEXER_EOF; break; // backslash escape the newline, just ignore it
case '\\': break;
case '\'': break;