1. 4840112 Fix from est@hyperreal.org: missing initialize in 'find_defaults()'. by Greg Ward · 24 years ago
  2. 9811861 Mark Favas discovered this: getatime() accidentally returned the MTIME! by Guido van Rossum · 24 years ago
  3. 19ce91b Piers Lauder: by Guido van Rossum · 24 years ago
  4. 5ebfa2a Add tests to exercise sequence operations (multiplication, indexing, by Andrew M. Kuchling · 24 years ago
  5. 0f223d2 Allow using long integers as arguments to PyObject_GetItem(), _SetItem(), by Andrew M. Kuchling · 24 years ago
  6. 2194b16 Allow using long integers as slice indexes by Andrew M. Kuchling · 24 years ago
  7. 52fccfd dict_has_key(): Accept only one parameter. PR#210 reported by by Fred Drake · 24 years ago
  8. 0baf773 Added entry for libtabnanny.tex. by Fred Drake · 24 years ago
  9. 3c227ee Added dependency on libtabnanny.tex. by Fred Drake · 24 years ago
  10. 155348b Initial version from Peter Funk <pf@artcom-gmbh.de>, with minor by Fred Drake · 24 years ago
  11. 6e0a28f Deleting tabpolice.py; it was superceded by tabnanny.py long ago. by Guido van Rossum · 24 years ago
  12. a02c898 Moved tabnanny.py to standard library status. by Guido van Rossum · 24 years ago
  13. dc68833 Added tabnanny.py, by Tim Peters, formerly from Tools/scripts, to the by Guido van Rossum · 24 years ago
  14. 89af077 This branch is for 1.6 & forward. by Fred Drake · 24 years ago
  15. 8c95c27 Added a new command: Check module (Alt-F5) It does a full syntax check by Guido van Rossum · 24 years ago
  16. 772dd41 satisfy the tabnanny (thanks to MH for noticing the problem) by Jeremy Hylton · 24 years ago
  17. 0dd7507 What used to be tp_xxx4 is now tp_flags; set it to Py_TPFLAGS_DEFAULT. by Fred Drake · 24 years ago
  18. 145c26e Remove comment that Guido agree's doesn't make sense: by Fred Drake · 24 years ago
  19. c29e41d Script to help locate markup that LaTeX2HTML has a problem with. by Fred Drake · 24 years ago
  20. 584b16a Mark pointed out a buglet in his patch: i < _sys_nerr isn't strong by Guido van Rossum · 24 years ago
  21. 957d07a Added FreeMem, MaxBlock and CompactMem calls. The values returned by these are lower bounds in the Python case (as malloc doesn't return memory to the heap) but they can be used to decide when to give low-memory warnings. by Jack Jansen · 24 years ago
  22. 42b9bc7 add TODO section by Greg Stein · 24 years ago
  23. fc9d225 Patch from Vladimir Marangozov <marangoz@python.inrialpes.fr> by Andrew M. Kuchling · 24 years ago
  24. 0c7822e Patch from Vladimir Marangozov <marangoz@python.inrialpes.fr>: by Andrew M. Kuchling · 24 years ago
  25. 3bb578c reduce fsimp coupling: provide fs_imp param to ImportManager constructor, by Greg Stein · 24 years ago
  26. d4f1d20 shift demo importers to importers.py (destined for Demo/ ?) by Greg Stein · 24 years ago
  27. 18c05f2 Changed all references to command methods 'set_default_options()' and by Greg Ward · 24 years ago
  28. e01149c Renamed 'set_default_options()' to 'initialize_options()', and by Greg Ward · 24 years ago
  29. 4c96db1 Changed references to the command class 'options' attribute to 'user_options'. by Greg Ward · 24 years ago
  30. bbeceea Renamed all 'options' class attributes to 'user_options'. by Greg Ward · 24 years ago
  31. 592f282 Command classes are now named identically to their commands, so reflect this by Greg Ward · 24 years ago
  32. 1993f9a Renamed all command classes so they're exactly the same as the name of the by Greg Ward · 24 years ago
  33. e1b1c94 Changed 'dist' to 'sdist'. by Greg Ward · 24 years ago
  34. a82122b The 'sdist' command to create a source distribution. This is derived from the by Greg Ward · 24 years ago
  35. 3d6b023 The 'dist' command is dead -- long live the 'sdist' command! by Greg Ward · 24 years ago
  36. efd0694 changes to _lookupName by Jeremy Hylton · 24 years ago
  37. 3ec7e2c the previous quick hack to fix def foo((x,y)) failed on some cases by Jeremy Hylton · 24 years ago
  38. 7708d69 add varargs and kwargs flags to Lambda nodes by Jeremy Hylton · 24 years ago
  39. 873bdc1 satisfy the tabnanny by Jeremy Hylton · 24 years ago
  40. 1e862e8 Update the description of int() to include the radix parameter; by Fred Drake · 24 years ago
  41. ef0b5dd Typo in a comment: "wheter" --> "whether" by Fred Drake · 24 years ago
  42. f36b182 Patches by Piers Lauder. by Guido van Rossum · 24 years ago
  43. 99aabe3 Add primitive customization of window size and font. by Guido van Rossum · 24 years ago
  44. 795e189 Patch by Mark Hammond: by Guido van Rossum · 24 years ago
  45. 65a75b0 Changes by Mark Hammond related to the new WindowsError exception. by Guido van Rossum · 24 years ago
  46. db0c9f7 Declarations related to new WindowsError exception. by Guido van Rossum · 24 years ago
  47. 1efac33 Added WindowsError, for Mark Hammond's extensions. by Guido van Rossum · 24 years ago
  48. 8006d31 Added docs for new crc32() function. By Jim Ahlstrom. by Guido van Rossum · 24 years ago
  49. cba0436 Added test for new crc32() function. by Guido van Rossum · 24 years ago
  50. 7d47c9e Patch by Jim Ahlstrom to add crc32, a useful checksum function by Guido van Rossum · 24 years ago
  51. 44cf8ef The 0.5 release happened on 2/15, not on 2/14. :-) by Guido van Rossum · 24 years ago
  52. ad9a86f support for arglists with implicit tuple unpacks by Jeremy Hylton · 24 years ago
  53. 3d9f5e4 more robust assignment of lineno for keyword args by Jeremy Hylton · 24 years ago
  54. 2ce27b2 fix argcount generation for arg lists containing tuple unpacks by Jeremy Hylton · 24 years ago
  55. 65d4ea0 add flatten helper function by Jeremy Hylton · 24 years ago
  56. 4f6bcd8 finish first impl of code generator by Jeremy Hylton · 24 years ago
  57. 1ebba96 fix creation of Ellipsis node by Jeremy Hylton · 24 years ago
  58. 410e840 add a little debugging support when new.code raises SystemError by Jeremy Hylton · 24 years ago
  59. ae3d7920 no real change -- testing syncmail by Jeremy Hylton · 24 years ago
  60. d603dee add line numbers to nodes in the except clause (when possible) by Jeremy Hylton · 24 years ago
  61. ca1ad18 tidy up tryexcept and tryfinally nodes by Jeremy Hylton · 24 years ago
  62. 6e83cac A bit restructured. by Guido van Rossum · 24 years ago
  63. dec0b68 Oops, somehow the initial checkin was botched. :-( by Guido van Rossum · 24 years ago
  64. 83d4657 Added some clarifications. by Guido van Rossum · 24 years ago
  65. 90ad858 Temporarily add a copy here for easy distribution. by Guido van Rossum · 24 years ago
  66. 17ae233 More changes. by Guido van Rossum · 24 years ago
  67. 1d841fe Notice status back and stack viewer. by Guido van Rossum · 24 years ago
  68. ec73dc6 Support for Moshe's status bar. by Guido van Rossum · 24 years ago
  69. 17752f7 Status bar code -- by Moshe Zadka. by Guido van Rossum · 24 years ago
  70. 2bb8e72 Adding the old stack viewer implementation back, for the debugger. by Guido van Rossum · 24 years ago
  71. b658469 New stack viewer, uses a tree widget. (XXX: the debugger doesn't yet use this.) by Guido van Rossum · 24 years ago
  72. 553fa44 Correct a typo and remove an unqualified except that was hiding the error. by Guido van Rossum · 24 years ago
  73. f801f3b Add an XXX comment about the ClassBrowser AIP. by Guido van Rossum · 24 years ago
  74. 0b5b2c8 Updated change log. by Guido van Rossum · 24 years ago
  75. 46ffbec News update. Probably incomplete; what else is new? by Guido van Rossum · 24 years ago
  76. 6d3be50 Updated for pending IDLE 0.5 release (still very rough -- just getting by Guido van Rossum · 24 years ago
  77. b4b8381 Tiny addition. by Guido van Rossum · 24 years ago
  78. fb4574e In response to one particular complaint on edu-sig, change some error by Guido van Rossum · 24 years ago
  79. 9e1cd68 edit a doc string (real intent is to test out rsync install) by Jeremy Hylton · 24 years ago
  80. 1991ddc Make multiplying a sequence by a long integer (5L * 'b') legal by Andrew M. Kuchling · 24 years ago
  81. a46fb38 get rid of spurious print by Jeremy Hylton · 24 years ago
  82. 967e509 Patch by Gerrit Holl: by Guido van Rossum · 24 years ago
  83. d962878 Patch by Gerrit Holl: by Guido van Rossum · 24 years ago
  84. 126960b looks like everything is working except for try/except (pystone by Jeremy Hylton · 24 years ago
  85. 17988d2 LeftShift & RightShift: fix reprs, change attr names to left and right by Jeremy Hylton · 24 years ago
  86. b217687 Fix the question marks next to the expansions of some of the by Fred Drake · 24 years ago
  87. bf6267e rename several of the generic attribute names for nodes. new node attrs are: by Jeremy Hylton · 24 years ago
  88. 4290779 (), [], and {} should not be represented as constant expressions, they by Jeremy Hylton · 24 years ago
  89. e817acd Patch by Jack Jansen: by Guido van Rossum · 24 years ago
  90. a505812 split compile.py into two files by Jeremy Hylton · 24 years ago
  91. 3050d51 change MODULE_NAMESPACE/FUNCTION_NAMESPACE stuff to have a single flag by Jeremy Hylton · 24 years ago
  92. dae108c And added a note about needing two "cvs update"s. by Jack Jansen · 24 years ago
  93. 90cf491 Explained that you have to checkout the Mac portion of Python in a separate by Jack Jansen · 24 years ago
  94. 76d01b8 add support for Lambda nodes by Jeremy Hylton · 24 years ago
  95. 5de8cee Ditched '_find_SET()', since it was a no-value-added wrapper around by Greg Ward · 25 years ago
  96. 6998809 Latest patch from Thomas Heller/Robin Becker: by Greg Ward · 25 years ago
  97. 4eb504c add loop handling via by Jeremy Hylton · 25 years ago
  98. 95b8614 add an __len__ to Set and Stack by Jeremy Hylton · 25 years ago
  99. 41d8463 Document the API changes to the nntplib module (exceptions become by Barry Warsaw · 25 years ago
  100. 9dd7872 Added new exception classes: by Barry Warsaw · 25 years ago