diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-06-02 01:04:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-02 01:04:27 (GMT) |
commit | 376d53771d4c109876fd3d002fb8aa5e2c8dec89 (patch) | |
tree | dd81e8a64947342b90d87797c18258369a306df0 /Lib/test/test_fstring.py | |
parent | ae0cf8eab59558816961a1f4ec94427bbb39eb80 (diff) | |
download | cpython-376d53771d4c109876fd3d002fb8aa5e2c8dec89.zip cpython-376d53771d4c109876fd3d002fb8aa5e2c8dec89.tar.gz cpython-376d53771d4c109876fd3d002fb8aa5e2c8dec89.tar.bz2 |
gh-93418: Fix an assert when an f-string expression is followed by an '=', but no closing brace. (gh-93419) (gh-93422)
(cherry picked from commit ee70c70aa93d7a41cbe47a0b361b17f9d7ec8acd)
Co-authored-by: Eric V. Smith <ericvsmith@users.noreply.github.com>
Co-authored-by: Eric V. Smith <ericvsmith@users.noreply.github.com>
Diffstat (limited to 'Lib/test/test_fstring.py')
-rw-r--r-- | Lib/test/test_fstring.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_fstring.py b/Lib/test/test_fstring.py index 0c3372f..93aa229 100644 --- a/Lib/test/test_fstring.py +++ b/Lib/test/test_fstring.py @@ -1073,6 +1073,7 @@ x = ( "f'{'", "f'x{<'", # See bpo-46762. "f'x{>'", + "f'{i='", # See gh-93418. ]) # But these are just normal strings. |