diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2020-10-30 23:48:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-30 23:48:42 (GMT) |
commit | 06f8c3328dcd81c84d1ee2b3a57b5381dcb38482 (patch) | |
tree | cc3ad1395744a8eba15c779480a9ce9276e8bc5f /Parser/pegen.h | |
parent | 6e03c0ad156797cd6e9132e895d55dac0344d340 (diff) | |
download | cpython-06f8c3328dcd81c84d1ee2b3a57b5381dcb38482.zip cpython-06f8c3328dcd81c84d1ee2b3a57b5381dcb38482.tar.gz cpython-06f8c3328dcd81c84d1ee2b3a57b5381dcb38482.tar.bz2 |
bpo-42214: Fix check for NOTEQUAL token in the PEG parser for the barry_as_flufl rule (GH-23048)
Diffstat (limited to 'Parser/pegen.h')
-rw-r--r-- | Parser/pegen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/pegen.h b/Parser/pegen.h index 841f1e5..f82a3a0 100644 --- a/Parser/pegen.h +++ b/Parser/pegen.h @@ -263,7 +263,7 @@ expr_ty _PyPegen_collect_call_seqs(Parser *, asdl_expr_seq *, asdl_seq *, int end_col_offset, PyArena *arena); expr_ty _PyPegen_concatenate_strings(Parser *p, asdl_seq *); asdl_seq *_PyPegen_join_sequences(Parser *, asdl_seq *, asdl_seq *); -int _PyPegen_check_barry_as_flufl(Parser *); +int _PyPegen_check_barry_as_flufl(Parser *, Token *); mod_ty _PyPegen_make_module(Parser *, asdl_stmt_seq *); // Error reporting helpers |