aboutsummaryrefslogtreecommitdiff
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-88943: Improve syntax error for non-ASCII character that follows a ...Serhiy Storchaka2023-09-071-1/+1
* [3.11] GH-105588: Add missing error checks to some obj2ast_* converters (GH-1...Miss Islington (bot)2023-06-151-0/+1
* [3.11] Fix typo in the tokenizer (GH-104950) (#104952)Miss Islington (bot)2023-05-251-1/+1
* [3.11] gh-96670: Raise SyntaxError when parsing NULL bytes (GH-97594) (#104195)Lysandros Nikolaou2023-05-071-5/+20
* [3.11] gh-102310: Change error range for invalid bytes literals (GH-103663) (...Miss Islington (bot)2023-04-231-1/+2
* [3.11] GH-102711: Fix warnings found by clang (GH-102712) (#103075)Miss Islington (bot)2023-03-281-2/+2
* [3.11] gh-102416: Do not memoize incorrectly loop rules in the parser (GH-10...Pablo Galindo Salgado2023-03-061-216/+0
* [3.11] gh-101046: Fix a potential memory leak in the parser when raising Memo...Pablo Galindo Salgado2023-01-161-0/+108
* gh-100050: Fix an assertion error when raising unclosed parenthesis errors in...Miss Islington (bot)2022-12-071-0/+4
* [3.11] gh-99891: Fix infinite recursion in the tokenizer when showing warning...Pablo Galindo Salgado2022-12-012-0/+9
* gh-99581: Fix a buffer overflow in the tokenizer when copying lines that fill...Miss Islington (bot)2022-11-201-1/+6
* [3.11] gh-99211: Point to except/except* on syntax errors when mixing them (G...Lysandros Nikolaou2022-11-201-671/+713
* [3.11] gh-99153: set location on SyntaxError for try with both except and exc...Irit Katriel2022-11-071-3/+3
* [3.11] gh-96587: Raise `SyntaxError` for PEP654 on older `feature_version` (G...Nikita Sobolev2022-10-051-1/+1
* gh-96678: Fix UB of null pointer arithmetic (GH-96782)Miss Islington (bot)2022-09-131-1/+1
* gh-96268: Fix loading invalid UTF-8 (GH-96270)Miss Islington (bot)2022-09-071-13/+45
* gh-96611: Fix error message for invalid UTF-8 in mid-multiline string (GH-96623)Miss Islington (bot)2022-09-061-0/+2
* [3.11] gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96500)Gregory P. Smith2022-09-021-0/+23
* [3.11] gh-94996: Disallow lambda pos only params with feature_version < (3, 8...Shantanu2022-08-121-2/+2
* gh-94996: Disallow parsing pos only params with feature_version < (3, 8) (GH-...Miss Islington (bot)2022-08-121-2/+2
* gh-95876: Fix format string in pegen error location code (GH-95877)Miss Islington (bot)2022-08-111-1/+1
* gh-95355: Check tokens[0] after allocating memory (GH-95356)Miss Islington (bot)2022-07-281-1/+1
* [3.11] gh-95185: Check recursion depth in the AST constructor (GH-95186) (GH-...Miss Islington (bot)2022-07-261-1/+36
* gh-94949: Disallow parsing parenthesised ctx mgr with old feature_version (GH...Miss Islington (bot)2022-07-181-1/+1
* gh-94947: Disallow parsing walrus with feature_version < (3, 8) (GH-94948)Miss Islington (bot)2022-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
* gh-94360: Fix a tokenizer crash when reading encoded files with syntax errors...Miss Islington (bot)2022-07-052-5/+13
* gh-94192: Fix error for dictionary literals with invalid expression as value....Miss Islington (bot)2022-06-261-261/+326
* [3.11] gh-92858: Improve error message for some suites with syntax error befo...Pablo Galindo Salgado2022-06-231-362/+500
* gh-93671: Avoid exponential backtracking in deeply nested sequence patterns i...Miss Islington (bot)2022-06-101-0/+10
* gh-93418: Fix an assert when an f-string expression is followed by an '=', bu...Miss Islington (bot)2022-06-011-1/+3
* gh-92597: Ensure that AST nodes without explicit end positions can be compile...Miss Islington (bot)2022-05-311-1/+13
* gh-90473: Decrease recursion limit and skip tests on WASI (GH-92803)Miss Islington (bot)2022-05-191-1/+5
* Use static inline function Py_EnterRecursiveCall() (#91988)Victor Stinner2022-05-041-5/+6
* gh-81548: Deprecate octal escape sequences with value larger than 0o377 (GH-9...Serhiy Storchaka2022-04-301-7/+18
* gh-87999: Change warning type for numeric literal followed by keyword (GH-91980)Serhiy Storchaka2022-04-271-4/+6
* bpo-47212: Improve error messages for un-parenthesized generator expressions ...Matthieu Dartiailh2022-04-053-4/+5
* bpo-46315: Use fopencookie only on Emscripten 3.x and newer (GH-32266)Christian Heimes2022-04-021-1/+1
* bpo-47126: Update to canonical PEP URLs specified by PEP 676 (GH-32124)Hugo van Kemenade2022-03-301-1/+1
* bpo-47129: Add more informative messages to f-string syntax errors (32127)Maciej Górski2022-03-281-0/+5
* bpo-43224: Implement PEP 646 grammar changes (GH-31018)Matthew Rahtz2022-03-261-2101/+2465
* bpo-47117: Don't crash if we fail to decode characters when the tokenizer buf...Pablo Galindo Salgado2022-03-261-2/+7
* bpo-46315: Use fopencookie() to avoid dup() in _PyTokenizer_FindEncodingFilen...Christian Heimes2022-03-221-6/+34
* bpo-46838: Syntax error improvements for function definitions (GH-31590)Pablo Galindo Salgado2022-03-221-867/+3150
* bpo-46920: Remove code that has explainers why it was disabled (GH-31813)Oleg Iarygin2022-03-141-24/+0
* bpo-46920: Remove disabled debug code added decades ago and likely unnecessa...Oleg Iarygin2022-03-141-11/+0
* bpo-46820: Fix a SyntaxError in a numeric literal followed by "not in" (GH-31...Serhiy Storchaka2022-02-221-0/+3
* bpo-46762: Fix an assert failure in f-strings where > or < is the last charac...Eric V. Smith2022-02-161-10/+10
* Don't print rejected tokens when using the debug flags in the parser (GH-31258)Pablo Galindo Salgado2022-02-101-1/+0
* Allow the parser to avoid nested processing of invalid rules (GH-31252)Pablo Galindo Salgado2022-02-103-1044/+1033