diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-06-02 12:53:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-02 12:53:27 (GMT) |
commit | 103ae4e36e965b2d693c90bb6cb699f845903950 (patch) | |
tree | 21fbd59a501b94c8c0db63b7099b94ca590189dd /Parser/pegen.h | |
parent | 46cc4f0f76a9f6966aee76d74f8db9a2f43fa8a6 (diff) | |
download | cpython-103ae4e36e965b2d693c90bb6cb699f845903950.zip cpython-103ae4e36e965b2d693c90bb6cb699f845903950.tar.gz cpython-103ae4e36e965b2d693c90bb6cb699f845903950.tar.bz2 |
[3.12] gh-105194: Fix format specifier escaped characters in f-strings (GH-105231) (#105234)
Diffstat (limited to 'Parser/pegen.h')
-rw-r--r-- | Parser/pegen.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Parser/pegen.h b/Parser/pegen.h index 8800e9f..fe13d10 100644 --- a/Parser/pegen.h +++ b/Parser/pegen.h @@ -328,6 +328,7 @@ expr_ty _PyPegen_collect_call_seqs(Parser *, asdl_expr_seq *, asdl_seq *, int lineno, int col_offset, int end_lineno, int end_col_offset, PyArena *arena); expr_ty _PyPegen_constant_from_token(Parser* p, Token* tok); +expr_ty _PyPegen_decoded_constant_from_token(Parser* p, Token* tok); expr_ty _PyPegen_constant_from_string(Parser* p, Token* tok); expr_ty _PyPegen_concatenate_strings(Parser *p, asdl_expr_seq *, int, int, int, int, PyArena *); expr_ty _PyPegen_FetchRawForm(Parser *p, int, int, int, int); |