1. 18ce7f1 bpo-1635741: _ast uses PyModule_AddObjectRef() (GH-23146) by Victor Stinner · 3 years, 9 months ago
  2. fd957c1 bpo-41796: Call _PyAST_Fini() earlier to fix a leak (GH-23131) by Victor Stinner · 3 years, 9 months ago
  3. 5cf4782 bpo-41796: Make _ast module state per interpreter (GH-23024) by Victor Stinner · 3 years, 9 months ago
  4. a5634c4 bpo-41746: Add type information to asdl_seq objects (GH-22223) by Pablo Galindo · 3 years, 11 months ago
  5. e5fbe0c bpo-41631: _ast module uses again a global state (#21961) by Victor Stinner · 4 years ago
  6. 1f76453 bpo-41204: Fix compiler warning in ast_type_init() (GH-21307) by Victor Stinner · 4 years, 1 month ago
  7. b1cc6ba bpo-41194: Convert _ast extension to PEP 489 (GH-21293) by Victor Stinner · 4 years, 1 month ago
  8. 91e1bc1 bpo-41194: The _ast module cannot be loaded more than once (GH-21290) by Victor Stinner · 4 years, 1 month ago
  9. 74419f0 bpo-41194: Pass module state in Python-ast.c (GH-21284) by Victor Stinner · 4 years, 1 month ago
  10. 1cf15af bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSpec types (reverts GH-19414) (GH-20264) by Pablo Galindo · 4 years, 3 months ago
  11. c73914a bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382) by Rémi Lapeyre · 4 years, 3 months ago
  12. 091951a bpo-40528: Improve and clear several aspects of the ASDL definition code for the AST (GH-19952) by Batuhan Taskaya · 4 years, 3 months ago
  13. 4a21e57 bpo-40268: Remove unused structmember.h includes (GH-19530) by Victor Stinner · 4 years, 4 months ago
  14. 168660b bpo-40141: Add line and column information to ast.keyword nodes (GH-19283) by Pablo Galindo · 4 years, 4 months ago
  15. bace59d bpo-39999: Improve compatibility of the ast module. (GH-19056) by Serhiy Storchaka · 4 years, 5 months ago
  16. 6b97598 bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038) by Serhiy Storchaka · 4 years, 5 months ago
  17. 4ab362c bpo-39638: Keep ASDL signatures in the AST nodes (GH-18515) by Batuhan Taşkaya · 4 years, 5 months ago
  18. 8689209 bpo-39969: Remove ast.Param node class as is no longer used (GH-19020) by Batuhan Taşkaya · 4 years, 5 months ago
  19. 13d52c2 bpo-34822: Simplify AST for subscription. (GH-9605) by Serhiy Storchaka · 4 years, 5 months ago
  20. b7e9525 bpo-36287: Make ast.dump() not output optional fields and attributes with default values. (GH-18843) by Serhiy Storchaka · 4 years, 5 months ago
  21. d82e469 bpo-39639: Remove the AST "Suite" node and associated code (GH-18513) by Batuhan Taşkaya · 4 years, 5 months ago
  22. d2f9667 bpo-38823: Fix refleaks in _ast initialization error path (GH-17276) by Brandt Bucher · 4 years, 6 months ago
  23. bdac32e closes bpo-38648: Remove double tp_free slot in Python-ast.c. (GH-17002) by Max Bernstein · 4 years, 10 months ago
  24. a05fcd3 bpo-38425: Fix ‘res’ may be used uninitialized warning (GH-16688) by Dong-hee Na · 4 years, 10 months ago
  25. 3368f3c bpo-38140: Make dict and weakref offsets opaque for C heap types (#16076) by Eddie Elizondo · 5 years ago
  26. 0247e80 Fix leaks in Python-ast.c (#16127) by Eddie Elizondo · 5 years ago
  27. ac46eb4 bpo-38113: Update the Python-ast.c generator to PEP384 (gh-15957) by Dino Viehland · 5 years ago
  28. 43c9731 bpo-38083: Minor improvements in asdl_c.py and Python-ast.c. (GH-15824) by Serhiy Storchaka · 5 years ago
  29. cd6e83b bpo-37593: Swap the positions of posonlyargs and args in the constructor of ast.parameters nodes (GH-14778) by Pablo Galindo · 5 years ago
  30. 022ac0a bpo-37253: Remove PyAST_obj2mod_ex() function (GH-14020) by Victor Stinner · 5 years ago
  31. 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 5 years ago
  32. 6f6ff8a bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node instead (GH-13597) by Eric V. Smith · 5 years ago
  33. b82e17e bpo-36842: Implement PEP 578 (GH-12613) by Steve Dower · 5 years ago
  34. 933e150 bpo-36878: Track extra text added to 'type: ignore' in the AST (GH-13479) by Michael J. Sullivan · 5 years ago
  35. 565b4f1 bpo-34616: Add PyCF_ALLOW_TOP_LEVEL_AWAIT to allow top-level await (GH-13148) by Matthias Bussonnier · 5 years ago
  36. 9a4135e bpo-36817: Add f-string debugging using '='. (GH-13123) by Eric V. Smith · 5 years ago
  37. 8c77b8c bpo-36540: PEP 570 -- Implementation (GH-12701) by Pablo Galindo · 5 years ago
  38. 10f8ce6 bpo-36280: Add Constant.kind field (GH-12295) by Guido van Rossum · 5 years ago
  39. 495da29 bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086) by Guido van Rossum · 5 years ago
  40. d8b3a98 bpo-36187: Remove NamedStore. (GH-12167) by Serhiy Storchaka · 5 years ago
  41. 3a32e3b bpo-35766 follow-up: Kill half-support for FunctionType in PyAST_obj2mod (#11714) by Guido van Rossum · 6 years ago
  42. dcfcd14 bpo-35766: Merge typed_ast back into CPython (GH-11645) by Guido van Rossum · 6 years ago
  43. 8f59ee0 bpo-35224: PEP 572 Implementation (#10497) by Emily Morehouse · 6 years ago
  44. 9932a22 bpo-33416: Add end positions to Python AST (GH-11605) by Ivan Levkivskyi · 6 years ago
  45. 3f22811 bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445) by Serhiy Storchaka · 6 years ago
  46. a5c4228 bpo-33677: Fix signatures of tp_clear handlers for AST and deque. (GH-7196) by Serhiy Storchaka · 6 years ago
  47. 73cbe7a bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197) by Serhiy Storchaka · 6 years ago
  48. f320be7 bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222) by Serhiy Storchaka · 7 years ago
  49. bba2239 bpo-31572: Get rid of _PyObject_HasAttrId() in the ASDL parser. (#3725) by Serhiy Storchaka · 7 years ago
  50. a6296d3 bpo-31095: fix potential crash during GC (GH-2974) by INADA Naoki · 7 years ago
  51. 2af565b Fix a shadow-compatible-local warning (#2180) by Yuan Chao Chou · 7 years ago
  52. 4c78c52 bpo-29622: Make AST constructor to accept less than enough number of positional arguments (GH-249) by INADA Naoki · 7 years ago
  53. cb41b27 bpo-29463: Add docstring field to some AST nodes. (#46) by INADA Naoki · 7 years ago
  54. fc48908 Issue #29369: Use Py_IDENTIFIER in Python-ast.c by INADA Naoki · 8 years ago
  55. 228b12e Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 8 years ago
  56. 5e80855 Issue #24098: Fixed possible crash when AST is changed in process of by Serhiy Storchaka · 8 years ago
  57. cf38060 Issue #24098: Fixed possible crash when AST is changed in process of by Serhiy Storchaka · 8 years ago
  58. 52c4e7c Issue #28008: Implement PEP 530 -- asynchronous comprehensions. by Yury Selivanov · 8 years ago
  59. f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 8 years ago
  60. 25219f5 Issue #26146: remove useless code by Victor Stinner · 9 years ago
  61. f2c1aa1 Add ast.Constant by Victor Stinner · 9 years ago
  62. c106c68 Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when by Victor Stinner · 9 years ago
  63. 235a6f0 Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation is still needed, I'll open an issue for that. by Eric V. Smith · 9 years ago
  64. 56f6e76 Issue #15989: Fixed some scarcely probable integer overflows. by Serhiy Storchaka · 9 years ago
  65. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  66. 025e9eb PEP 448: additional unpacking generalizations (closes #2292) by Benjamin Peterson · 9 years ago
  67. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  68. 42ec031 merge 3.3 (#20588) by Benjamin Peterson · 11 years ago
  69. c2f665e don't put runtime values in array initializer for C89 compliance (closes #20588) by Benjamin Peterson · 11 years ago
  70. d01d396e Issue #4555: All exported C symbols are now prefixed with either "Py" or "_Py". by Antoine Pitrou · 11 years ago
  71. b7f1b38 Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object(). by Christian Heimes · 11 years ago
  72. 70c94e7 Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object(). by Christian Heimes · 11 years ago
  73. b318990 (Merge 3.3) Parser/asdl_c.py: use Py_CLEAR() by Victor Stinner · 11 years ago
  74. 1acc129 Parser/asdl_c.py: use Py_CLEAR() by Victor Stinner · 11 years ago
  75. ee4b59c (Merge 3.3) According to the PEP 7, C code must "use 4-space indents" by Victor Stinner · 11 years ago
  76. ce72e1c According to the PEP 7, C code must "use 4-space indents" by Victor Stinner · 11 years ago
  77. bdf630c Issue #18408: Fix Python-ast.c: handle init_types() failure (ex: MemoryError) by Victor Stinner · 11 years ago
  78. 74ca886 Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant() by Charles-Francois Natali · 11 years ago
  79. 3a61943 bump Python-ast.c by Benjamin Peterson · 11 years ago
  80. b72406b refactor to fix refleaks by Benjamin Peterson · 11 years ago
  81. cda75be unify some ast.argument's attrs; change Attribute column offset (closes #16795) by Benjamin Peterson · 11 years ago
  82. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 12 years ago
  83. 442f209 create NameConstant AST class for None, True, and False literals (closes #16619) by Benjamin Peterson · 12 years ago
  84. ded35ae Issue #16546: make ast.YieldFrom argument mandatory. by Mark Dickinson · 12 years ago
  85. 8107176 add gc support to the AST base type (closes #15293) by Benjamin Peterson · 12 years ago
  86. 5075074 Issue #15291: Fix a memory leak where AST nodes where not properly deallocated. by Antoine Pitrou · 12 years ago
  87. 77fa937 use Py_ssize_t for ast sequence lengths by Benjamin Peterson · 12 years ago
  88. 41829e8 Document f4d7ad6c9d6e. by Martin v. Löwis · 12 years ago
  89. cc10a37 Widen ASDL sequences to Py_ssize_t lengths to better match PEP 353. by Martin v. Löwis · 12 years ago
  90. 1767e02 free AST's dict by Benjamin Peterson · 12 years ago
  91. 45e50de Try to fix compilation of Python-ast.c on Visual Studio 2008 by Victor Stinner · 12 years ago
  92. 7e0dbfb give the AST class a __dict__ by Benjamin Peterson · 12 years ago
  93. 527c622 make YieldFrom its own distinct from Yield (closes #13780) by Benjamin Peterson · 13 years ago
  94. 5136ac0 Issue #13645: pyc files now contain the size of the corresponding source by Antoine Pitrou · 13 years ago
  95. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
  96. 942d5ba Merge branch 3.2 by Amaury Forgeot d'Arc · 13 years ago
  97. 5e8f810 Issue #13436: commit regenerated Python-ast.c by Amaury Forgeot d'Arc · 13 years ago
  98. f9827ea Issue #25555: Fix parser and AST: fill lineno and col_offset of "arg" node when by Victor Stinner · 9 years ago
  99. 1c67dd9 Port SetAttrString/HasAttrString to SetAttrId/GetAttrId. by Martin v. Löwis · 13 years ago
  100. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago