diff options
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/pegen/parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/pegen/parse.c b/Parser/pegen/parse.c index 7208370ca3..8ff9a70d3b 100644 --- a/Parser/pegen/parse.c +++ b/Parser/pegen/parse.c @@ -856,7 +856,7 @@ type_expressions_rule(Parser *p) (c = expression_rule(p)) ) { - res = _PyPegen_seq_append_to_end ( p , _PyPegen_seq_append_to_end ( p , a , b ) , c ); + res = _PyPegen_seq_append_to_end ( p , CHECK ( _PyPegen_seq_append_to_end ( p , a , b ) ) , c ); if (res == NULL && PyErr_Occurred()) { p->error_indicator = 1; return NULL; |