mirror of
https://github.com/python/cpython.git
synced 2025-07-19 09:15:34 +00:00
bpo-30682: Removed a too-strict assertion that failed for certain f-strings. (#2232)
This caused a segfault on eval("f'\\\n'") and eval("f'\\\r'") in debug build.
This commit is contained in:
parent
a49c935cfd
commit
11e97f2f80
3 changed files with 11 additions and 2 deletions
|
@ -4914,6 +4914,8 @@ FstringParser_ConcatFstring(FstringParser *state, const char **str,
|
|||
/* Do nothing. Just leave last_str alone (and possibly
|
||||
NULL). */
|
||||
} else if (!state->last_str) {
|
||||
/* Note that the literal can be zero length, if the
|
||||
input string is "\\\n" or "\\\r", among others. */
|
||||
state->last_str = literal;
|
||||
literal = NULL;
|
||||
} else {
|
||||
|
@ -4923,8 +4925,6 @@ FstringParser_ConcatFstring(FstringParser *state, const char **str,
|
|||
return -1;
|
||||
literal = NULL;
|
||||
}
|
||||
assert(!state->last_str ||
|
||||
PyUnicode_GET_LENGTH(state->last_str) != 0);
|
||||
|
||||
/* We've dealt with the literal now. It can't be leaked on further
|
||||
errors. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue