1. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  2. e845c0f Fixes for issue 1752184, ensuring type objects are always created by Guido van Rossum · 17 years ago
  3. 71d4a34 Customary 2nd submit of this file after it's been changed. by Guido van Rossum · 17 years ago
  4. 828f04a Issue #1066: implement PEP 3109, 2/3 of PEP 3134. by Collin Winter · 17 years ago
  5. a9ea3d9 Regenerate by Neal Norwitz · 17 years ago
  6. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
  7. e4dc324 Use unicode for AST attributes by Neal Norwitz · 17 years ago
  8. c3e7ffc obcheckin. by Guido van Rossum · 17 years ago
  9. 992d4a3 Merged revisions 56154-56264 via svnmerge from by Guido van Rossum · 17 years ago
  10. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  11. 6dd15d3 obcheckin. by Guido van Rossum · 17 years ago
  12. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  13. 514a0f2 Obsubmit. by Guido van Rossum · 17 years ago
  14. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  15. 0368b72 Merged revisions 55225-55227,55229-55269 via svnmerge from by Guido van Rossum · 17 years ago
  16. 8981ad0 Check in the inevitable change to the version number. by Guido van Rossum · 17 years ago
  17. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  18. 9091e3a Update the silly version number. by Guido van Rossum · 17 years ago
  19. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 17 years ago
  20. 5b198e8 Commit version bump. by Brett Cannon · 17 years ago
  21. 81e9502 Provisional implementation of PEP 3104. by Jeremy Hylton · 17 years ago
  22. 6baa4c4 Whoops, fix build breakage. There were still a few uses of the bool type. by Neal Norwitz · 17 years ago
  23. a44f3a3 Merged revisions 53912-53951 via svnmerge from by Thomas Wouters · 17 years ago
  24. 7ea15d0 Prevent regeneration. by Thomas Wouters · 17 years ago
  25. 00e41de Bytes literal. by Thomas Wouters · 17 years ago
  26. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  27. c2d9d7f Checkin the regenerated Python-ast.c and fix test_optparse. by Georg Brandl · 17 years ago
  28. 88fc664 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. by Georg Brandl · 17 years ago
  29. fc7bb8c Merged revisions 53304-53433,53435-53450 via svnmerge from by Thomas Wouters · 18 years ago
  30. 16be03e Some more changes related to the new except syntax and semantics, by Guido van Rossum · 18 years ago
  31. 37ffcf7 Commit __version__ change. by Martin v. Löwis · 18 years ago
  32. c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 18 years ago
  33. 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 18 years ago
  34. 52318d6 Patch #1550786: ellipsis literal. by Georg Brandl · 18 years ago
  35. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  36. 17ab9a0 Fix set literals not being visited in symtable creation. by Georg Brandl · 18 years ago
  37. 86e58e2 SF patch 1547796 by Georg Brandl -- set literals. by Guido van Rossum · 18 years ago
  38. 0919a1a Part of SF patch #1513870 (the still relevant part) -- add reduce() to by Guido van Rossum · 18 years ago
  39. e2e23ef Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the by Brett Cannon · 18 years ago
  40. c350d1a Commit regenerated Python-ast.c. by Thomas Wouters · 18 years ago
  41. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  42. 03e5bc0 Fix memory leak on attributes. by Martin v. Löwis · 18 years ago
  43. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 18 years ago
  44. 53d960c Don't pollute namespace as bad as before. All the types are static now. by Neal Norwitz · 18 years ago
  45. 34aa7ba from __future__ import with_statement addon for 'with', mostly written by Neal. by Thomas Wouters · 18 years ago
  46. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 18 years ago
  47. ace990c Regenerate. by Martin v. Löwis · 18 years ago
  48. c2e2074 PEP 343 -- the with-statement. by Guido van Rossum · 18 years ago
  49. 577b5b9 Create _ast module. Cleanup Python-ast.c generation. by Martin v. Löwis · 18 years ago
  50. dca3b9c PEP 308 implementation, including minor refdocs and some testcases. It by Thomas Wouters · 18 years ago
  51. d3a5f53 Avoid reinitializing the types twice. by Martin v. Löwis · 18 years ago
  52. 8d0701d Stop generating empty arrays. by Martin v. Löwis · 18 years ago
  53. ce1d5d2 Fix iterating over cmpop_ty lists. by Martin v. Löwis · 18 years ago
  54. bd260da Generate code to recursively copy an AST into by Martin v. Löwis · 18 years ago
  55. 5b43126 Regenerate. by Martin v. Löwis · 19 years ago
  56. adb69fc Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, by Neal Norwitz · 19 years ago
  57. 897ff81 SF #1373150, diffs in working copy after a build by Neal Norwitz · 19 years ago
  58. 7b5a604 Whoops, checkin consistent versions of *all* files to stop polluting by Neal Norwitz · 19 years ago
  59. 6576bd8 Prevent name pollution by making lots of internal functions static. by Neal Norwitz · 19 years ago
  60. 12ebfd7 Use PyErr_NoMemory() instead of rolling our own. by Neal Norwitz · 19 years ago
  61. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago