1. 64c06e3 Backport of _abccoll.py by Benjamin Arangueren, issue 1383. by Guido van Rossum · 17 years ago
  2. cc7f26b Final fix for #1403 by Christian Heimes · 17 years ago
  3. f57375a Add a NEWS entry for r59076. by Amaury Forgeot d'Arc · 17 years ago
  4. 3f065a4 Added NEWS entry Thanks for the reminder, Brett by Christian Heimes · 17 years ago
  5. 9db1d5a Add a missing check before deleting a package's __loader__. by Brett Cannon · 17 years ago
  6. 43e53f8 doctest assumed that a package's __loader__.get_data() method used universal by Brett Cannon · 17 years ago
  7. 901071b Fixed #1372: zlibmodule.c: int overflow in PyZlib_decompress by Christian Heimes · 17 years ago
  8. 0e5edf5 Remove a unneeded line that had typos. by Brett Cannon · 17 years ago
  9. 5087980 The incremental decoder for utf-7 must preserve its state between calls. by Amaury Forgeot d'Arc · 17 years ago
  10. 8c4592a Backport some main.c cleanup from the py3k branch by Nick Coghlan · 17 years ago
  11. 547867e Another fix for test_shutil. Martin pointed out that it breaks some build bots by Christian Heimes · 17 years ago
  12. 0ffdacd Patch #1468: Package Lib/test/*.pem. by Martin v. Löwis · 17 years ago
  13. 044d709 Fixed bug #1470 by Christian Heimes · 17 years ago
  14. 4673e19 Fix the OSX failures in this test -- they were due to /tmp being a symlink by Guido van Rossum · 17 years ago
  15. 089816b Make this work stand-alone, too. by Guido van Rossum · 17 years ago
  16. c045883 Fixed detail in add_type() explanation (issue 1463). by Facundo Batista · 17 years ago
  17. 8f6793b Enable some test_cmd_line_script debugging output to investigate failure on Mac OSX buildbot by Nick Coghlan · 17 years ago
  18. 183744d Fix for #1444: utf_8_sig.StreamReader was (indirectly through decode()) by Walter Dörwald · 17 years ago
  19. fc7e72d Fix typo in comment. by Walter Dörwald · 17 years ago
  20. 76e4d62 Use a slightly more recent version than 1.5.2b2. by Neal Norwitz · 17 years ago
  21. 327a39b Patch #1739468: Directories and zipfiles containing __main__.py are now executable by Nick Coghlan · 17 years ago
  22. 5cf449c Remove a confusing sentence about pth files and which directories are searched by Brett Cannon · 17 years ago
  23. 8465ae8 Fix signature in example by Raymond Hettinger · 17 years ago
  24. 6f7e6fb Made _ParseTupleFinds only defined to unicodeobject.c by Facundo Batista · 17 years ago
  25. 292a069 Fix for stupid error (I need to remember to do a full 'make clean + make' by Facundo Batista · 17 years ago
  26. 57d5669 Now in find, rfind, index, and rindex, you can use None as defaults, by Facundo Batista · 17 years ago
  27. 5397fd1 A patch from issue 1378 by roudkerk: by Guido van Rossum · 17 years ago
  28. 414c2b0 add the certificate for the Python SVN repository for testing SSL by Bill Janssen · 17 years ago
  29. bc69349 Add example for use cases requiring default values. by Raymond Hettinger · 17 years ago
  30. 7c3738e Example of multiple replacements. by Raymond Hettinger · 17 years ago
  31. 213ae01 Fixup example in docs. by Raymond Hettinger · 17 years ago
  32. 5681cbc Small improvement to the implementation of __replace__(). by Raymond Hettinger · 17 years ago
  33. eeeb9c4 Accept Issac Morland's suggestion for __replace__ to allow multiple replacements by Raymond Hettinger · 17 years ago
  34. b5e5d07 Add test for __fields__ being read-only by Raymond Hettinger · 17 years ago
  35. 78f27e0 Make __fields__ read-only. Suggested by Issac Morland by Raymond Hettinger · 17 years ago
  36. b5b6f3c Remove dead link from random docs. by Georg Brandl · 17 years ago
  37. 0d75f09 Merge from py3k branch: by Amaury Forgeot d'Arc · 17 years ago
  38. 0288cb0 Add the test from issue 1704621 (the issue itself is already fixed here). by Guido van Rossum · 17 years ago
  39. 1bc4af4 readline module cleanup by Christian Heimes · 17 years ago
  40. edc526c Fix TextCalendar.prweek(). This closes issue #1427. by Walter Dörwald · 17 years ago
  41. 63bf149 Patch #1418: Make the AC_REPLACE_FUNCS object files actually work. by Martin v. Löwis · 17 years ago
  42. f354894 Only set rl_completion_display_matches_hook if there by Martin v. Löwis · 17 years ago
  43. abfe453 Re-word sentence by Andrew M. Kuchling · 17 years ago
  44. ced1646 Fix for #1427: Error in standard module calendar by Christian Heimes · 17 years ago
  45. 3d4c316 Added new decorator syntax to property.__doc__ Guido prefers _x over __x. by Christian Heimes · 17 years ago
  46. 03c1d1e Remove duplication of "this". by Georg Brandl · 17 years ago
  47. 95dd03b Fixed a bug reported (in private email, by Robert Crida) in logging configuration whereby child loggers of a logger named in a configuration file, which are not themselves named in the configuration, are disabled when the configuration is applied. by Vinay Sajip · 17 years ago
  48. d1ef789 Issue 1416. Add getter, setter, deleter methods to properties that can be by Guido van Rossum · 17 years ago
  49. d3ffd34 Use a freelist to speed-up block allocation and deallocation in collections.deque(). by Raymond Hettinger · 17 years ago
  50. 3444879 Optimize common case for dict.fromkeys(). by Raymond Hettinger · 17 years ago
  51. d3d0baf Add Amaury Forgeot d'Arc. by Martin v. Löwis · 17 years ago
  52. 980c4fc Correct a comment about testing methods - nowadays most by Georg Brandl · 17 years ago
  53. 87426cb Fix misleading example. by Georg Brandl · 17 years ago
  54. 07c19ea Fix seealso link to sets docs. Do not merge to Py3k. by Georg Brandl · 17 years ago
  55. e8d58ba Reposition the decref (spotted by eagle-eye norwitz). by Raymond Hettinger · 17 years ago
  56. 1760c8a Add set.isdisjoint() by Raymond Hettinger · 17 years ago
  57. 004c1c1 Backport of Guido's review of my patch. by Christian Heimes · 17 years ago
  58. cea681b Backported fix for bug #1392 from py3k branch r58903. by Christian Heimes · 17 years ago
  59. 90b858e Add missing NEWS entry by Nick Coghlan · 17 years ago
  60. dc1d1ba Add build option for faster loop execution. by Raymond Hettinger · 17 years ago
  61. cdcf887 Optimize dict.fromkeys() with dict inputs. Useful for resetting bag/muliset counts for example. by Raymond Hettinger · 17 years ago
  62. 12e9420 Fix marshal's incorrect handling of subclasses of builtin types (backport candidate). by Raymond Hettinger · 17 years ago
  63. 9b847b4 Add missing "return NULL" in overflow check in PyObject_Repr(). by Guido van Rossum · 17 years ago
  64. e1ac4f1 Fixes Issue 1385: The hmac module now computes the correct hmac when using by Gregory P. Smith · 17 years ago
  65. 91f9429 Clarified the fact that you can have comments for individual archive by Mark Summerfield · 17 years ago
  66. aea6e59 Added cross-references between the various archive file formats. by Mark Summerfield · 17 years ago
  67. 80e95c1 * db->get_flags is only available in BerkeleyDB >= 4.2 by Gregory P. Smith · 17 years ago
  68. fc00669 * db->get_types is only available in BerkeleyDB >= 4.2 by Gregory P. Smith · 17 years ago
  69. ac11e02 Add the bsddb.db.DBEnv.lock_id_free method. by Gregory P. Smith · 17 years ago
  70. ec10a4a Fixes bug 477182 on pybsddb.sf.net. DB objects now load the flags and by Gregory P. Smith · 17 years ago
  71. 9c466ba Fix syntax for versionchanged markup. by Georg Brandl · 17 years ago
  72. d469ff1 Note change to get_dialect semantics in 2.5. Will backport to 2.5. by Skip Montanaro · 17 years ago
  73. b13f70d Add a missing quotation mark. by Brett Cannon · 17 years ago
  74. 7c3e79f Make "hashable" a glossary entry and clarify docs on __cmp__, __eq__ and __hash__. by Georg Brandl · 17 years ago
  75. 03fd077 Enable the full ctypes c_longdouble tests again. by Thomas Heller · 17 years ago
  76. 486b1b0 Issue #1292: On alpha, arm, ppc, and s390 linux systems the by Thomas Heller · 17 years ago
  77. 3814a91 Fix for bug 1705170 - contextmanager swallowing StopIteration (2.5 backport candidate) by Nick Coghlan · 17 years ago
  78. ac3d429 Added more file-handling related cross-references. by Mark Summerfield · 17 years ago
  79. f7601ee false "fix" undone as correct problem was found and fixed. by Gregory P. Smith · 17 years ago
  80. 6d331ca Undo revision 58533 58534 fixes. Those were a workaround for by Gregory P. Smith · 17 years ago
  81. aae141a Fix bug introduced in revision 58385. Database keys could no longer by Gregory P. Smith · 17 years ago
  82. 744b32a Fix markup glitch. by Georg Brandl · 17 years ago
  83. 4de2263 Removed non ASCII text from test as requested by Guido. Sorry :/ by Christian Heimes · 17 years ago
  84. e18f21c Backport of import tests for bug http://bugs.python.org/issue1293 and bug http://bugs.python.org/issue1342 by Christian Heimes · 17 years ago
  85. 03b15c6 #1364: os.lstat is available on Windows too, as an alias to os.stat. by Georg Brandl · 17 years ago
  86. 405884c Sets are marshalable. by Raymond Hettinger · 17 years ago
  87. 84e26b6 Clarify the reasons why pickle is almost always better than marshal by Raymond Hettinger · 17 years ago
  88. 50bf115 Adding Christian Heimes. by Martin v. Löwis · 17 years ago
  89. 9c4382f Fix some compiler warnings for signed comparisons on Unix and Windows. by Neal Norwitz · 17 years ago
  90. 706132b Make example about hiding None return values at the prompt clearer. by Georg Brandl · 17 years ago
  91. f4ef23f Use correct markup. by Georg Brandl · 17 years ago
  92. 20172f9 check in Tal Einat's update to tabpage.py Patch 1612746 by Kurt B. Kaiser · 17 years ago
  93. 1c1ac38 Backport fixes for the code that decodes octal escapes (and for PyString by Guido van Rossum · 17 years ago
  94. dff51b2 Patch 1353 by Jacob Winther. Add mp4 mapping to mimetypes.py. by Guido van Rossum · 17 years ago
  95. 60d5840 Add confirmation dialog before printing. Patch 1717170 Tal Einat. by Kurt B. Kaiser · 17 years ago
  96. ea68474 Enable platform-specific tweaks for FreeBSD 8 (exactly same to FreeBSD 7's yet) by Hye-Shik Chang · 17 years ago
  97. a838a80 - Add support for FreeBSD 8 which is recently forked from FreeBSD 7. by Hye-Shik Chang · 17 years ago
  98. 98f40b1 Update URL for Pygments. 0.8.1 is no longer available by Neal Norwitz · 17 years ago
  99. dd1a846 Fix new pop() method on os.environ on ignorecase-platforms. by Georg Brandl · 17 years ago
  100. 1e45f80 1. Add comments to provide top-level documentation. by Kurt B. Kaiser · 17 years ago