1. 097eae5 [3.8] bpo-37950: Fix ast.dump() when call with incompletely initialized node. (GH-15510) (GH-15582) by Serhiy Storchaka · 5 years ago
  2. 522a394 [3.8] bpo-36917: Add default implementation of ast.NodeVisitor.visit_Constant(). (GH-15490) (GH-15509) by Miss Islington (bot) · 5 years ago
  3. 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
  4. 68bd9c5 bpo-18374: fix tests to check the correct thing about line numbers (GH-14659) (GH-14672) by Miss Islington (bot) · 5 years ago
  5. c7be35c bpo-18374: fix wrong col_offset of some ast.BinOp instances (GH-14607) by Miss Islington (bot) · 5 years ago
  6. 2f58a84 bpo-37112: Allow compile to work on AST with positional only arguments with defaults (GH-13697) by Pablo Galindo · 5 years ago
  7. 8c77b8c bpo-36540: PEP 570 -- Implementation (GH-12701) by Pablo Galindo · 5 years ago
  8. 0c9258a bpo-36332: Allow compile() to handle AST objects with assignment expressions (GH-12398) by Pablo Galindo · 5 years ago
  9. 10f8ce6 bpo-36280: Add Constant.kind field (GH-12295) by Guido van Rossum · 5 years ago
  10. dcfcd14 bpo-35766: Merge typed_ast back into CPython (GH-11645) by Guido van Rossum · 5 years ago
  11. 9932a22 bpo-33416: Add end positions to Python AST (GH-11605) by Ivan Levkivskyi · 5 years ago
  12. 7417622 bpo-35733: Make isinstance(ast.Constant(boolean), ast.Num) be false. (GH-11547) by Anthony Sottile · 6 years ago
  13. 3bcbedc bpo-34850: Emit a warning for "is" and "is not" with a literal. (GH-9642) by Serhiy Storchaka · 6 years ago
  14. 995d9b9 bpo-16806: Fix `lineno` and `col_offset` for multi-line string tokens (GH-10021) by Anthony Sottile · 6 years ago
  15. b619b09 bpo-31241: Fix AST node position for list and generator comprehensions. (GH-10633) by Serhiy Storchaka · 6 years ago
  16. 95b6acf bpo-34876: Change the lineno of the AST for decorated function and class. (GH-9731) by Serhiy Storchaka · 6 years ago
  17. 6015cc5 bpo-32892: Support subclasses of base types in isinstance checks for AST constants. (GH-9934) by Serhiy Storchaka · 6 years ago
  18. 3f22811 bpo-32892: Use ast.Constant instead of specific constant AST types. (GH-9445) by Serhiy Storchaka · 6 years ago
  19. 90fc898 closes bpo-31902: Fix the col_offset attribute for ast.Async* nodes to point to the "async" keyword. (GH-4175) by guoci · 6 years ago
  20. 08f127a bpo-33851: Fix ast.get_docstring() for a node that lacks a docstring. (GH-7682) by Serhiy Storchaka · 6 years ago
  21. 73cbe7a bpo-32911: Revert bpo-29463. (GH-7121) (GH-7197) by Serhiy Storchaka · 6 years ago
  22. d8ac4d1 bpo-31778: Make ast.literal_eval() more strict. (#4035) by Serhiy Storchaka · 7 years ago
  23. 7dc46d8 bpo-31592: Fix an assertion failure in Python parser in case of a bad unicodedata.normalize(). (#3767) by Oren Milman · 7 years ago
  24. 41cea70 bpo-29637: clean docstring only if not None (GH-267) by Matthias Bussonnier · 7 years ago
  25. 4c78c52 bpo-29622: Make AST constructor to accept less than enough number of positional arguments (GH-249) by INADA Naoki · 7 years ago
  26. cb41b27 bpo-29463: Add docstring field to some AST nodes. (#46) by INADA Naoki · 7 years ago
  27. 52c4e7c Issue #28008: Implement PEP 530 -- asynchronous comprehensions. by Yury Selivanov · 8 years ago
  28. 7de2840 Issue #27352: Fixed an error message in a test. by Serhiy Storchaka · 8 years ago
  29. 0a5bd51 Issue #13436: Add a test to make sure that ast.ImportFrom(level=None) works by Berker Peksag · 8 years ago
  30. 15a3095 compiler: don't emit SyntaxWarning on const stmt by Victor Stinner · 8 years ago
  31. a272409 compiler now ignores constant statements by Victor Stinner · 8 years ago
  32. f089196 Simplify main() of test_ast by Victor Stinner · 8 years ago
  33. be59d14 Issue #26146: enhance ast.Constant error message by Victor Stinner · 8 years ago
  34. f2c1aa1 Add ast.Constant by Victor Stinner · 8 years ago
  35. 58b5395 make opening brace of container literals and comprehensions correspond to the line number and col offset of the AST node (closes #25131) by Benjamin Peterson · 9 years ago
  36. b3d5313 Issue #24975: Fix AST compilation for PEP 448 syntax. by Yury Selivanov · 9 years ago
  37. 2f07a66 Issue #24688: ast.get_docstring() for 'async def' functions. by Yury Selivanov · 9 years ago
  38. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  39. 025e9eb PEP 448: additional unpacking generalizations (closes #2292) by Benjamin Peterson · 9 years ago
  40. 7a66fc2 revert lineno and col_offset changes from #16795 (closes #21295) by Benjamin Peterson · 9 years ago
  41. e84fde9 set line and column numbers for keyword-only arg nodes (closes #20619) by Benjamin Peterson · 10 years ago
  42. a7e7497 #18466: merge with 3.3. by Ezio Melotti · 11 years ago
  43. 85a8629 #18466: fix more typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  44. 3e9a9ae Update various test modules to use unittest.main() for test discovery by Brett Cannon · 11 years ago
  45. d502a07 test_ast: pass the filename to ast.parse() by Victor Stinner · 11 years ago
  46. cda75be unify some ast.argument's attrs; change Attribute column offset (closes #16795) by Benjamin Peterson · 11 years ago
  47. 442f209 create NameConstant AST class for None, True, and False literals (closes #16619) by Benjamin Peterson · 12 years ago
  48. ded35ae Issue #16546: make ast.YieldFrom argument mandatory. by Mark Dickinson · 12 years ago
  49. bd0df50 get rid of ast_error_finish by passing the compiling struct to ast_error by Benjamin Peterson · 12 years ago
  50. c7f447c merge 3.2 (#15846) by Benjamin Peterson · 12 years ago
  51. 2e2c903 prevert ast errors from being normalized before ast_error_finish is called (closes #15846) by Benjamin Peterson · 12 years ago
  52. 9ed3743 test AST base type garbage collection by Benjamin Peterson · 12 years ago
  53. 98ba753 merge 3.2 (#14378) by Benjamin Peterson · 12 years ago
  54. a4e4e35 check by equality for __future__ not identity (closes #14378) by Benjamin Peterson · 12 years ago
  55. 7e0dbfb give the AST class a __dict__ by Benjamin Peterson · 12 years ago
  56. 61a4161 merge 3.2 by Benjamin Peterson · 12 years ago
  57. ef87f06 allow AST objects to be like its subclasses by Benjamin Peterson · 12 years ago
  58. 09b4bd0 merge 3.2 by Benjamin Peterson · 12 years ago
  59. d279e28 every other ast object has a dict, so I think AST should, too by Benjamin Peterson · 12 years ago
  60. 527c622 make YieldFrom its own distinct from Yield (closes #13780) by Benjamin Peterson · 13 years ago
  61. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
  62. 942d5ba Merge branch 3.2 by Amaury Forgeot d'Arc · 13 years ago
  63. 58e8761 Issue #13436: Fix a bogus error message when an AST object was passed by Amaury Forgeot d'Arc · 13 years ago
  64. e41f0de Merge 3.2, fix typos. by Florent Xicluna · 13 years ago
  65. 992d9e0 Fix few typos. by Florent Xicluna · 13 years ago
  66. 71ce897 fix indentation by Benjamin Peterson · 13 years ago
  67. 832bfe2 add a AST validator (closes #12575) by Benjamin Peterson · 13 years ago
  68. 86f088e merge 3.2 by Benjamin Peterson · 13 years ago
  69. 2193d2b type check AST strings and identifiers by Benjamin Peterson · 13 years ago
  70. b37db00 merge 3.2 by Benjamin Peterson · 13 years ago
  71. 68b543a fix ws by Benjamin Peterson · 13 years ago
  72. 9df8874 merge 3.2 (#11302) by Benjamin Peterson · 13 years ago
  73. 6ccfe85 add more ast tests (closes #11302) by Benjamin Peterson · 13 years ago
  74. 43af12b unify TryExcept and TryFinally (closes #12199) by Benjamin Peterson · 13 years ago
  75. aeabd5f add some with syntax examples by Benjamin Peterson · 13 years ago
  76. efb6902 Add missing line. by Georg Brandl · 14 years ago
  77. 619e7ba #10869: do not visit root node twice in ast.increment_lineno(). by Georg Brandl · 14 years ago
  78. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  79. 5b06681 use %R format code; fixes invalid dereferencing #10391 by Benjamin Peterson · 14 years ago
  80. bc95973 Fix handling on negative numbers in ast.literal_eval(). by Raymond Hettinger · 14 years ago
  81. 5ef96e5 allow byte literals by Benjamin Peterson · 14 years ago
  82. 3e74289 test for set literals by Benjamin Peterson · 14 years ago
  83. a0dfa82 Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-75433,75437,75445,75501,75551,75572,75589-75591,75657,75742,75868,75952-75957,76057,76105,76139,76143,76162,76223 via svnmerge from by Benjamin Peterson · 15 years ago
  84. 2e4b0e1 Merged revisions 74464 via svnmerge from by Benjamin Peterson · 15 years ago
  85. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  86. 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
  87. 058e31e Merged revisions 68450,68480-68481,68493,68495,68501,68512,68514-68515,68534-68536,68552,68563,68570-68572,68575,68582,68596,68623-68624,68628 via svnmerge from by Benjamin Peterson · 16 years ago
  88. 0c77a82 Merged revisions 63829-63831,63858,63865,63879,63882,63948,63970-63972,63976,63989,64014-64015,64021-64022,64063-64065,64067 via svnmerge from by Georg Brandl · 16 years ago
  89. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  90. ee9b10a Merged revisions 61440-61441,61443,61445-61448,61451-61452,61455-61457,61459-61464,61466-61467,61469-61470,61476-61477,61479,61481-61482,61485,61487,61490,61493-61494,61497,61499-61502,61505-61506,61508,61511-61514,61519,61521-61522,61530-61531,61533-61537,61541-61555,61557-61558,61561-61562,61566-61569,61572-61574,61578-61579,61583-61584,61588-61589,61592,61594,61598-61601,61603-61604,61607-61612,61617,61619-61620,61624,61626,61628-61630,61635-61638,61640-61643,61645,61648,61653-61655,61659-61662,61664,61666,61668-61671,61673,61675,61679-61680,61682,61685-61686,61689-61695,61697-61699,61701-61703,61706,61710,61713,61717,61723,61726-61730,61736,61738,61740,61742,61745-61752,61754-61760,61762-61764,61768,61770-61772,61774-61775,61784-61787,61789-61792,61794-61795,61797-61806,61808-61809,61811-61812,61814-61819,61824,61826-61833,61835-61840,61843-61845,61848,61850,61854-61862,61865-61866,61868,61872-61873,61876-61877,61883-61888,61890-61891,61893-61899,61901-61903,61905-61912,61914,61917,61920-61921,61927,61930,61932-61934,61939,61941-61942,61944-61951,61955,61960-61963,61980,61982-61983,61991,61994-61996,62001-62003,62008-62010,62016-62017,62022,62024,62027,62031-62034,62041,62045-62046,62048,62050-62051,62055-62066,62068-62074,62076-62078 via svnmerge from by Neal Norwitz · 16 years ago
  91. ad74aa8 Merged revisions 62047 via svnmerge from by Neal Norwitz · 16 years ago
  92. 2a691a8 Merged revisions 62021,62029,62035-62038,62043-62044,62052-62053 via svnmerge from by Benjamin Peterson · 16 years ago
  93. 736c0ab Move itertools izip() code to builtins as zip(). Complete the renaming. by Raymond Hettinger · 16 years ago
  94. 40d3a67 Issue #1573, second attempt: "def f(*, **kw)" now raises a SyntaxError. by Amaury Forgeot d'Arc · 17 years ago
  95. 0da5bd6 Added two tests for f(*, **kw) syntax by Christian Heimes · 17 years ago
  96. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  97. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
  98. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  99. d16e81a Fix the compiler package w.r.t. the new metaclass syntax. by Guido van Rossum · 17 years ago
  100. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 17 years ago