summaryrefslogtreecommitdiffstats
path: root/Parser/pegen_errors.c
Commit message (Expand)AuthorAgeFilesLines
* gh-107450: Remove unnecessary overflow check in parser error handler (#110940)Lysandros Nikolaou2023-10-161-6/+0
* gh-107450: Check for overflow in the tokenizer and fix overflow test (#110832)Lysandros Nikolaou2023-10-161-0/+5
* gh-107450: Raise OverflowError when parser column offset overflows (#110754)Lysandros Nikolaou2023-10-121-0/+6
* gh-104169: Refactor tokenizer into lexer and wrappers (#110684)Lysandros Nikolaou2023-10-111-1/+2
* gh-109596: Ensure repeated rules in the grammar are not allowed and fix incor...Pablo Galindo Salgado2023-09-221-26/+0
* gh-108179: Add error message for parser stack overflows (#108256)Dennis Sweeney2023-08-221-0/+8
* gh-106320: Remove private _PyErr C API functions (#106356)Victor Stinner2023-07-031-0/+1
* gh-102856: Python tokenizer implementation for PEP 701 (#104323)Marta Gómez Macías2023-05-211-2/+2
* gh-103656: Transfer f-string buffers to parser to avoid use-after-free (GH-10...Lysandros Nikolaou2023-04-271-0/+2
* gh-102856: Initial implementation of PEP 701 (#102855)Pablo Galindo Salgado2023-04-191-4/+12
* gh-100050: Fix an assertion error when raising unclosed parenthesis errors in...Pablo Galindo Salgado2022-12-061-0/+4
* gh-97973: Return all necessary information from the tokenizer (GH-97984)Lysandros Nikolaou2022-10-061-3/+2
* gh-95876: Fix format string in pegen error location code (#95877)Christian Heimes2022-08-111-1/+1
* [3.11] bpo-14916: interactive fd is not tied to stdin [type-bug] (#91469)Paul m. p. Peny2022-07-161-1/+1
* gh-94360: Fix a tokenizer crash when reading encoded files with syntax errors...Pablo Galindo Salgado2022-07-051-4/+4
* bpo-47117: Don't crash if we fail to decode characters when the tokenizer buf...Pablo Galindo Salgado2022-03-261-2/+7
* Fix the caret position in some syntax errors in interactive mode (GH-30718)Pablo Galindo Salgado2022-01-201-2/+3
* bpo-46339: Include clarification on assert in 'get_error_line_from_tokenizer_...Pablo Galindo Salgado2022-01-181-0/+3
* bpo-46339: Fix crash in the parser when computing error text for multi-line f...Pablo Galindo Salgado2022-01-111-2/+9
* bpo-46240: Correct the error for unclosed parentheses when the tokenizer is n...Pablo Galindo Salgado2022-01-041-1/+2
* bpo-45727: Only trigger the 'did you forgot a comma' error suggestion if insi...Pablo Galindo Salgado2021-11-241-2/+2
* Ensure the str member of the tokenizer is always initialised (GH-29681)Pablo Galindo Salgado2021-11-211-1/+1
* Refactor parser compilation units into specific components (GH-29676)Pablo Galindo Salgado2021-11-211-0/+425