diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-06-12 19:22:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-12 19:22:44 (GMT) |
commit | 7c6b3429b631d80de0348e5ddc2a3a8125e5c00d (patch) | |
tree | 7f0f4d961f06d144addd6f45721cad82a95f54df /Lib/test/test_tokenize.py | |
parent | 0041087aa12044223103c7b8a3ca07d896652ab9 (diff) | |
download | cpython-7c6b3429b631d80de0348e5ddc2a3a8125e5c00d.zip cpython-7c6b3429b631d80de0348e5ddc2a3a8125e5c00d.tar.gz cpython-7c6b3429b631d80de0348e5ddc2a3a8125e5c00d.tar.bz2 |
[3.13] gh-120343: Fix column offsets of multiline tokens in tokenize (GH-120391) (#120427)
(cherry picked from commit 4b5d3e0e721a952f4ac9d17bee331e6dfe543dcd)
Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
Diffstat (limited to 'Lib/test/test_tokenize.py')
-rw-r--r-- | Lib/test/test_tokenize.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Lib/test/test_tokenize.py b/Lib/test/test_tokenize.py index 36dba71..51aeb35 100644 --- a/Lib/test/test_tokenize.py +++ b/Lib/test/test_tokenize.py @@ -1210,6 +1210,20 @@ a = f''' FSTRING_END "\'\'\'" (2, 68) (2, 71) """) + def test_multiline_non_ascii_fstring_with_expr(self): + self.check_tokenize("""\ +f''' + š This is a test {test_arg1}š +š'''""", """\ + FSTRING_START "f\'\'\'" (1, 0) (1, 4) + FSTRING_MIDDLE '\\n š This is a test ' (1, 4) (2, 21) + OP '{' (2, 21) (2, 22) + NAME 'test_arg1' (2, 22) (2, 31) + OP '}' (2, 31) (2, 32) + FSTRING_MIDDLE 'š\\nš' (2, 32) (3, 1) + FSTRING_END "\'\'\'" (3, 1) (3, 4) + """) + class GenerateTokensTest(TokenizeTest): def check_tokenize(self, s, expected): # Format the tokens in s in a table format. |