aboutsummaryrefslogtreecommitdiff
path: root/py/lexer.c
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2021-11-19 10:36:16 +1100
committerDamien George <damien@micropython.org>2021-11-25 21:50:58 +1100
commit11ed94797d492cabdaf09396feb69a690e86f739 (patch)
tree91addc414188e2261fba36703de651752eb034b4 /py/lexer.c
parent196d26848a76043777e4e3ebb2455f26e6349dfc (diff)
py/lexer: Support nested [] and {} characters within f-string params.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'py/lexer.c')
-rw-r--r--py/lexer.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/py/lexer.c b/py/lexer.c
index 69c7d14a7..ac406bd46 100644
--- a/py/lexer.c
+++ b/py/lexer.c
@@ -363,9 +363,16 @@ STATIC void parse_string_literal(mp_lexer_t *lex, bool is_raw, bool is_fstring)
// (MicroPython limitation) note: this is completely unaware of
// Python syntax and will not handle any expression containing '}' or ':'.
// e.g. f'{"}"}' or f'{foo({})}'.
- while (!is_end(lex) && !is_char_or(lex, ':', '}')) {
+ unsigned int nested_bracket_level = 0;
+ while (!is_end(lex) && (nested_bracket_level != 0 || !is_char_or(lex, ':', '}'))) {
+ unichar c = CUR_CHAR(lex);
+ if (c == '[' || c == '{') {
+ nested_bracket_level += 1;
+ } else if (c == ']' || c == '}') {
+ nested_bracket_level -= 1;
+ }
// like the default case at the end of this function, stay 8-bit clean
- vstr_add_byte(&lex->fstring_args, CUR_CHAR(lex));
+ vstr_add_byte(&lex->fstring_args, c);
next_char(lex);
}
if (lex->fstring_args.buf[lex->fstring_args.len - 1] == '=') {