summaryrefslogtreecommitdiff
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* [3.9] bpo-44947: Refine the syntax error for trailing commas in import statem...Łukasz Langa2021-08-181-5/+8
* [3.9] bpo-44885: Correct the ast locations of f-strings with format specs and...Pablo Galindo Salgado2021-08-121-39/+31
* [3.9] Update URLs in comments and metadata to use HTTPS (GH-27458) (GH-27480)Łukasz Langa2021-07-301-1/+1
* [3.9] bpo-44409: Fix error location in tokenizer errors that happen during in...Pablo Galindo2021-06-141-0/+1
* [3.9] bpo-44385: Remove unused grammar rules (GH-26655) (GH-26659)Lysandros Nikolaou2021-06-101-932/+467
* [3.9] bpo-11105: Do not crash when compiling recursive ASTs (GH-20594) (GH-26...Batuhan Taskaya2021-06-031-4/+15
* [3.9] bpo-44168: Fix error message in the parser for keyword arguments for in...Pablo Galindo2021-05-191-287/+330
* [3.9] bpo-43779: Fix possible refleak involving _PyArena_AddPyObject (GH-2528...Erlend Egeberg Aasland2021-04-091-1/+4
* bpo-43555: Report the column offset for invalid line continuation character (...Miss Islington (bot)2021-03-222-6/+6
* [3.9] bpo-42806: Fix ast locations of f-strings inside parentheses (GH-24067)...Pablo Galindo2021-01-031-1/+1
* [3.9] bpo-40631: Disallow single parenthesized star target (GH-24027) (GH-24068)Lysandros Nikolaou2021-01-021-540/+787
* [3.9] bpo-42381: Allow walrus in set literals and set comprehensions (GH-2333...Pablo Galindo2020-11-181-1120/+955
* bpo-40998: Address compiler warnings found by ubsan (GH-20929)Miss Islington (bot)2020-11-181-0/+3
* bpo-42374: Allow unparenthesized walrus in genexps (GH-23319) (GH-23329)Lysandros Nikolaou2020-11-171-6/+6
* [3.9] bpo-42218: Correctly handle errors in left-recursive rules (GH-23065) (...Lysandros Nikolaou2020-10-311-0/+18
* [3.9] bpo-42214: Fix check for NOTEQUAL token in the PEG parser for the barry...Pablo Galindo2020-10-313-4/+3
* [3.9] bpo-42123: Run the parser two times and only enable invalid rules on th...Lysandros Nikolaou2020-10-283-48/+62
* [3.9] bpo-41659: Disallow curly brace directly after primary (GH-22996) (#23006)Lysandros Nikolaou2020-10-281-167/+234
* bpo-42150: Avoid buffer overflow in the new parser (GH-22978)Miss Skeleton (bot)2020-10-251-1/+2
* [3.9] bpo-41979: Accept star-unpacking on with-item targets (GH-22611) (GH-22...Batuhan Taskaya2020-10-091-6/+9
* [3.9] bpo-41631: _ast module uses again a global state (GH-21961) (GH-22258)Pablo Galindo2020-09-151-41/+20
* [3.9] bpo-41697: Correctly handle KeywordOrStarred when parsing arguments in ...Pablo Galindo2020-09-033-10/+22
* [3.9] bpo-41690: Use a loop to collect args in the parser instead of recursio...Pablo Galindo2020-09-023-503/+625
* [3.9] bpo-41194: Convert _ast extension to PEP 489 (GH-21807)Victor Stinner2020-08-101-47/+75
* bpo-38156: Fix compiler warning in PyOS_StdioReadline() (GH-21721)Miss Islington (bot)2020-08-031-1/+1
* closes bpo-38156: Always handle interrupts in PyOS_StdioReadline. (GH-21569)Miss Islington (bot)2020-07-281-30/+14
* [3.9] Validate the AST produced by the parser in debug mode (GH-21643) (GH-21...Pablo Galindo2020-07-281-0/+9
* Fix trivial typo in the PEG string parser (GH-21508)Miss Islington (bot)2020-07-161-1/+1
* Fix possibly-unitialized warning in string_parser.c. (GH-21503)Miss Islington (bot)2020-07-161-15/+16
* bpo-41215: Make assertion in the new parser more strict (GH-21364)Miss Islington (bot)2020-07-061-1/+1
* [3.9] bpo-41215: Don't use NULL by default in the PEG parser keyword list (GH...Pablo Galindo2020-07-062-9/+12
* [3.9] bpo-41194: The _ast module cannot be loaded more than once (GH-21290) (...Victor Stinner2020-07-031-96/+111
* [3.9] bpo-35975: Only use cf_feature_version if PyCF_ONLY_AST in cf_flags (#2...Guido van Rossum2020-06-271-2/+3
* [3.9] bpo-41076: Pre-feed the parser with the f-string expression location (G...Pablo Galindo2020-06-282-242/+25
* [3.9] bpo-40769: Allow extra surrounding parentheses for invalid annotated as...Pablo Galindo2020-06-281-205/+261
* bpo-41084: Adjust message when an f-string expression causes a SyntaxError (G...Miss Islington (bot)2020-06-271-0/+21
* [3.9] bpo-41132: Use pymalloc allocator in the f-string parser (GH-21173) (GH...Lysandros Nikolaou2020-06-271-7/+7
* [3.9] bpo-41119: Output correct error message for list/tuple followed by colo...Lysandros Nikolaou2020-06-271-320/+284
* [3.9] bpo-41060: Avoid SEGFAULT when calling GET_INVALID_TARGET in the gramma...Lysandros Nikolaou2020-06-202-7/+26
* bpo-40958: Avoid 'possible loss of data' warning on Windows (GH-20970)Miss Islington (bot)2020-06-202-2/+2
* [3.9] bpo-40334: Produce better error messages on invalid targets (GH-20106) ...Lysandros Nikolaou2020-06-193-1429/+1738
* bpo-40958: Avoid buffer overflow in the parser when indexing the current line...Miss Islington (bot)2020-06-162-13/+11
* bpo-36020: Remove snprintf macro in pyerrors.h (GH-20889)Miss Islington (bot)2020-06-151-1/+1
* [3.9] Improve readability and style in parser files (GH-20884) (GH-20885)Pablo Galindo2020-06-152-119/+160
* [3.9] bpo-40939: Fix test_keyword for the old parser (GH-20814)Pablo Galindo2020-06-111-7/+7
* bpo-40847: Consider a line with only a LINECONT a blank line (GH-20769)Miss Islington (bot)2020-06-101-1/+2
* Raise specialised syntax error for invalid lambda parameters (GH-20776)Miss Islington (bot)2020-06-101-407/+712
* bpo-40903: Handle multiple '=' in invalid assignment rules in the PEG parser ...Miss Islington (bot)2020-06-082-234/+429
* bpo-40904: Fix segfault in the new parser with f-string containing yield stat...Miss Islington (bot)2020-06-071-0/+3
* bpo-40880: Fix invalid read in newline_in_string in pegen.c (GH-20666)Miss Islington (bot)2020-06-051-2/+2