COMMITS
/ Parser/parser.c April 23, 2021
P
bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)
Pablo Galindo committed
April 21, 2021
P
bpo-43859: Improve the error message for IndentationError exceptions (GH-25431)
Pablo Galindo committed
April 15, 2021
P
bpo-43823: Fix location of one of the errors for invalid dictionary literals (GH-25427)
Pablo Galindo committed
P
bpo-43822: Improve syntax errors for missing commas (GH-25377)
Pablo Galindo committed
P
bpo-43823: Improve syntax errors for invalid dictionary literals (GH-25378)
Pablo Galindo committed
April 13, 2021
P
bpo-43797: Handle correctly invalid assignments inside function calls and generators (GH-25390)
Pablo Galindo committed
P
Ensure that early = are not matched by the parser as invalid comparisons (GH-25375)
Pablo Galindo committed
April 12, 2021
P
bpo-43797: Improve syntax error for invalid comparisons (#25317)
Pablo Galindo committed
April 10, 2021
M
bpo-43798: Add source location attributes to alias (GH-25324)
Matthew Suozzo committed
April 7, 2021
V
bpo-43244: Rename pycore_ast.h functions to _PyAST_xxx() (GH-25252)
Victor Stinner committed
March 24, 2021
P
bpo-41064: Improve syntax error for invalid usage of '**' in f-strings (GH-25006)
Pablo Galindo committed
March 18, 2021
V
bpo-43244: Fix test_peg_generators on Windows (GH-24913)
Victor Stinner committed
P
bpo-42128: Add 'missing :' syntax error message to match statements (GH-24733)
Pablo Galindo committed
March 1, 2021
J
bpo-11717: fix ssize_t redefinition error when targeting 32bit Windows app (GH-24479)
Jozef Grajciar committed
February 26, 2021
B
bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)
Brandt Bucher committed
February 7, 2021
P
bpo-43149: Improve error message for exception group without parentheses (GH-24467)
Pablo Galindo committed
February 3, 2021
P
bpo-43121: Fix incorrect SyntaxError message for missing comma (GH-24436)
Pablo Galindo committed
February 2, 2021
P
bpo-42997: Improve error message for missing : before suites (GH-24292)
Pablo Galindo committed
January 31, 2021
P
bpo-43017: Improve error message for unparenthesised tuples in comprehensions (GH24314)
Pablo Galindo committed
January 7, 2021
L
bpo-42860: Remove type error from grammar (GH-24156)
Lysandros Nikolaou committed
January 2, 2021
L
bpo-40631: Disallow single parenthesized star target (GH-24027)
Lysandros Nikolaou committed
December 13, 2020
P
bpo-30858: Improve error location for expressions with assignments (GH-23753)
Pablo Galindo committed
November 30, 2020
P
Refactor the grammar to match the language specification docs (GH-23574)
Pablo Galindo committed
November 17, 2020
P
bpo-42381: Allow walrus in set literals and set comprehensions (GH-23332)
Pablo Galindo committed
November 16, 2020
L
bpo-42316: Allow unparenthesized walrus operator in indexes (GH-23317)
Lysandros Nikolaou committed
L
bpo-42374: Allow unparenthesized walrus in genexps (GH-23319)
Lysandros Nikolaou committed
October 31, 2020
L
bpo-42218: Correctly handle errors in left-recursive rules (GH-23065)
Lysandros Nikolaou committed
October 30, 2020
P
bpo-42214: Fix check for NOTEQUAL token in the PEG parser for the barry_as_flufl rule (GH-23048)
Pablo Galindo committed
October 27, 2020
L
bpo-41659: Disallow curly brace directly after primary (GH-22996)
Lysandros Nikolaou committed
October 26, 2020
L
bpo-42123: Run the parser two times and only enable invalid rules on the second run (GH-22111)
Lysandros Nikolaou committed
October 21, 2020
L
bpo-41746: Cast to typed seqs in CHECK macros to avoid type erasure (GH-22864)
Lysandros Nikolaou committed
October 9, 2020
B
bpo-41979: Accept star-unpacking on with-item targets (GH-22611)
Batuhan Taskaya committed
September 16, 2020
P
bpo-41746: Add type information to asdl_seq objects (GH-22223)
Pablo Galindo committed
September 3, 2020
P
bpo-41697: Correctly handle KeywordOrStarred when parsing arguments in the parser (GH-22077)
Pablo Galindo committed
September 2, 2020
P
bpo-41690: Use a loop to collect args in the parser instead of recursion (GH-22053)
Pablo Galindo committed
July 6, 2020
P
bpo-41215: Don't use NULL by default in the PEG parser keyword list (GH-21355)
Pablo Galindo committed
June 27, 2020
B
bpo-40769: Allow extra surrounding parentheses for invalid annotated assignment rule (GH-20387)
Batuhan Taskaya committed
June 25, 2020
L
bpo-41119: Output correct error message for list/tuple followed by colon (GH-21160)
Lysandros Nikolaou committed
June 21, 2020
L
bpo-41060: Avoid SEGFAULT when calling GET_INVALID_TARGET in the grammar (GH-21020)
Lysandros Nikolaou committed
June 18, 2020
L
bpo-40334: Produce better error messages on invalid targets (GH-20106)
Lysandros Nikolaou committed
June 11, 2020
P
bpo-40939: Remove the old parser (GH-20768)
Pablo Galindo committed
March 6, 2020
V
bpo-39882: Py_FatalError() logs the function name (GH-18819)
Victor Stinner committed
April 23, 2019
I
fix warnings by adding more const (GH-12924)
Inada Naoki committed
April 13, 2019
P
bpo-36623: Clean parser headers and include files (GH-12253)
Pablo Galindo committed
January 31, 2019
G
bpo-35766: Merge typed_ast back into CPython (GH-11645)
Guido van Rossum committed
January 22, 2019
I
bpo-33416: Add end positions to Python AST (GH-11605)
Ivan Levkivskyi committed
March 27, 2016
B
Issue #26130: Remove redundant variable 's' from Parser/parser.c
Berker Peksag committed
October 19, 2013
S
Issue #1772673: The type of `char*` arguments now changed to `const char*`.
Serhiy Storchaka committed
August 13, 2013
A
Issue #18722: Remove uses of the "register" keyword in C code.
Antoine Pitrou committed
May 9, 2010
A
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou committed