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/parser.c | |
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/parser.c')
-rw-r--r-- | Parser/parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/parser.c b/Parser/parser.c index a22cf27..a882a81 100644 --- a/Parser/parser.c +++ b/Parser/parser.c @@ -21288,7 +21288,7 @@ _tmp_93_rule(Parser *p) ) { D(fprintf(stderr, "%*c+ _tmp_93[%d-%d]: %s succeeded!\n", p->level, ' ', _mark, p->mark, "'!='")); - _res = _PyPegen_check_barry_as_flufl ( p ) ? NULL : tok; + _res = _PyPegen_check_barry_as_flufl ( p , tok ) ? NULL : tok; if (_res == NULL && PyErr_Occurred()) { p->error_indicator = 1; D(p->level--); |