1. 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 19 years ago
  2. f418991 Flush out support for ``class B(): pass`` syntax by adding support to the by Brett Cannon · 19 years ago
  3. 1a4ddae SF patch #1007189, multi-line imports, for instance: by Anthony Baxter · 20 years ago
  4. 0ccff07 This is Mark Russell's patch: by Michael W. Hudson · 20 years ago
  5. c2a5a63 PEP-0318, @decorator-style. In Guido's words: by Anthony Baxter · 20 years ago
  6. 354433a SF patch #872326: Generator expression implementation by Raymond Hettinger · 20 years ago
  7. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  8. 6a62725 Merge 23c1-branch back into the head. Barry will send email about the by Tim Peters · 21 years ago
  9. fc29646 Don't use (PyObject *)PyObject_Type(x). It is a leaky and verbose way by Guido van Rossum · 21 years ago
  10. e4b5500 Remove duplicate code introduced by fixing bug #678518 by Neal Norwitz · 21 years ago
  11. d58f3fc Remove unused variable. by Guido van Rossum · 21 years ago
  12. df1252d Apply logistix's patch from by Michael W. Hudson · 21 years ago
  13. 5e83b7a Teach the parsermodule about floor division. Fixes by Michael W. Hudson · 21 years ago
  14. accb62b SF patch [ 597919 ] compiler package and SET_LINENO by Jeremy Hylton · 22 years ago
  15. 200788c Allow more docstrings to be removed during compilation in some modules by Neal Norwitz · 22 years ago
  16. 62b1ab1 Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link by Mark Hammond · 22 years ago
  17. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  18. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  19. 2d3b986 Disambiguate the grammar for backtick. by Guido van Rossum · 22 years ago
  20. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago
  21. 8b55b2d Fix memory leak in the parser module: There were two leaks in by Fred Drake · 23 years ago
  22. 1c91707 Very subtle syntax change: in a list comprehension, the testlist in by Guido van Rossum · 23 years ago
  23. 13130bc Use the abstract object interfaces when digging around in module objects by Fred Drake · 23 years ago
  24. 78bdb9b Elaborate a comment. by Fred Drake · 23 years ago
  25. c2683dd The syntax trees handled by this module are not "abstract," so take the by Fred Drake · 23 years ago
  26. 02126f2 Add support for yield statements. (Should be merged with descr branch.) by Fred Drake · 23 years ago
  27. b28f6e7 Properly use &&. Closes bug #434989. by Martin v. Löwis · 23 years ago
  28. 7113708 Fix problems with validation of import statement parse trees. by Fred Drake · 24 years ago
  29. b6429a2 validate_varargslist(): Fix two bugs in this function, one that affected by Fred Drake · 24 years ago
  30. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  31. 0ac9b07 Simplify some of the code. Use PyErr_Format() instead of sprintf(), etc. by Fred Drake · 24 years ago
  32. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  33. 9bfd2bf Do the absolute minimal amount of modifications to eradicate by Barry Warsaw · 24 years ago
  34. 6d7c442 Try to supply a prototype for the module init function but avoid by Tim Peters · 24 years ago
  35. 28f739a Update the parser module to support augmented assignment. by Fred Drake · 24 years ago
  36. 85bf3bb validate_listmaker(): Revise to match Skip's latest changes to the by Fred Drake · 24 years ago
  37. 72b93ec Nuked unused variable. by Tim Peters · 24 years ago
  38. cff283c Update to reflect recent grammar changes (list comprehensions, extended by Fred Drake · 24 years ago
  39. 5c66986 ANSIfy a bit more. by Thomas Wouters · 24 years ago
  40. bd4bc4e Even more ANSIfication: fix as many function pointers and declarations as by Thomas Wouters · 24 years ago
  41. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  42. 03657cf replace PyXXX_Length calls with PyXXX_Size calls by Jeremy Hylton · 24 years ago
  43. 286da3b ANSI-fying by Peter Schneider-Kamp · 24 years ago
  44. 3cd2ee4 Remove use of HAVE_OLD_CPP to support non-ANSI preprocessors. by Fred Drake · 24 years ago
  45. 7797d36 Remove warning about local variable possibly being using uninitialized; by Fred Drake · 24 years ago
  46. 22269b5 Andrew Kuchling <akuchlin@mems-exchange.org>: by Fred Drake · 24 years ago
  47. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  48. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  49. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  50. e7ab64e validate_arglist(): Re-written to reflect extended call syntax. by Fred Drake · 24 years ago
  51. ff9ea48 ANSI-fy & de-tabify the source. (4-space indents already used.) by Fred Drake · 24 years ago
  52. 0dd7507 What used to be tp_xxx4 is now tp_flags; set it to Py_TPFLAGS_DEFAULT. by Fred Drake · 24 years ago
  53. 2a6875e parser__pickler(): Don't drop the third argument to by Fred Drake · 25 years ago
  54. 7a15ba5 Added keyword parameter support to all public interfaces; keyword by Fred Drake · 25 years ago
  55. 1a566ff When the parameter to PyInt_AsLong() has already been checked with by Fred Drake · 25 years ago
  56. 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 26 years ago
  57. 7f875ef parser__pickler(): Use Py_DECREF() when reference is known to be non-NULL. by Fred Drake · 26 years ago
  58. 3c8c598 Sorry, the initializer for ob_type must really be NULL, by Guido van Rossum · 26 years ago
  59. ed3da23 parser_compare_nodes(): Corrected a minor type error; eliminate one GCC by Fred Drake · 26 years ago
  60. 268397f Made lint a bit happier. by Fred Drake · 26 years ago
  61. 19efc5f Add a declaration for strdup() for the Mac. (Jack) by Guido van Rossum · 26 years ago
  62. 301b5be In method & function tables, added a cast for the function pointers to keep by Fred Drake · 26 years ago
  63. 503d8d6 The documentation threatened it would happen -- the functions that should by Fred Drake · 26 years ago
  64. 43f8f9b Added support for pickling ast objects. by Fred Drake · 26 years ago
  65. 730806d Make new gcc -Wall happy by Guido van Rossum · 26 years ago
  66. c542bc7 Support raise with no parameters. by Fred Drake · 26 years ago
  67. d49266e Remove requirement for strdup() since it causes so many troubles for too many by Fred Drake · 27 years ago
  68. 1f14ccf Put back the extern declaration for strdup(), between #ifndef MS_WINDOWS. by Guido van Rossum · 27 years ago
  69. 0225a38 initparser(): Use PyErr_NewException() to create the exception. by Fred Drake · 27 years ago
  70. fd9ef4a Removed extern declaration of strdup(). Doesn't appear to be important and by Fred Drake · 27 years ago
  71. 69b9ae4 Add doc string to type object. by Fred Drake · 27 years ago
  72. 925e547 Support assert stmt. by Guido van Rossum · 27 years ago
  73. f2b2dac Initialize the ob_type field of PyAST_Type dynamically (in by Guido van Rossum · 27 years ago
  74. a376cc5 Keep gcc -Wall happy. by Guido van Rossum · 28 years ago
  75. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  76. e1607a8 (parsermodule.c): Fixed sloppy typo: '==' -> '=' by Fred Drake · 28 years ago
  77. 2a28846 Patches to make it compile with K&R C by Guido van Rossum · 28 years ago
  78. 360a934 Support for old CPP by Guido van Rossum · 28 years ago
  79. 4747887 New batch from Fred by Guido van Rossum · 28 years ago
  80. 3d602e3 New submission by Fred Drake. by Guido van Rossum · 28 years ago
  81. c0fd1c0 fix argcount bug for build_node_children by Guido van Rossum · 28 years ago
  82. d9e9f9c Fred Drake's new parser module by Guido van Rossum · 29 years ago
  83. cd938fc Made some more things static, and other cleanup for new naming scheme by Guido van Rossum · 29 years ago
  84. 524b588 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  85. 3bbc62e Another bulky set of minor changes. by Guido van Rossum · 30 years ago
  86. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  87. 52f2c05 * parsermodule.c, Makefile, config.c: rudimentary interface to the Python by Guido van Rossum · 31 years ago