8000 [3.13] gh-135496: Fix f string exclamation mark error typo (GH-135495) by MeGaGiGaGon · Pull Request #135501 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.13] gh-135496: Fix f string exclamation mark error typo (GH-135495) #135501

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update action_helpers.c
  • Loading branch information
MeGaGiGaGon authored Jun 14, 2025
commit 2e14cfedcbdf4699534d1ffca369c8531989ffb8
2 changes: 1 addition & 1 deletion Parser/action_helpers.c
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@ _PyPegen_check_fstring_conversion(Parser *p, Token* conv_token, expr_ty conv)
if (conv_token->lineno != conv->lineno || conv_token->end_col_offset != conv->col_offset) {
return RAISE_SYNTAX_ERROR_KNOWN_RANGE(
conv_token, conv,
"f-string: conversion type must come right after the exclamanation mark"
"f-string: conversion type must come right after the exclamation mark"
);
}
return result_token_with_metadata(p, conv, conv_token->metadata);
Expand Down
0