1. 1e7b858 bpo-43892: Make match patterns explicit in the AST (GH-25585) by Nick Coghlan · 4 years, 3 months ago
  2. face87c bpo-42609: Check recursion depth in the AST validator and optimizer (GH-23744) by Serhiy Storchaka · 4 years, 3 months ago
  3. 94faa07 bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933) by Victor Stinner · 4 years, 5 months ago
  4. eec8e61 bpo-43244: Remove the PyAST_Validate() function (GH-24911) by Victor Stinner · 4 years, 5 months ago
  5. 145bf26 bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917) by Brandt Bucher · 4 years, 5 months ago
  6. 02a1603 bpo-42000: Cleanup the AST related C-code (GH-22641) by Batuhan Taskaya · 4 years, 10 months ago
  7. a5634c4 bpo-41746: Add type information to asdl_seq objects (GH-22223) by Pablo Galindo · 4 years, 11 months ago
  8. 314858e bpo-40939: Remove the old parser (Part 2) (GH-21005) by Lysandros Nikolaou · 5 years ago
  9. 1ed83ad bpo-40939: Remove the old parser (GH-20768) by Pablo Galindo · 5 years ago
  10. 68874a8 bpo-40870: Invalidate usage of some constants with ast.Name (GH-20649) by Batuhan Taskaya · 5 years ago
  11. c116c94 bpo-40614: Respect feature version for f-string debug expressions (GH-20196) by Shantanu · 5 years ago
  12. 16ab070 bpo-40334: Correctly identify invalid target in assignment errors (GH-20076) by Pablo Galindo · 5 years ago
  13. cd8295f bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345) by Serhiy Storchaka · 5 years ago
  14. 40cf35c bpo-40141: Include the value in the column position for keyword AST nodes (GH-19348) by Pablo Galindo · 5 years ago
  15. 254ec78 bpo-40147: Move the check for duplicate keywords to the compiler (GH-19289) by Pablo Galindo · 5 years ago
  16. 168660b bpo-40141: Add line and column information to ast.keyword nodes (GH-19283) by Pablo Galindo · 5 years ago
  17. 87d3b9d bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157) by Victor Stinner · 5 years ago
  18. 0ac59f9 bpo-40000: Improve error messages when validating invalid ast.Constant nodes (GH-19055) by Batuhan Taşkaya · 5 years ago
  19. 6b97598 bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038) by Serhiy Storchaka · 5 years ago
  20. 8689209 bpo-39969: Remove ast.Param node class as is no longer used (GH-19020) by Batuhan Taşkaya · 5 years ago
  21. 13d52c2 bpo-34822: Simplify AST for subscription. (GH-9605) by Serhiy Storchaka · 5 years ago
  22. d82e469 bpo-39639: Remove the AST "Suite" node and associated code (GH-18513) by Batuhan Taşkaya · 5 years ago
  23. be501ca bpo-39702: Relax grammar restrictions on decorators (PEP 614) (GH-18570) by Brandt Bucher · 5 years ago
  24. 6e619c4 bpo-39474: Fix AST pos for expressions like (a)(b), (a)[b] and (a).b. (GH-18477) by Serhiy Storchaka · 5 years ago
  25. d2e1098 bpo-39579: Fix Attribute end_col_offset to point at the current node (GH-18405) by Lysandros Nikolaou · 5 years ago
  26. a796d8e bpo-39235: Fix end location for genexp in call args (GH-17925) by Guido van Rossum · 6 years ago
  27. 37143a8 bpo-39176: Improve error message for 'named assignment' (GH-17777) by Ned Batchelder · 6 years ago
  28. 50d4f12 bpo-39080: Starred Expression's column offset fix when inside a CALL (GH-17645) by Lysandros Nikolaou · 6 years ago
  29. b08d3f7 The comment in ast_for_namedexpr shouldn't include if_stmt (GH-17586) by Guido van Rossum · 6 years ago
  30. 5936a4c Fix elif start column offset when there is an else following (GH-17596) by Lysandros Nikolaou · 6 years ago
  31. 025a602 bpo-39031: Include elif keyword when producing lineno/col-offset info for if_stmt (GH-17582) by Lysandros Nikolaou · 6 years ago
  32. 26ae9f6 bpo-38535: Fix positions for AST nodes for calls without arguments in decorators. (GH-16861) by Serhiy Storchaka · 6 years ago
  33. 3a4f667 Cut disused recode_encoding logic in _PyBytes_DecodeEscape. (GH-16013) by Greg Price · 6 years ago
  34. 8d88e8c bpo-38138: Fix memory leak introduced by interned strings (GH-16053) by Dino Viehland · 6 years ago
  35. 5b172c2 bpo-38113: Update Python/ast.c to PEP-384 (GH-15975) by Dino Viehland · 6 years ago
  36. 39d87b5 Fix typos mostly in comments, docs and test names (GH-15209) by Min ho Kim · 6 years ago
  37. b4be87a bpo-32912: Revert SyntaxWarning on invalid escape sequences. (GH-15195) by Gregory P. Smith · 6 years ago
  38. c4cacc8 Fix typos in comments, docs and test names (#15018) by Min ho Kim · 6 years ago
  39. cd6e83b bpo-37593: Swap the positions of posonlyargs and args in the constructor of ast.parameters nodes (GH-14778) by Pablo Galindo · 6 years ago
  40. 110a47c bpo-18374: fix wrong col_offset of some ast.BinOp instances (GH-14607) by Carl Friedrich Bolz-Tereick · 6 years ago
  41. 9bbece9 remove dead code (GH-14104) by David Carlier · 6 years ago
  42. 37d66d7 bpo-37253: Add _PyCompilerFlags_INIT macro (GH-14018) by Victor Stinner · 6 years ago
  43. 8565f6b bpo-35814: Allow unpacking in r.h.s of annotated assignment expressions (GH-13760) by Pablo Galindo · 6 years ago
  44. 2f58a84 bpo-37112: Allow compile to work on AST with positional only arguments with defaults (GH-13697) by Pablo Galindo · 6 years ago
  45. f83d1db bpo-37070: Cleanup fstring debug handling (GH-13607) by Eric V. Smith · 6 years ago
  46. 77f0ed7 bpo-37072: Fix crash in PyAST_FromNodeObject() when flags is NULL (#13634) by Guido van Rossum · 6 years ago
  47. 6f6ff8a bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node instead (GH-13597) by Eric V. Smith · 6 years ago
  48. 933e150 bpo-36878: Track extra text added to 'type: ignore' in the AST (GH-13479) by Michael J. Sullivan · 6 years ago
  49. 27ee0f8 Fix couple of dead code paths (GH-7418) by David Carlier · 6 years ago
  50. 26f55c2 bpo-36817: Do not decrement reference for expr_text on fstring = parsing failure (GH-13256) by Pablo Galindo · 6 years ago
  51. 5833e94 bpo-36817: Fix reference leak for expr_text in f-string = parsing (GH-13249) by Pablo Galindo · 6 years ago
  52. 9a4135e bpo-36817: Add f-string debugging using '='. (GH-13123) by Eric V. Smith · 6 years ago
  53. 8c77b8c bpo-36540: PEP 570 -- Implementation (GH-12701) by Pablo Galindo · 6 years ago
  54. a4d7836 bpo-36495: Fix two out-of-bounds array reads (GH-12641) by Brad Larsen · 6 years ago
  55. 0c9258a bpo-36332: Allow compile() to handle AST objects with assignment expressions (GH-12398) by Pablo Galindo · 6 years ago
  56. 10f8ce6 bpo-36280: Add Constant.kind field (GH-12295) by Guido van Rossum · 6 years ago
  57. 495da29 bpo-35975: Support parsing earlier minor versions of Python 3 (GH-12086) by Guido van Rossum · 6 years ago
  58. d8b3a98 bpo-36187: Remove NamedStore. (GH-12167) by Serhiy Storchaka · 6 years ago
  59. 3ad9167 bpo-36052: Raise a SyntaxError when assigning a value to __debug__ with := (GH-11958) by Stéphane Wirtel · 6 years ago
  60. 46a9792 bpo-36049: Fix compiler warning in Python/ast.c (GH-11949) by Pablo Galindo · 6 years ago
  61. 4b250fc bpo-35766 follow-up: Add an error check to new_type_comment() (#11766) by Guido van Rossum · 6 years ago
  62. 164686f Fix compiler warning about non initialised variable (GH-11806) by Pablo Galindo · 6 years ago
  63. 181835d Fix compiler warnings about end_col_offset and end_lineno (GH-11735) by Ivan Levkivskyi · 6 years ago
  64. d2b4c19 bpo-35879: Fix type comment leaks (GH-11728) by Guido van Rossum · 7 years ago
  65. dcfcd14 bpo-35766: Merge typed_ast back into CPython (GH-11645) by Guido van Rossum · 7 years ago
  66. 62c35a8 bpo-35814: Allow same r.h.s. in annotated assignments as in normal ones (GH-11667) by Ivan Levkivskyi · 7 years ago
  67. 8f59ee0 bpo-35224: PEP 572 Implementation (#10497) by Emily Morehouse · 7 years ago
  68. 9932a22 bpo-33416: Add end positions to Python AST (GH-11605) by Ivan Levkivskyi · 7 years ago
  69. 995d9b9 bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021) by Anthony Sottile · 7 years ago
  70. 58159ef bpo-35494: Improve syntax error messages for unbalanced parentheses in f-string. (GH-11161) by Serhiy Storchaka · 7 years ago
  71. 4c49da0 bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-11015) by Zackery Spytz · 7 years ago
  72. b619b09 bpo-31241: Fix AST node position for list and generator comprehensions. (GH-10633) by Serhiy Storchaka · 7 years ago
  73. 4d73ae7 bpo-18407: ast.c uses Py_ssize_t for asdl_seq_LEN() iterator (GH-10655) by Victor Stinner · 7 years ago
  74. 97f1efb bpo-35169: Improve error messages for forbidden assignments. (GH-10342) by Serhiy Storchaka · 7 years ago
  75. 95b6acf bpo-34876: Change the lineno of the AST for decorated function and class. (GH-9731) by Serhiy Storchaka · 7 years ago
  76. 6543912 bpo-32912: Replace a DeprecationWarning with a SyntaxWarning (GH-9652) by Serhiy Storchaka · 7 years ago
  77. 3f22811 bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445) by Serhiy Storchaka · 7 years ago
  78. 025eb98 bpo-34683: Make SyntaxError column offsets consistently 1-indexed (gh-9338) by Ammar Askar · 7 years ago
  79. c9a71dd closes bpo-34641: Further restrict the LHS of keyword argument function call syntax. (GH-9212) by Benjamin Peterson · 7 years ago
  80. d13e59c Make sure the line comes from the same node as the col offset. (GH-9189) by Benjamin Peterson · 7 years ago
  81. 90fc898 closes bpo-31902: Fix the col_offset attribute for ast.Async* nodes to point to the "async" keyword. (GH-4175) by guoci · 7 years ago
  82. 28853a2 bpo-34457: Python/ast.c: Add missing NULL check to alias_for_import_name(). (GH-8852) by Alexey Izbyshev · 7 years ago
  83. 143ce5c bpo-33691: Add _PyAST_GetDocString(). (GH-7236) by Serhiy Storchaka · 7 years ago
  84. 73cbe7a bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197) by Serhiy Storchaka · 7 years ago
  85. 898ff92 fix error message in ast.c (#6776) by Jelle Zijlstra · 7 years ago
  86. fb7e799 bpo-30465: Fix C downcast warning on Windows in ast.c (#6593) by Victor Stinner · 7 years ago
  87. a561862 Don't hide unexpected errors in PyErr_WarnExplicitObject(). (#4585) by Serhiy Storchaka · 8 years ago
  88. ddbce13 bpo-32023: Disallow genexprs without parenthesis in class definitions. (#4400) by Serhiy Storchaka · 8 years ago
  89. 9165f77 bpo-32012: Disallow trailing comma after genexpr without parenthesis. (#4382) by Serhiy Storchaka · 8 years ago
  90. a5293b4 Fix miscellaneous typos (#4275) by luzpaz · 8 years ago
  91. 56cb465 bpo-31825: Fixed OverflowError in the 'unicode-escape' codec (#4058) by Serhiy Storchaka · 8 years ago
  92. ac31770 bpo-30406: Make async and await proper keywords (#1669) by Jelle Zijlstra · 8 years ago
  93. 7dc46d8 bpo-31592: Fix an assertion failure in Python parser in case of a bad unicodedata.normalize(). (#3767) by Oren Milman · 8 years ago
  94. b2e5794 bpo-31338 (#3374) by Barry Warsaw · 8 years ago
  95. e7c566c bpo-30465: Fix lineno and col_offset in fstring AST nodes (#1800) by Łukasz Langa · 8 years ago
  96. f432a32 bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (#3157) by Stefan Krah · 8 years ago
  97. 11e97f2 bpo-30682: Removed a too-strict assertion that failed for certain f-strings. (#2232) by ericvsmith · 8 years ago
  98. 2e9cd58 bpo-30529: Fix errors for invalid whitespaces in f-string subexpressions. (#1888) by Serhiy Storchaka · 8 years ago
  99. 0cd7a3f bpo-29104: Fixed parsing backslashes in f-strings. (#490) by Serhiy Storchaka · 8 years ago
  100. fff9a31 bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. (#748) by Serhiy Storchaka · 8 years ago