From 414a30ea9a90260f16ed16bcde4cdfa3cef18fa5 Mon Sep 17 00:00:00 2001 From: Mikhail Golubev Date: Mon, 28 Apr 2025 17:37:00 +0300 Subject: [PATCH] PY-79967 Fix a test broken due to the new t-string prefix \t' at the end of an invalid f-string started being recognized as a new t-string start. I've replaced it with another escape sequence, not losing the test's idea. GitOrigin-RevId: 6f14435b62eda673165d89f005fbcc4ceb810dc7 --- python/testData/highlighting/fStringBackslashesBefore312.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/testData/highlighting/fStringBackslashesBefore312.py b/python/testData/highlighting/fStringBackslashesBefore312.py index 34a7e0398be6..5552c0c97de9 100644 --- a/python/testData/highlighting/fStringBackslashesBefore312.py +++ b/python/testData/highlighting/fStringBackslashesBefore312.py @@ -3,5 +3,5 @@ f'{\t}}' f'{f"""{"\n"}"""}' -f'{\t' +f'{\n' \ No newline at end of file