diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2021-11-24 22:21:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-24 22:21:23 (GMT) |
commit | 24c10d2943c482c4d3ecc71d45df2d8c10fa5bb1 (patch) | |
tree | bcd92d5aa5eb38532813cd703dc7f728d20d230a /Parser | |
parent | f4afc53bf68c8ded20b281cd1baa88a679b4a3fd (diff) | |
download | cpython-24c10d2943c482c4d3ecc71d45df2d8c10fa5bb1.zip cpython-24c10d2943c482c4d3ecc71d45df2d8c10fa5bb1.tar.gz cpython-24c10d2943c482c4d3ecc71d45df2d8c10fa5bb1.tar.bz2 |
bpo-45727: Only trigger the 'did you forgot a comma' error suggestion if inside parentheses (GH-29757)
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/parser.c | 2 | ||||
-rw-r--r-- | Parser/pegen.c | 4 | ||||
-rw-r--r-- | Parser/pegen.h | 1 | ||||
-rw-r--r-- | Parser/pegen_errors.c | 4 |
4 files changed, 7 insertions, 4 deletions
diff --git a/Parser/parser.c b/Parser/parser.c index b3aa359..1cf6e35 100644 --- a/Parser/parser.c +++ b/Parser/parser.c @@ -18298,7 +18298,7 @@ invalid_expression_rule(Parser *p) ) { D(fprintf(stderr, "%*c+ invalid_expression[%d-%d]: %s succeeded!\n", p->level, ' ', _mark, p->mark, "!(NAME STRING | SOFT_KEYWORD) disjunction expression_without_invalid")); - _res = _PyPegen_check_legacy_stmt ( p , a ) ? NULL : RAISE_SYNTAX_ERROR_KNOWN_RANGE ( a , b , "invalid syntax. Perhaps you forgot a comma?" ); + _res = _PyPegen_check_legacy_stmt ( p , a ) ? NULL : p -> tokens [p -> mark - 1] -> level == 0 ? NULL : RAISE_SYNTAX_ERROR_KNOWN_RANGE ( a , b , "invalid syntax. Perhaps you forgot a comma?" ); if (_res == NULL && PyErr_Occurred()) { p->error_indicator = 1; D(p->level--); diff --git a/Parser/pegen.c b/Parser/pegen.c index 4f51c63..ede281a 100644 --- a/Parser/pegen.c +++ b/Parser/pegen.c @@ -170,6 +170,8 @@ initialize_token(Parser *p, Token *token, const char *start, const char *end, in return -1; } + token->level = p->tok->level; + const char *line_start = token_type == STRING ? p->tok->multi_line_start : p->tok->line_start; int lineno = token_type == STRING ? p->tok->first_lineno : p->tok->lineno; int end_lineno = p->tok->lineno; @@ -946,4 +948,4 @@ _PyPegen_run_parser_from_string(const char *str, int start_rule, PyObject *filen error: _PyTokenizer_Free(tok); return result; -}
\ No newline at end of file +} diff --git a/Parser/pegen.h b/Parser/pegen.h index e5e712a..78e75d7 100644 --- a/Parser/pegen.h +++ b/Parser/pegen.h @@ -35,6 +35,7 @@ typedef struct _memo { typedef struct { int type; PyObject *bytes; + int level; int lineno, col_offset, end_lineno, end_col_offset; Memo *memo; } Token; diff --git a/Parser/pegen_errors.c b/Parser/pegen_errors.c index 694184a..93057d1 100644 --- a/Parser/pegen_errors.c +++ b/Parser/pegen_errors.c @@ -399,7 +399,7 @@ _Pypegen_set_syntax_error(Parser* p, Token* last_token) { RAISE_SYNTAX_ERROR("error at start before reading any input"); } // Parser encountered EOF (End of File) unexpectedtly - if (p->tok->done == E_EOF) { + if (last_token->type == ERRORTOKEN && p->tok->done == E_EOF) { if (p->tok->level) { raise_unclosed_parentheses_error(p); } else { @@ -422,4 +422,4 @@ _Pypegen_set_syntax_error(Parser* p, Token* last_token) { // _PyPegen_tokenize_full_source_to_check_for_errors will override the existing // generic SyntaxError we just raised if errors are found. _PyPegen_tokenize_full_source_to_check_for_errors(p); -}
\ No newline at end of file +} |