]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-105915: Add 'r' prefix to not emit SyntaxWarning in test_fstring (#105940)
authorLysandros Nikolaou <lisandrosnik@gmail.com>
Tue, 20 Jun 2023 12:49:00 +0000 (14:49 +0200)
committerGitHub <noreply@github.com>
Tue, 20 Jun 2023 12:49:00 +0000 (14:49 +0200)
Co-authored-by: @sunmy2019
Lib/test/test_fstring.py

index ad5ac6a2f0432ef7a7051a8e7975480394d9d5c8..1eb3bfb41888c20839806bec07bd408551453790 100644 (file)
@@ -773,7 +773,7 @@ x = (
         self.assertEqual(f'{CustomFormat():\n}', '\n')
         self.assertEqual(f'{CustomFormat():\u2603}', '☃')
         with self.assertWarns(SyntaxWarning):
-            exec('f"{F():¯\_(ツ)_/¯}"', {'F': CustomFormat})
+            exec(r'f"{F():¯\_(ツ)_/¯}"', {'F': CustomFormat})
 
     def test_side_effect_order(self):
         class X: