aboutsummaryrefslogtreecommitdiff
path: root/Python/Python-ast.c
AgeCommit message (Expand)Author
2022-01-07bpo-46289: Make conversion of FormattedValue not optional on ASDL (GH-30467)Miss Islington (bot)
2021-06-03bpo-11105: Do not crash when compiling recursive ASTs (GH-20594)Miss Islington (bot)
2021-04-28bpo-43892: Make match patterns explicit in the AST (GH-25585)Nick Coghlan
2021-04-10bpo-43798: Add source location attributes to alias (GH-25324)Matthew Suozzo
2021-04-07bpo-43244: Rename pycore_ast.h functions to _PyAST_xxx() (GH-25252)Victor Stinner
2021-04-07bpo-43244: Remove Yield macro from pycore_ast.h (GH-25243)Victor Stinner
2021-03-24bpo-43244: Remove the pyarena.h header (GH-25007)Victor Stinner
2021-03-23bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933)Victor Stinner
2021-03-18bpo-43244: Fix test_peg_generator for PyAST_Validate() (GH-24912)Victor Stinner
2021-03-17bpo-43244: Rename pycore_ast.h to pycore_ast_state.h (GH-24907)Victor Stinner
2021-02-26bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)Brandt Bucher
2020-11-04bpo-1635741: _ast uses PyModule_AddObjectRef() (GH-23146)Victor Stinner
2020-11-03bpo-41796: Call _PyAST_Fini() earlier to fix a leak (GH-23131)Victor Stinner
2020-11-02bpo-41796: Make _ast module state per interpreter (GH-23024)Victor Stinner
2020-09-16bpo-41746: Add type information to asdl_seq objects (GH-22223)Pablo Galindo
2020-09-15bpo-41631: _ast module uses again a global state (#21961)Victor Stinner
2020-07-04bpo-41204: Fix compiler warning in ast_type_init() (GH-21307)Victor Stinner
2020-07-03bpo-41194: Convert _ast extension to PEP 489 (GH-21293)Victor Stinner
2020-07-03bpo-41194: The _ast module cannot be loaded more than once (GH-21290)Victor Stinner
2020-07-03bpo-41194: Pass module state in Python-ast.c (GH-21284)Victor Stinner
2020-05-27bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSp...Pablo Galindo
2020-05-24bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382)Rémi Lapeyre
2020-05-06bpo-40528: Improve and clear several aspects of the ASDL definition code for ...Batuhan Taskaya
2020-04-15bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner
2020-04-02bpo-40141: Add line and column information to ast.keyword nodes (GH-19283)Pablo Galindo
2020-03-22bpo-39999: Improve compatibility of the ast module. (GH-19056)Serhiy Storchaka
2020-03-17bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038)Serhiy Storchaka
2020-03-16bpo-39638: Keep ASDL signatures in the AST nodes (GH-18515)Batuhan Taşkaya
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-10bpo-36287: Make ast.dump() not output optional fields and attributes with def...Serhiy Storchaka
2020-03-04bpo-39639: Remove the AST "Suite" node and associated code (GH-18513)Batuhan Taşkaya
2020-02-06bpo-38823: Fix refleaks in _ast initialization error path (GH-17276)Brandt Bucher
2019-10-30closes bpo-38648: Remove double tp_free slot in Python-ast.c. (GH-17002)Max Bernstein
2019-10-10bpo-38425: Fix ‘res’ may be used uninitialized warning (GH-16688)Dong-hee Na
2019-09-19bpo-38140: Make dict and weakref offsets opaque for C heap types (#16076)Eddie Elizondo
2019-09-14Fix leaks in Python-ast.c (#16127)Eddie Elizondo
2019-09-11bpo-38113: Update the Python-ast.c generator to PEP384 (gh-15957)Dino Viehland
2019-09-10bpo-38083: Minor improvements in asdl_c.py and Python-ast.c. (GH-15824)Serhiy Storchaka
2019-07-14bpo-37593: Swap the positions of posonlyargs and args in the constructor of a...Pablo Galindo
2019-06-13bpo-37253: Remove PyAST_obj2mod_ex() function (GH-14020)Victor Stinner
2019-05-30bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer
2019-05-27bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node i...Eric V. Smith
2019-05-23bpo-36842: Implement PEP 578 (GH-12613)Steve Dower
2019-05-22bpo-36878: Track extra text added to 'type: ignore' in the AST (GH-13479)Michael J. Sullivan
2019-05-21bpo-34616: Add PyCF_ALLOW_TOP_LEVEL_AWAIT to allow top-level await (GH-13148)Matthias Bussonnier
2019-05-08bpo-36817: Add f-string debugging using '='. (GH-13123)Eric V. Smith
2019-04-29bpo-36540: PEP 570 -- Implementation (GH-12701)Pablo Galindo
2019-03-13bpo-36280: Add Constant.kind field (GH-12295)Guido van Rossum
2019-03-07bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086)Guido van Rossum