We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbbd433 commit 3c2aea4Copy full SHA for 3c2aea4
Lib/test/test_tokenize.py
@@ -1958,13 +1958,13 @@ def test_string(self):
1958
self.check_tokenize(r'f"abc\
1959
def"', """\
1960
FSTRING_START \'f"\' (1, 0) (1, 2)
1961
- FSTRING_END 'abc\\\\\\ndef' (2, -1) (2, 3)
+ FSTRING_END 'abc\\\\\\ndef' (1, 2) (2, 3)
1962
""")
1963
1964
self.check_tokenize(r'Rf"abc\
1965
1966
FSTRING_START 'Rf"' (1, 0) (1, 3)
1967
+ FSTRING_END 'abc\\\\\\ndef' (1, 3) (2, 3)
1968
1969
1970
def test_function(self):
0 commit comments