summaryrefslogtreecommitdiffstats
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* gh-96678: Fix UB of null pointer arithmetic (GH-96782)Miss Islington (bot)2022-09-131-1/+1
* gh-96611: Fix error message for invalid UTF-8 in mid-multiline string (GH-96623)Miss Islington (bot)2022-09-061-0/+2
* [3.10] gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96501)Gregory P. Smith2022-09-021-0/+23
* [3.10] gh-94996: Disallow lambda pos only params with feature_version < (3, 8...Shantanu2022-08-121-2/+2
* [3.10] gh-94996: Disallow parsing pos only params with feature_version < (3, ...Shantanu2022-08-121-2/+2
* [3.10] gh-95876: Fix format string in pegen error location code (GH-95877 (GH...Christian Heimes2022-08-111-1/+1
* gh-95355: Check tokens[0] after allocating memory (GH-95356)Miss Islington (bot)2022-07-281-1/+1
* [3.10] gh-94949: Disallow parsing parenthesised ctx mgr with old feature_vers...Shantanu2022-07-191-1/+1
* [3.10] gh-94947: Disallow parsing walrus with feature_version < (3, 8) (GH-94...Shantanu2022-07-181-1/+1
* gh-94869: Fix the location in some expressions for multi-line f-string ast no...Miss Islington (bot)2022-07-161-1/+4
* [3.10] gh-94360: Fix a tokenizer crash when reading encoded files with syntax...Pablo Galindo Salgado2022-07-052-5/+13
* [3.10] gh-94192: Fix error for dictionary literals with invalid expression as...wookie1842022-06-271-217/+282
* [3.10] gh-92858: Improve error message for some suites with syntax error befo...Pablo Galindo Salgado2022-06-231-293/+431
* [3.10] gh-93671: Avoid exponential backtracking in deeply nested sequence pat...Pablo Galindo Salgado2022-06-101-0/+10
* gh-93418: Fix an assert when an f-string expression is followed by an '=', bu...Miss Islington (bot)2022-06-021-1/+3
* [3.10] Backport bpo-47212 (GH-32302) to Python 3.10 (GH-32334)Matthieu Dartiailh2022-04-053-4/+5
* [3.10] bpo-47117: Don't crash if we fail to decode characters when the tokeni...Pablo Galindo Salgado2022-03-261-2/+7
* bpo-46820: Fix a SyntaxError in a numeric literal followed by "not in" (GH-31...Miss Islington (bot)2022-02-221-0/+3
* bpo-46762: Fix an assert failure in f-strings where > or < is the last charac...Miss Islington (bot)2022-02-161-10/+10
* [3.10] Allow the parser to avoid nested processing of invalid rules (GH-31252...Pablo Galindo Salgado2022-02-103-912/+900
* [3.10] bpo-46707: Avoid potential exponential backtracking in some syntax err...Pablo Galindo Salgado2022-02-101-883/+888
* [3.10] bpo-46521: Fix codeop to use a new partial-input mode of the parser (G...Pablo Galindo Salgado2022-02-083-10/+34
* bpo-14916: use specified tokenizer fd for file input (GH-31006)Miss Islington (bot)2022-02-031-1/+1
* [3.10] bpo-46091: Correctly calculate indentation levels for whitespace lines...Pablo Galindo Salgado2022-01-251-13/+33
* bpo-46503: Prevent an assert from firing when parsing some invalid \N sequenc...Miss Islington (bot)2022-01-251-2/+14
* [3.10] bpo-46240: Correct the error for unclosed parentheses when the tokeniz...Pablo Galindo Salgado2022-01-231-1/+2
* [3.10] bpo-46339: Fix crash in the parser when computing error text for multi...Miss Islington (bot)2022-01-202-427/+10
* bpo-46237: Fix the line number of tokenizer errors inside f-strings (GH-30463)Miss Islington (bot)2022-01-112-5/+8
* bpo-46289: Make conversion of FormattedValue not optional on ASDL (GH-30467)Miss Islington (bot)2022-01-071-1/+1
* bpo-42918: Improve built-in function compile() in mode 'single' (GH-29934) (G...Miss Islington (bot)2021-12-271-19/+1
* [3.10] bpo-46110: Add a recursion check to avoid stack overflow in the PEG pa...Pablo Galindo Salgado2021-12-202-3069/+4403
* bpo-46054: Fix parsing error when parsing non-utf8 characters in source files...Miss Islington (bot)2021-12-121-8/+5
* [3.10] bpo-46004: Fix error location for loops with invalid targets (GH-29959...Pablo Galindo Salgado2021-12-071-1/+2
* bpo-45866: pegen strips directory of "generated from" header (GH-29777) (GH-2...Victor Stinner2021-11-261-1/+1
* [3.10] bpo-45727: Only trigger the 'did you forgot a comma' error suggestion ...Pablo Galindo Salgado2021-11-254-4/+7
* [3.10] Ensure the str member of the tokenizer is always initialised (GH-29681...Pablo Galindo Salgado2021-11-214-3/+428
* bpo-45494: Fix error location in EOF tokenizer errors (GH-29108)Miss Islington (bot)2021-11-201-2/+7
* [3.10] bpo-45727: Make the syntax error for missing comma more consistent (GH...Pablo Galindo Salgado2021-11-202-328/+263
* [3.10] bpo-45848: Allow the parser to get error lines from encoded files (GH-...Łukasz Langa2021-11-201-7/+8
* bpo-45820: Fix a segfault when the parser fails without reading any input (GH...Miss Islington (bot)2021-11-171-0/+8
* [3.10] bpo-45822: Respect PEP 263's coding cookies in the parser even if flag...Pablo Galindo Salgado2021-11-171-1/+1
* [3.10] bpo-45716: Improve the error message when using True/False/None as key...Pablo Galindo Salgado2021-11-161-572/+678
* bpo-45738: Fix computation of error location for invalid continuation (GH-29550)Miss Islington (bot)2021-11-142-11/+5
* [3.10] bpo-44257: fix "assigment_expr" typo + regenerate the grammar, and rem...Pablo Galindo Salgado2021-11-041-60/+60
* bpo-45562: Ensure all tokenizer debug messages are printed to stderr (GH-29270)Miss Islington (bot)2021-10-291-1/+1
* bpo-45562: Print tokenizer debug messages to stderr (GH-29250) (GH-29252)Miss Islington (bot)2021-10-271-4/+4
* bpo-45574: fix warning about `print_escape` being unused (GH-29172) (#29176)Miss Islington (bot)2021-10-231-0/+2
* bpo-45562: Only show debug output from the parser in debug builds (GH-29140) ...Miss Islington (bot)2021-10-221-0/+2
* [3.10] bpo-45494: Fix parser crash when reporting errors involving invalid co...Łukasz Langa2021-10-192-122/+130
* [3.10] bpo-45461: Fix IncrementalDecoder and StreamReader in the "unicode-esc...Miss Islington (bot)2021-10-141-1/+1