From: Ikko Eltociear Ashimine Date: Thu, 9 Feb 2023 17:45:58 +0000 (+0900) Subject: Fix typo in `test_fstring.py` (#101600) X-Git-Tag: v3.12.0a6~197 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=272da55affe6f2b3b73ff5474e1246089517d051;p=thirdparty%2FPython%2Fcpython.git Fix typo in `test_fstring.py` (#101600) --- diff --git a/Lib/test/test_fstring.py b/Lib/test/test_fstring.py index 318f38a6ed5b..a50056da116e 100644 --- a/Lib/test/test_fstring.py +++ b/Lib/test/test_fstring.py @@ -667,7 +667,7 @@ x = ( "f'''{\t\f\r\n}'''", ]) - # Different error messeges are raised when a specfier ('!', ':' or '=') is used after an empty expression + # Different error messages are raised when a specfier ('!', ':' or '=') is used after an empty expression self.assertAllRaise(SyntaxError, "f-string: expression required before '!'", ["f'{!r}'", "f'{ !r}'",