summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIkko Eltociear Ashimine <eltociear@gmail.com>2023-02-09 17:45:58 (GMT)
committerGitHub <noreply@github.com>2023-02-09 17:45:58 (GMT)
commit272da55affe6f2b3b73ff5474e1246089517d051 (patch)
treeebb4f358ea74972910ddec7730e641588f833f13
parentb41c47cd0606e8273aef4813e83fe2deaf9ab33b (diff)
downloadcpython-272da55affe6f2b3b73ff5474e1246089517d051.zip
cpython-272da55affe6f2b3b73ff5474e1246089517d051.tar.gz
cpython-272da55affe6f2b3b73ff5474e1246089517d051.tar.bz2
Fix typo in `test_fstring.py` (#101600)
-rw-r--r--Lib/test/test_fstring.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_fstring.py b/Lib/test/test_fstring.py
index 318f38a..a50056d 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}'",