COMMITS
/ Python/ast.c April 11, 2020
S
bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345)
Serhiy Storchaka committed
April 3, 2020
P
bpo-40141: Include the value in the column position for keyword AST nodes (GH-19348)
Pablo Galindo committed
P
bpo-40147: Move the check for duplicate keywords to the compiler (GH-19289)
Pablo Galindo committed
April 1, 2020
P
bpo-40141: Add line and column information to ast.keyword nodes (GH-19283)
Pablo Galindo committed
March 25, 2020
V
bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157)
Victor Stinner committed
March 19, 2020
B
bpo-40000: Improve error messages when validating invalid ast.Constant nodes (GH-19055)
Batuhan Taşkaya committed
March 17, 2020
S
bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038)
Serhiy Storchaka committed
March 15, 2020
B
bpo-39969: Remove ast.Param node class as is no longer used (GH-19020)
Batuhan Taşkaya committed
March 10, 2020
S
bpo-34822: Simplify AST for subscription. (GH-9605)
Serhiy Storchaka committed
March 4, 2020
B
bpo-39639: Remove the AST "Suite" node and associated code (GH-18513)
Batuhan Taşkaya committed
March 3, 2020
B
bpo-39702: Relax grammar restrictions on decorators (PEP 614) (GH-18570)
Brandt Bucher committed
February 12, 2020
S
bpo-39474: Fix AST pos for expressions like (a)(b), (a)[b] and (a).b. (GH-18477)
Serhiy Storchaka committed
February 7, 2020
L
bpo-39579: Fix Attribute end_col_offset to point at the current node (GH-18405)
Lysandros Nikolaou committed
January 9, 2020
G
bpo-39235: Fix end location for genexp in call args (GH-17925)
Guido van Rossum committed
January 1, 2020
N
bpo-39176: Improve error message for 'named assignment' (GH-17777)
Ned Batchelder committed
December 18, 2019
L
bpo-39080: Starred Expression's column offset fix when inside a CALL (GH-17645)
Lysandros Nikolaou committed
December 15, 2019
G
The comment in ast_for_namedexpr shouldn't include if_stmt (GH-17586)
Guido van Rossum committed
December 14, 2019
L
Fix elif start column offset when there is an else following (GH-17596)
Lysandros Nikolaou committed
December 12, 2019
L
bpo-39031: Include elif keyword when producing lineno/col-offset info for if_stmt (GH-17582)
Lysandros Nikolaou committed
October 26, 2019
S
bpo-38535: Fix positions for AST nodes for calls without arguments in decorators. (GH-16861)
Serhiy Storchaka committed
September 12, 2019
G
Cut disused recode_encoding logic in _PyBytes_DecodeEscape. (GH-16013)
Greg Price committed
D
bpo-38138: Fix memory leak introduced by interned strings (GH-16053)
Dino Viehland committed
September 11, 2019
D
bpo-38113: Update Python/ast.c to PEP-384 (GH-15975)
Dino Viehland committed
August 30, 2019
M
Fix typos mostly in comments, docs and test names (GH-15209)
Min ho Kim committed
August 10, 2019
G
bpo-32912: Revert SyntaxWarning on invalid escape sequences. (GH-15195)
Gregory P. Smith committed
July 30, 2019
M
Fix typos in comments, docs and test names (#15018)
Min ho Kim committed
July 14, 2019
July 8, 2019
C
bpo-18374: fix wrong col_offset of some ast.BinOp instances (GH-14607)
Carl Friedrich Bolz-Tereick committed
June 18, 2019
D
remove dead code (GH-14104)
David Carlier committed
June 13, 2019
V
bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018)
Victor Stinner committed
June 3, 2019
P
bpo-35814: Allow unpacking in r.h.s of annotated assignment expressions (GH-13760)
Pablo Galindo committed
May 31, 2019
P
bpo-37112: Allow compile to work on AST with positional only arguments with defaults (GH-13697)
Pablo Galindo committed
May 29, 2019
E
bpo-37070: Cleanup fstring debug handling (GH-13607)
Eric V. Smith committed
May 28, 2019
G
bpo-37072: Fix crash in PyAST_FromNodeObject() when flags is NULL (#13634)
Guido van Rossum committed
May 27, 2019
E
bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node instead (GH-13597)
Eric V. Smith committed
May 22, 2019
M
bpo-36878: Track extra text added to 'type: ignore' in the AST (GH-13479)
Michael J. Sullivan committed
May 17, 2019
D
Fix couple of dead code paths (GH-7418)
David Carlier committed
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