1. 5fbb8e3 Fix a shadow-compatible-local warning (#2182) by Yuan Chao Chou · 8 years ago
  2. 08995a3 Issue #24098: Fixed possible crash when AST is changed in process of by Serhiy Storchaka · 9 years ago
  3. 25a4861 Make PyAST_obj2mod C89 compliant. (Follow-up commit from asdl_c.py.) by Trent Nelson · 12 years ago
  4. 5eed306 allow None identifiers by Benjamin Peterson · 14 years ago
  5. 7782024 verify the types of AST strings and identifiers (closes #12609 and #12610) by Benjamin Peterson · 14 years ago
  6. 5b9ce31 bump revision by Benjamin Peterson · 15 years ago
  7. 1056ca2 fix code formatting by Benjamin Peterson · 15 years ago
  8. 102d70e Update version information for AST changes in r77422. by Alexandre Vassalotti · 15 years ago
  9. b646547 Issue #2333: Backport set and dict comprehensions syntax. by Alexandre Vassalotti · 15 years ago
  10. 3ad57e2 Update the version # of Python-ast.c based on the backport of set literals from by Brett Cannon · 15 years ago
  11. ee936a2 Issue #2335: Backport set literals syntax from Python 3.x. by Alexandre Vassalotti · 15 years ago
  12. 5f429e0 account for PyObject_IsInstance's new ability to fail by Benjamin Peterson · 15 years ago
  13. 8fa3e93 update ast version by Benjamin Peterson · 16 years ago
  14. a72be3b when no module is given in a 'from' relative import, make ImportFrom.module NULL by Benjamin Peterson · 16 years ago
  15. aff36f1 fix compiler warning by Benjamin Peterson · 17 years ago
  16. 35e01fb Fixed #4067 by implementing _attributes and _fields for the AST root node. by Armin Ronacher · 17 years ago
  17. 05e3449 #3743: PY_FORMAT_SIZE_T is designed for the OS "printf" functions, not for by Amaury Forgeot d'Arc · 17 years ago
  18. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 17 years ago
  19. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 17 years ago
  20. e34c21c Make AST nodes pickleable. by Georg Brandl · 17 years ago
  21. 1721e75 Fix error message -- "expects either 0 or 0 arguments" by Georg Brandl · 17 years ago
  22. 2c55c59 Make _fields attr for no fields consistent with _attributes attr. by Georg Brandl · 17 years ago
  23. c52ed59 #2505: allow easier creation of AST nodes. by Georg Brandl · 17 years ago
  24. a48f3ab Patch #2511: Give the "excepthandler" AST item proper attributes by making it a Sum. by Georg Brandl · 17 years ago
  25. f2bfd54 Properly check for consistency with the third argument of by Georg Brandl · 17 years ago
  26. 473445c Silence a compilation warning by Amaury Forgeot d'Arc · 17 years ago
  27. fc8eef3 Patch #1810 by Thomas Lee, reviewed by myself: by Georg Brandl · 17 years ago
  28. 4034685 Issue #2051 and patch from Alexander Belopolsky: by Christian Heimes · 17 years ago
  29. 5224d28 Patch #1759: Backport of PEP 3129 class decorators with some help from Georg by Christian Heimes · 17 years ago
  30. 7b7d1c8 Fix a couple of problems in generating the AST code: by Neal Norwitz · 18 years ago
  31. 0db62aa Modify Parser/asdl_c.py so that the __version__ number for Python/Python-ast.c by Brett Cannon · 18 years ago
  32. d080d4b Check in changed Python-ast.c from a cosmetic change to Python.asdl (in r53731). by Brett Cannon · 18 years ago
  33. 0cc56e5 Introduce asdl_int_seq, to hold cmpop_ty. by Martin v. Löwis · 19 years ago
  34. 9eec489 Regenerate. by Martin v. Löwis · 19 years ago
  35. 01b8101 Make _kind types global for C++ compilation. by Martin v. Löwis · 19 years ago
  36. a863d33 low-hanging fruit in Python/ - g++ still hates all the enum_kind declarations by Anthony Baxter · 19 years ago
  37. ad7c44c Regenerate. by Martin v. Löwis · 19 years ago
  38. 2f327c1 Add lineno, col_offset to excephandler to enable future fix for by Jeremy Hylton · 19 years ago
  39. 19379f1 * Fix a refleak of *_attributes. by Neal Norwitz · 19 years ago
  40. 03e5bc0 Fix memory leak on attributes. by Martin v. Löwis · 19 years ago
  41. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 19 years ago
  42. 53d960c Don't pollute namespace as bad as before. All the types are static now. by Neal Norwitz · 19 years ago
  43. 34aa7ba from __future__ import with_statement addon for 'with', mostly written by Neal. by Thomas Wouters · 19 years ago
  44. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 19 years ago
  45. ace990c Regenerate. by Martin v. Löwis · 19 years ago
  46. c2e2074 PEP 343 -- the with-statement. by Guido van Rossum · 19 years ago
  47. 577b5b9 Create _ast module. Cleanup Python-ast.c generation. by Martin v. Löwis · 19 years ago
  48. dca3b9c PEP 308 implementation, including minor refdocs and some testcases. It by Thomas Wouters · 19 years ago
  49. d3a5f53 Avoid reinitializing the types twice. by Martin v. Löwis · 19 years ago
  50. 8d0701d Stop generating empty arrays. by Martin v. Löwis · 19 years ago
  51. ce1d5d2 Fix iterating over cmpop_ty lists. by Martin v. Löwis · 19 years ago
  52. bd260da Generate code to recursively copy an AST into by Martin v. Löwis · 19 years ago
  53. 5b43126 Regenerate. by Martin v. Löwis · 19 years ago
  54. adb69fc Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, by Neal Norwitz · 19 years ago
  55. 897ff81 SF #1373150, diffs in working copy after a build by Neal Norwitz · 19 years ago
  56. 7b5a604 Whoops, checkin consistent versions of *all* files to stop polluting by Neal Norwitz · 19 years ago
  57. 6576bd8 Prevent name pollution by making lots of internal functions static. by Neal Norwitz · 19 years ago
  58. 12ebfd7 Use PyErr_NoMemory() instead of rolling our own. by Neal Norwitz · 20 years ago
  59. 3e0055f Merge ast-branch to head by Jeremy Hylton · 20 years ago