summaryrefslogtreecommitdiffstats
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* 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-161-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-271-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-041-1/+1
* closes bpo-38156: Always handle interrupts in PyOS_StdioReadline. (GH-21569)Miss Islington (bot)2020-07-291-30/+14
* [3.9] Validate the AST produced by the parser in debug mode (GH-21643) (GH-21...Pablo Galindo2020-07-271-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-281-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-271-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-261-320/+284
* [3.9] bpo-41060: Avoid SEGFAULT when calling GET_INVALID_TARGET in the gramma...Lysandros Nikolaou2020-06-212-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-111-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-081-0/+3
* bpo-40880: Fix invalid read in newline_in_string in pegen.c (GH-20666)Miss Islington (bot)2020-06-061-2/+2
* bpo-40883: Fix memory leak in fstring_compile_expr in parse_string.c (GH-20667)Miss Islington (bot)2020-06-061-0/+2
* [3.9] bpo-40826: Fix GIL usage in PyOS_Readline() (GH-20613)Victor Stinner2020-06-031-33/+85
* bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSp...Miss Islington (bot)2020-05-281-0/+1
* [3.9] bpo-40614: Respect feature version for f-string debug expressions (GH-2...Pablo Galindo2020-05-271-0/+5
* [3.9] Backport GH-20440: Set p->error_indicator in more places (GH-20457)Lysandros Nikolaou2020-05-271-0/+5
* [3.9] Backport GH-20370 and GH-20436: Soft keywords (GH-20458)Lysandros Nikolaou2020-05-272-1/+35
* Fix peg_generator compiler warnings under MSVC (GH-20405)Miss Islington (bot)2020-05-261-4/+0
* [3.9] bpo-38964: Print correct filename on a SyntaxError in an fstring (GH-20...Lysandros Nikolaou2020-05-261-5/+2
* bpo-40750: Do not expand the new parser debug flags if Py_BUILD_CORE is not d...Miss Islington (bot)2020-05-251-1/+1
* bpo-40750: Support -d flag in the new parser (GH-20340)Miss Islington (bot)2020-05-253-23/+4378
* bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382)Miss Islington (bot)2020-05-241-3/+24
* Use Py_ssize_t for the column number in the PEG support code (GH-20341)Miss Islington (bot)2020-05-241-1/+1