summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_fstring.py
diff options
context:
space:
mode:
authormjoerg <mjoerg@users.noreply.github.com>2023-02-11 15:34:15 (GMT)
committerGitHub <noreply@github.com>2023-02-11 15:34:15 (GMT)
commit3eb12df8b526aa5a2ca6b43f21a1c5e7d38ee634 (patch)
tree7cca6b7c698940b9166802554aa5204c74f4de29 /Lib/test/test_fstring.py
parentb652d40f1c88fcd8595cd401513f6b7f8e499471 (diff)
downloadcpython-3eb12df8b526aa5a2ca6b43f21a1c5e7d38ee634.zip
cpython-3eb12df8b526aa5a2ca6b43f21a1c5e7d38ee634.tar.gz
cpython-3eb12df8b526aa5a2ca6b43f21a1c5e7d38ee634.tar.bz2
Fix typo in test_fstring.py (#101823)
Diffstat (limited to 'Lib/test/test_fstring.py')
-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 a50056d..b3f6ef4 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 messages are raised when a specfier ('!', ':' or '=') is used after an empty expression
+ # Different error messages are raised when a specifier ('!', ':' or '=') is used after an empty expression
self.assertAllRaise(SyntaxError, "f-string: expression required before '!'",
["f'{!r}'",
"f'{ !r}'",