1. feb3b75 Issue #9130: Validate ellipsis tokens in relative imports. by Mark Dickinson · 14 years ago
  2. 2cc8a5e Issue #9130: Fix validation of relative imports in parser module. by Mark Dickinson · 14 years ago
  3. 2bd61a9 Issue #9128: Fix validation of class decorators in parser module. by Mark Dickinson · 14 years ago
  4. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  5. 4905e80 fix an ambiguity in the grammar from the implementation of extended unpacking by Benjamin Peterson · 15 years ago
  6. 0c31562 Merged revisions 72924 via svnmerge from by Georg Brandl · 15 years ago
  7. 37d1c18 Merged revisions 72645 via svnmerge from by Antoine Pitrou · 15 years ago
  8. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  9. 211c625 Issue #1717, stage 2: remove uses of tp_compare in Modules and most Objects. by Mark Dickinson · 15 years ago
  10. eee3116 Merged revisions 67463,67572,67576,67628 via svnmerge from by Georg Brandl · 16 years ago
  11. 4469d0c Merged revisions 67348,67355,67359,67362,67364-67365,67367-67368,67398,67423-67424,67432,67440-67441,67444-67445,67454-67455,67457-67458 via svnmerge from by Benjamin Peterson · 16 years ago
  12. c0747cf Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via svnmerge from by Benjamin Peterson · 16 years ago
  13. f216c94 Merged revisions 67066 via svnmerge from by Benjamin Peterson · 16 years ago
  14. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  15. 30704ea0 Remove "ast" aliases from the parser module. by Georg Brandl · 16 years ago
  16. e43d33a #3247 Get rid of Py_FindMethod; use tp_members instead. by Amaury Forgeot d'Arc · 16 years ago
  17. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  18. f7fa63d Rename copy_reg module to copyreg. by Alexandre Vassalotti · 16 years ago
  19. a85998a Issue #1950: Fixed misusage of PyUnicode_AsString(). by Alexandre Vassalotti · 16 years ago
  20. 072c0f1 Merged revisions 59666-59679 via svnmerge from by Christian Heimes · 17 years ago
  21. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  22. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  23. fc158e2 Patch 1144 by David Binger, fix for parser module. With unittest. by Guido van Rossum · 17 years ago
  24. 3fcbea5 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  25. 2cde0eb Fix refleaks by Neal Norwitz · 17 years ago
  26. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  27. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  28. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  29. 0368b72 Merged revisions 55225-55227,55229-55269 via svnmerge from by Guido van Rossum · 17 years ago
  30. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  31. 452bf51 Essential changes for print function changes. by Guido van Rossum · 17 years ago
  32. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  33. c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 18 years ago
  34. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  35. 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 18 years ago
  36. 52318d6 Patch #1550786: ellipsis literal. by Georg Brandl · 18 years ago
  37. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  38. 6309f2d Get parsermodule working again after adding set literals by Neal Norwitz · 18 years ago
  39. 2eca440 Get rid of some more cases of backquotes. parsermodule.c doesn't compile by Neal Norwitz · 18 years ago
  40. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. 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. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 18 years ago
  43. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 18 years ago
  44. b79afb6 unconst. by Martin v. Löwis · 18 years ago
  45. e2dd78c Update for PEP 308 patch. by Thomas Wouters · 18 years ago
  46. ad0a462 Use Py_ssize_t for counts and sizes. by Martin v. Löwis · 18 years ago
  47. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  48. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 18 years ago
  49. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  50. 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 19 years ago
  51. f418991 Flush out support for ``class B(): pass`` syntax by adding support to the by Brett Cannon · 19 years ago
  52. 1a4ddae SF patch #1007189, multi-line imports, for instance: by Anthony Baxter · 20 years ago
  53. 0ccff07 This is Mark Russell's patch: by Michael W. Hudson · 20 years ago
  54. c2a5a63 PEP-0318, @decorator-style. In Guido's words: by Anthony Baxter · 20 years ago
  55. 354433a SF patch #872326: Generator expression implementation by Raymond Hettinger · 20 years ago
  56. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  57. 6a62725 Merge 23c1-branch back into the head. Barry will send email about the by Tim Peters · 21 years ago
  58. fc29646 Don't use (PyObject *)PyObject_Type(x). It is a leaky and verbose way by Guido van Rossum · 21 years ago
  59. e4b5500 Remove duplicate code introduced by fixing bug #678518 by Neal Norwitz · 21 years ago
  60. d58f3fc Remove unused variable. by Guido van Rossum · 21 years ago
  61. df1252d Apply logistix's patch from by Michael W. Hudson · 21 years ago
  62. 5e83b7a Teach the parsermodule about floor division. Fixes by Michael W. Hudson · 21 years ago
  63. accb62b SF patch [ 597919 ] compiler package and SET_LINENO by Jeremy Hylton · 22 years ago
  64. 200788c Allow more docstrings to be removed during compilation in some modules by Neal Norwitz · 22 years ago
  65. 62b1ab1 Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link by Mark Hammond · 22 years ago
  66. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  67. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  68. 2d3b986 Disambiguate the grammar for backtick. by Guido van Rossum · 22 years ago
  69. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago
  70. 8b55b2d Fix memory leak in the parser module: There were two leaks in by Fred Drake · 23 years ago
  71. 1c91707 Very subtle syntax change: in a list comprehension, the testlist in by Guido van Rossum · 23 years ago
  72. 13130bc Use the abstract object interfaces when digging around in module objects by Fred Drake · 23 years ago
  73. 78bdb9b Elaborate a comment. by Fred Drake · 23 years ago
  74. c2683dd The syntax trees handled by this module are not "abstract," so take the by Fred Drake · 23 years ago
  75. 02126f2 Add support for yield statements. (Should be merged with descr branch.) by Fred Drake · 23 years ago
  76. b28f6e7 Properly use &&. Closes bug #434989. by Martin v. Löwis · 23 years ago
  77. 7113708 Fix problems with validation of import statement parse trees. by Fred Drake · 24 years ago
  78. b6429a2 validate_varargslist(): Fix two bugs in this function, one that affected by Fred Drake · 24 years ago
  79. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  80. 0ac9b07 Simplify some of the code. Use PyErr_Format() instead of sprintf(), etc. by Fred Drake · 24 years ago
  81. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  82. 9bfd2bf Do the absolute minimal amount of modifications to eradicate by Barry Warsaw · 24 years ago
  83. 6d7c442 Try to supply a prototype for the module init function but avoid by Tim Peters · 24 years ago
  84. 28f739a Update the parser module to support augmented assignment. by Fred Drake · 24 years ago
  85. 85bf3bb validate_listmaker(): Revise to match Skip's latest changes to the by Fred Drake · 24 years ago
  86. 72b93ec Nuked unused variable. by Tim Peters · 24 years ago
  87. cff283c Update to reflect recent grammar changes (list comprehensions, extended by Fred Drake · 24 years ago
  88. 5c66986 ANSIfy a bit more. by Thomas Wouters · 24 years ago
  89. bd4bc4e Even more ANSIfication: fix as many function pointers and declarations as by Thomas Wouters · 24 years ago
  90. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  91. 03657cf replace PyXXX_Length calls with PyXXX_Size calls by Jeremy Hylton · 24 years ago
  92. 286da3b ANSI-fying by Peter Schneider-Kamp · 24 years ago
  93. 3cd2ee4 Remove use of HAVE_OLD_CPP to support non-ANSI preprocessors. by Fred Drake · 24 years ago
  94. 7797d36 Remove warning about local variable possibly being using uninitialized; by Fred Drake · 24 years ago
  95. 22269b5 Andrew Kuchling <akuchlin@mems-exchange.org>: by Fred Drake · 24 years ago
  96. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  97. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  98. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  99. e7ab64e validate_arglist(): Re-written to reflect extended call syntax. by Fred Drake · 24 years ago
  100. ff9ea48 ANSI-fy & de-tabify the source. (4-space indents already used.) by Fred Drake · 24 years ago