COMMITS
/ Python/ast.c May 12, 2019
P
bpo-36817: Do not decrement reference for expr_text on fstring = parsing failure (GH-13256)
Pablo Galindo committed
May 11, 2019
P
bpo-36817: Fix reference leak for expr_text in f-string = parsing (GH-13249)
Pablo Galindo committed
May 8, 2019
E
bpo-36817: Add f-string debugging using '='. (GH-13123)
Eric V. Smith committed
April 29, 2019
P
bpo-36540: PEP 570 -- Implementation (GH-12701)
Pablo Galindo committed
April 1, 2019
B
bpo-36495: Fix two out-of-bounds array reads (GH-12641)
Brad Larsen committed
March 18, 2019
P
bpo-36332: Allow compile() to handle AST objects with assignment expressions (GH-12398)
Pablo Galindo committed
March 13, 2019
G
bpo-36280: Add Constant.kind field (GH-12295)
Guido van Rossum committed
March 7, 2019
G
bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)
Guido van Rossum committed
March 5, 2019
S
bpo-36187: Remove NamedStore. (GH-12167)
Serhiy Storchaka committed
February 21, 2019
S
bpo-36052: Raise a SyntaxError when assigning a value to __debug__ with := (GH-11958)
Stéphane Wirtel committed
February 19, 2019
P
bpo-36049: Fix compiler warning in Python/ast.c (GH-11949)
Pablo Galindo committed
February 11, 2019
G
bpo-35766 follow-up: Add an error check to new_type_comment() (#11766)
Guido van Rossum committed
February 10, 2019
P
Fix compiler warning about non initialised variable (GH-11806)
Pablo Galindo committed
I
Fix compiler warnings about end_col_offset and end_lineno (GH-11735)
Ivan Levkivskyi committed
February 1, 2019
G
bpo-35879: Fix type comment leaks (GH-11728)
Guido van Rossum committed
January 31, 2019
G
bpo-35766: Merge typed_ast back into CPython (GH-11645)
Guido van Rossum committed
January 25, 2019
I
bpo-35814: Allow same r.h.s. in annotated assignments as in normal ones (GH-11667)
Ivan Levkivskyi committed
January 24, 2019
E
bpo-35224: PEP 572 Implementation (#10497)
Emily Morehouse committed
January 22, 2019
I
bpo-33416: Add end positions to Python AST (GH-11605)
Ivan Levkivskyi committed
January 13, 2019
A
bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021)
Anthony Sottile committed
January 12, 2019
S
bpo-35494: Improve syntax error messages for unbalanced parentheses in f-string. (GH-11161)
Serhiy Storchaka committed
December 7, 2018
Z
bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-11015)
Zackery Spytz committed
November 27, 2018
S
bpo-31241: Fix AST node position for list and generator comprehensions. (GH-10633)
Serhiy Storchaka committed
November 22, 2018
V
bpo-18407: ast.c uses Py_ssize_t for asdl_seq_LEN() iterator (GH-10655)
Victor Stinner committed
November 20, 2018
S
bpo-35169: Improve error messages for forbidden assignments. (GH-10342)
Serhiy Storchaka committed
October 30, 2018
S
bpo-34876: Change the lineno of the AST for decorated function and class. (GH-9731)
Serhiy Storchaka committed
October 19, 2018
S
bpo-32912: Replace a DeprecationWarning with a SyntaxWarning (GH-9652)
Serhiy Storchaka committed
September 27, 2018
S
bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445)
Serhiy Storchaka committed
September 24, 2018
A
bpo-34683: Make SyntaxError column offsets consistently 1-indexed (gh-9338)
Ammar Askar committed
September 13, 2018
B
closes bpo-34641: Further restrict the LHS of keyword argument function call syntax. (GH-9212)
Benjamin Peterson committed
September 11, 2018
B
Make sure the line comes from the same node as the col offset. (GH-9189)
Benjamin Peterson committed
August 22, 2018
A
bpo-34457: Python/ast.c: Add missing NULL check to alias_for_import_name(). (GH-8852)
Alexey Izbyshev committed
May 30, 2018
S
bpo-33691: Add _PyAST_GetDocString(). (GH-7236)
Serhiy Storchaka committed
May 29, 2018
S
bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197)
Serhiy Storchaka committed
May 13, 2018
J
fix error message in ast.c (#6776)
Jelle Zijlstra committed
April 30, 2018
V
bpo-30465: Fix C downcast warning on Windows in ast.c (#6593)
Victor Stinner committed
December 1, 2017
S
Don't hide unexpected errors in PyErr_WarnExplicitObject(). (#4585)
Serhiy Storchaka committed
November 15, 2017
S
bpo-32023: Disallow genexprs without parenthesis in class definitions. (#4400)
Serhiy Storchaka committed
S
bpo-32012: Disallow trailing comma after genexpr without parenthesis. (#4382)
Serhiy Storchaka committed
November 5, 2017
L
Fix miscellaneous typos (#4275)
luzpaz committed
October 20, 2017
S
bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (#4058)
Serhiy Storchaka committed
October 6, 2017
J
bpo-30406: Make async and await proper keywords (#1669)
Jelle Zijlstra committed
September 30, 2017
September 15, 2017
B
bpo-31338 (#3374)
Barry Warsaw committed
September 7, 2017
Ł
bpo-30465: Fix lineno and col_offset in fstring AST nodes (#1800)
Łukasz Langa committed
August 21, 2017
S
bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (#3157)
Stefan Krah committed
June 16, 2017
E
bpo-30682: Removed a too-strict assertion that failed for certain f-strings. (#2232)
ericvsmith committed
June 8, 2017
S
bpo-30529: Fix errors for invalid whitespaces in f-string subexpressions. (#1888)
Serhiy Storchaka committed
May 25, 2017
S
bpo-29104: Fixed parsing backslashes in f-strings. (#490)
Serhiy Storchaka committed