1. cf9a63c bpo-37593: Swap the positions of posonlyargs and args in the constructor of ast.parameters nodes (GH-14778) by Miss Islington (bot) · 5 years ago
  2. 6f6ff8a bpo-37050: Remove expr_text from FormattedValue ast node, use Constant node instead (GH-13597) by Eric V. Smith · 5 years ago
  3. 933e150 bpo-36878: Track extra text added to 'type: ignore' in the AST (GH-13479) by Michael J. Sullivan · 5 years ago
  4. 9a4135e bpo-36817: Add f-string debugging using '='. (GH-13123) by Eric V. Smith · 5 years ago
  5. 8c77b8c bpo-36540: PEP 570 -- Implementation (GH-12701) by Pablo Galindo · 5 years ago
  6. 10f8ce6 bpo-36280: Add Constant.kind field (GH-12295) by Guido van Rossum · 5 years ago
  7. d8b3a98 bpo-36187: Remove NamedStore. (GH-12167) by Serhiy Storchaka · 5 years ago
  8. dcfcd14 bpo-35766: Merge typed_ast back into CPython (GH-11645) by Guido van Rossum · 5 years ago
  9. 8f59ee0 bpo-35224: PEP 572 Implementation (#10497) by Emily Morehouse · 5 years ago
  10. 9932a22 bpo-33416: Add end positions to Python AST (GH-11605) by Ivan Levkivskyi · 5 years ago
  11. 3f22811 bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445) by Serhiy Storchaka · 6 years ago
  12. 73cbe7a bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197) by Serhiy Storchaka · 6 years ago
  13. cb41b27 bpo-29463: Add docstring field to some AST nodes. (#46) by INADA Naoki · 7 years ago
  14. 52c4e7c Issue #28008: Implement PEP 530 -- asynchronous comprehensions. by Yury Selivanov · 8 years ago
  15. f8cb8a1 Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations. by Yury Selivanov · 8 years ago
  16. f2c1aa1 Add ast.Constant by Victor Stinner · 8 years ago
  17. 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
  18. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  19. 025e9eb PEP 448: additional unpacking generalizations (closes #2292) by Benjamin Peterson · 9 years ago
  20. 45ec328 Removed trailing whitespaces in miscalenous files. by Serhiy Storchaka · 9 years ago
  21. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  22. cda75be unify some ast.argument's attrs; change Attribute column offset (closes #16795) by Benjamin Peterson · 11 years ago
  23. 442f209 create NameConstant AST class for None, True, and False literals (closes #16619) by Benjamin Peterson · 12 years ago
  24. ded35ae Issue #16546: make ast.YieldFrom argument mandatory. by Mark Dickinson · 12 years ago
  25. 8d5a62d murder tabs by Benjamin Peterson · 13 years ago
  26. 527c622 make YieldFrom its own distinct from Yield (closes #13780) by Benjamin Peterson · 13 years ago
  27. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
  28. e249841 add a asdl bytes type, so Bytes.s be properly typechecked by Benjamin Peterson · 13 years ago
  29. 620b2c8 comment which is not applicable anymore by Benjamin Peterson · 13 years ago
  30. 43af12b unify TryExcept and TryFinally (closes #12199) by Benjamin Peterson · 13 years ago
  31. bf1bbc1 reflect with statements with multiple items in the AST (closes #12106) by Benjamin Peterson · 13 years ago
  32. 6cb2b92 convert ast versioning to mercurial by Benjamin Peterson · 13 years ago
  33. 60995fb Merged revisions 82160 via svnmerge from by Benjamin Peterson · 14 years ago
  34. 78565b2 Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,73457,73460,73485-73486,73488-73489,73501-73502,73513-73514 via svnmerge from by Benjamin Peterson · 15 years ago
  35. e84f03f there are only four asdl builtin types in py3k by Benjamin Peterson · 16 years ago
  36. ad74aa8 Merged revisions 62047 via svnmerge from by Neal Norwitz · 16 years ago
  37. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
  38. 992d4a3 Merged revisions 56154-56264 via svnmerge from by Guido van Rossum · 17 years ago
  39. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  40. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  41. 0368b72 Merged revisions 55225-55227,55229-55269 via svnmerge from by Guido van Rossum · 17 years ago
  42. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  43. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 17 years ago
  44. 81e9502 Provisional implementation of PEP 3104. by Jeremy Hylton · 17 years ago
  45. 3591bbe bool is no longer required, it was only used for the print statement by Neal Norwitz · 17 years ago
  46. 8b4a3e8 Touch file to regenerate Python-ast.[ch] by Thomas Wouters · 17 years ago
  47. 00e41de Bytes literal. by Thomas Wouters · 17 years ago
  48. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  49. 88fc664 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. by Georg Brandl · 17 years ago
  50. 16be03e Some more changes related to the new except syntax and semantics, by Guido van Rossum · 18 years ago
  51. c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 18 years ago
  52. 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 18 years ago
  53. 52318d6 Patch #1550786: ellipsis literal. by Georg Brandl · 18 years ago
  54. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  55. 86e58e2 SF patch 1547796 by Georg Brandl -- set literals. by Guido van Rossum · 18 years ago
  56. e2e23ef Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the by Brett Cannon · 18 years ago
  57. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  58. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 18 years ago
  59. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 18 years ago
  60. eae93b7 Add support for version field on Modules by Martin v. Löwis · 18 years ago
  61. c2e2074 PEP 343 -- the with-statement. by Guido van Rossum · 18 years ago
  62. dca3b9c PEP 308 implementation, including minor refdocs and some testcases. It by Thomas Wouters · 18 years ago
  63. c960f26 Improved handling of syntax errors. by Jeremy Hylton · 18 years ago
  64. 19b0f40 Thou shalt not lie, there are really 5 types now by Neal Norwitz · 19 years ago
  65. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago