aboutsummaryrefslogtreecommitdiff
path: root/Python/ast.c
AgeCommit message (Expand)Author
2021-07-28[3.10] bpo-43897: Reject "_" captures and top-level MatchStar in the AST vali...Miss Islington (bot)
2021-07-10[3.10] bpo-43897: ast validation for pattern matching nodes (GH-27074)Batuhan Taskaya
2021-04-28bpo-43892: Make match patterns explicit in the AST (GH-25585)Nick Coghlan
2021-04-25bpo-42609: Check recursion depth in the AST validator and optimizer (GH-23744)Serhiy Storchaka
2021-03-23bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933)Victor Stinner
2021-03-18bpo-43244: Remove the PyAST_Validate() function (GH-24911)Victor Stinner
2021-02-26bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)Brandt Bucher
2020-10-10bpo-42000: Cleanup the AST related C-code (GH-22641)Batuhan Taskaya
2020-09-16bpo-41746: Add type information to asdl_seq objects (GH-22223)Pablo Galindo
2020-06-20bpo-40939: Remove the old parser (Part 2) (GH-21005)Lysandros Nikolaou
2020-06-11bpo-40939: Remove the old parser (GH-20768)Pablo Galindo
2020-06-06bpo-40870: Invalidate usage of some constants with ast.Name (GH-20649)Batuhan Taskaya
2020-05-27bpo-40614: Respect feature version for f-string debug expressions (GH-20196)Shantanu
2020-05-15bpo-40334: Correctly identify invalid target in assignment errors (GH-20076)Pablo Galindo
2020-04-11bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data....Serhiy Storchaka
2020-04-03bpo-40141: Include the value in the column position for keyword AST nodes (GH...Pablo Galindo
2020-04-03bpo-40147: Move the check for duplicate keywords to the compiler (GH-19289)Pablo Galindo
2020-04-02bpo-40141: Add line and column information to ast.keyword nodes (GH-19283)Pablo Galindo
2020-03-25bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157)Victor Stinner
2020-03-19bpo-40000: Improve error messages when validating invalid ast.Constant nodes ...Batuhan Taşkaya
2020-03-17bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038)Serhiy Storchaka
2020-03-15bpo-39969: Remove ast.Param node class as is no longer used (GH-19020)Batuhan Taşkaya
2020-03-10bpo-34822: Simplify AST for subscription. (GH-9605)Serhiy Storchaka
2020-03-04bpo-39639: Remove the AST "Suite" node and associated code (GH-18513)Batuhan Taşkaya
2020-03-03bpo-39702: Relax grammar restrictions on decorators (PEP 614) (GH-18570)Brandt Bucher
2020-02-12bpo-39474: Fix AST pos for expressions like (a)(b), (a)[b] and (a).b. (GH-18477)Serhiy Storchaka
2020-02-07bpo-39579: Fix Attribute end_col_offset to point at the current node (GH-18405)Lysandros Nikolaou
2020-01-09bpo-39235: Fix end location for genexp in call args (GH-17925)Guido van Rossum
2019-12-31bpo-39176: Improve error message for 'named assignment' (GH-17777)Ned Batchelder
2019-12-18bpo-39080: Starred Expression's column offset fix when inside a CALL (GH-17645)Lysandros Nikolaou
2019-12-15The comment in ast_for_namedexpr shouldn't include if_stmt (GH-17586)Guido van Rossum
2019-12-14Fix elif start column offset when there is an else following (GH-17596)Lysandros Nikolaou
2019-12-12bpo-39031: Include elif keyword when producing lineno/col-offset info for if_...Lysandros Nikolaou
2019-10-26bpo-38535: Fix positions for AST nodes for calls without arguments in decorat...Serhiy Storchaka
2019-09-12Cut disused recode_encoding logic in _PyBytes_DecodeEscape. (GH-16013)Greg Price
2019-09-12bpo-38138: Fix memory leak introduced by interned strings (GH-16053)Dino Viehland
2019-09-11bpo-38113: Update Python/ast.c to PEP-384 (GH-15975)Dino Viehland
2019-08-30Fix typos mostly in comments, docs and test names (GH-15209)Min ho Kim
2019-08-10bpo-32912: Revert SyntaxWarning on invalid escape sequences. (GH-15195)Gregory P. Smith
2019-07-30Fix typos in comments, docs and test names (#15018)Min ho Kim
2019-07-14bpo-37593: Swap the positions of posonlyargs and args in the constructor of a...Pablo Galindo
2019-07-08bpo-18374: fix wrong col_offset of some ast.BinOp instances (GH-14607)Carl Friedrich Bolz-Tereick
2019-06-18remove dead code (GH-14104)David Carlier
2019-06-13bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018)Victor Stinner
2019-06-03bpo-35814: Allow unpacking in r.h.s of annotated assignment expressions (GH-1...Pablo Galindo
2019-05-31bpo-37112: Allow compile to work on AST with positional only arguments with d...Pablo Galindo
2019-05-29bpo-37070: Cleanup fstring debug handling (GH-13607)Eric V. Smith
2019-05-28bpo-37072: Fix crash in PyAST_FromNodeObject() when flags is NULL (#13634)Guido van Rossum
2019-05-27bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node i...Eric V. Smith
2019-05-22bpo-36878: Track extra text added to 'type: ignore' in the AST (GH-13479)Michael J. Sullivan