summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_tokenize.py14
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.