diff options
author | mjoerg <mjoerg@users.noreply.github.com> | 2023-02-11 15:34:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-11 15:34:15 (GMT) |
commit | 3eb12df8b526aa5a2ca6b43f21a1c5e7d38ee634 (patch) | |
tree | 7cca6b7c698940b9166802554aa5204c74f4de29 /Lib/test/test_fstring.py | |
parent | b652d40f1c88fcd8595cd401513f6b7f8e499471 (diff) | |
download | cpython-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.py | 2 |
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}'", |