1. add09b4 SF bug 840829: weakref callbacks and gc corrupt memory. by Tim Peters · 21 years ago
  2. 045f1de pyexpat stopped building on Windows -- whining about the lack of a by Tim Peters · 21 years ago
  3. 7d1dd04 Fix typo by Raymond Hettinger · 21 years ago
  4. bc3cba2 Explain the advantages of reversed. by Raymond Hettinger · 21 years ago
  5. 607c00f Present each feature in terms of what makes it useful or desirable. by Raymond Hettinger · 21 years ago
  6. 859db26 Improve backwards compatibility code to handle True/False. by Raymond Hettinger · 21 years ago
  7. ad983e7 Improve the implementation of itertools.tee(). by Raymond Hettinger · 21 years ago
  8. 767126d Make Message.__str__ more efficient. by Neil Schemenauer · 21 years ago
  9. d85ed1b fix typo in markup by Fred Drake · 21 years ago
  10. 28eae08 fix use of undefined markup by Fred Drake · 21 years ago
  11. dbe7980 add missing "if" by Fred Drake · 21 years ago
  12. 75aa4db Mention that getsid is new in 2.4. by Martin v. Löwis · 21 years ago
  13. d892137 Patch #798297: Add IMAP THREAD command. by Martin v. Löwis · 21 years ago
  14. 49ee14d Patch #839038: Add getsid(2). by Martin v. Löwis · 21 years ago
  15. 967b063 Plug tempfile.mktemp() hole (Iustin Pop). by Guido van Rossum · 21 years ago
  16. b25615939 mktemp() shouldn't rely on os.path.exists(), which can return False if by Guido van Rossum · 21 years ago
  17. f09994e fixed wrong error checking on fcntl call as per SF bug # 821896 by Alex Martelli · 21 years ago
  18. 0c5b4ad fixed obvious bug in _send_header as per SF bug #831271 by Alex Martelli · 21 years ago
  19. 721b776 fixed buggy comment as per SF bug #827856 by Alex Martelli · 21 years ago
  20. c516b0e clarified (in the 5.14 summary) that tests and comparisons all chain, by Alex Martelli · 21 years ago
  21. 37dc334 Add docs for readmodule_ex and its function-descriptors, fixing by Alex Martelli · 21 years ago
  22. 50324a6 Avoid giving advice that's bad for security, as per SF bug #823515 by Alex Martelli · 21 years ago
  23. 35d8360 Document Py_RETURN_NONE. by Brett Cannon · 21 years ago
  24. f7a6b67 Add 'see also' section pointing to the PEP by Andrew M. Kuchling · 21 years ago
  25. 1a42025 Add some recent changes by Andrew M. Kuchling · 21 years ago
  26. af28e4b Update test to handle list.__reversed__(). by Raymond Hettinger · 21 years ago
  27. 001f228 Improve the reverse list iterator to free memory as soon as the iterator by Raymond Hettinger · 21 years ago
  28. e21f606 SF bug #835457: Small typo in logging documentation by Raymond Hettinger · 21 years ago
  29. c24c910 Minor code fixup. Make sure that len reflects the current list size. by Raymond Hettinger · 21 years ago
  30. b3af181 Convert heapq.py to a C implementation. by Raymond Hettinger · 21 years ago
  31. 1021c44 Optimize reversed(list) using a custom iterator. by Raymond Hettinger · 21 years ago
  32. ff1f194 Fix the problem addressed by patch by Michael W. Hudson · 21 years ago
  33. dc62aec Add a new looping idiom by Raymond Hettinger · 21 years ago
  34. 5ce2fec Patch #837322: Clarify owning, borrowing, stealing. Backported to 2.3. by Martin v. Löwis · 21 years ago
  35. d2171d2 Overallocate target buffer for normalization more early. Fixes #834676. by Martin v. Löwis · 21 years ago
  36. 85c20a4 Implement and apply PEP 322, reverse iteration by Raymond Hettinger · 21 years ago
  37. f607fc5 Add traceback.format_exc(). by Neil Schemenauer · 21 years ago
  38. 904ed86 Make undetected error on stack unwind a fatal error. by Jeremy Hylton · 21 years ago
  39. 92bee36 missing news entry by Anthony Baxter · 21 years ago
  40. 7441e65 * SF patch 835100 - C++ // comments are not allowed. Use /* */ by Gregory P. Smith · 21 years ago
  41. ceac90a Fix compiler warning about possible use of n without assignment. by Jeremy Hylton · 21 years ago
  42. a703a21 * Use weakref's of DBCursor objects for the iterator cursors to avoid a by Gregory P. Smith · 21 years ago
  43. 83c1874 SF patch #834444: add versionadd to new functions by Raymond Hettinger · 21 years ago
  44. cc523fc SF patch #834015: Remove imports of unused modules by Raymond Hettinger · 21 years ago
  45. dc113a8 * Fix the singlethreaded deadlocks occurring in the simple bsddb interface. by Gregory P. Smith · 21 years ago
  46. e276717 Fix a tuple memory leak when raising DB, DBEnv and DBCursor "object by Gregory P. Smith · 21 years ago
  47. 54a831b Use PyTuple_Pack() to simplify enumerate(). by Raymond Hettinger · 21 years ago
  48. b4b9ced [Bug #817178] Fix incorrect arguments in example, noted by Terry Reedy by Andrew M. Kuchling · 21 years ago
  49. 2389c41 Patch #833710: Set INSTSONAME on Solaris. Backported to 2.3. by Martin v. Löwis · 21 years ago
  50. 893ffa4 Patch #830858: Correct the number of is-functions. Backported to 2.3 and 2.2. by Martin v. Löwis · 21 years ago
  51. 04570db Patch #628301: Update installer to by Martin v. Löwis · 21 years ago
  52. 45394c2 Patch #531629: Add multicall support. by Martin v. Löwis · 21 years ago
  53. f9b08b8 Patch #785689: Use basename in usage. Backported to 2.3. by Martin v. Löwis · 21 years ago
  54. be4fea6 Patch #787189: Explicitly define CTRL on SGI. by Martin v. Löwis · 21 years ago
  55. 48440b7 Patch #: Add POP3 over SSL support. by Martin v. Löwis · 21 years ago
  56. 9ad853b Patch #788404: ignore "b" and "t" mode modifiers in posix_popen. by Martin v. Löwis · 21 years ago
  57. 9885c93 Fix typo. by Raymond Hettinger · 21 years ago
  58. 82b2482 Minor grammatical fix. by Brett Cannon · 21 years ago
  59. c40b7af Update test to include "sorted" in dir(list). by Raymond Hettinger · 21 years ago
  60. 0a9b9da Add list.sorted() classmethod. by Raymond Hettinger · 21 years ago
  61. c43a7e7 SF bug #827902: ctime is not creation time by Raymond Hettinger · 21 years ago
  62. 9920430 SF #775057, fix IDLE problem in about dialog by Neal Norwitz · 21 years ago
  63. 030f68a note db2pickle/pickle2db tweaks by Skip Montanaro · 21 years ago
  64. 48f9c6d allow dump/load of gdbm files by Skip Montanaro · 21 years ago
  65. 9c8f7ea Fixed dis.disassemble_string(). Added dis.findlinestarts(). SF bug 811294 by Armin Rigo · 21 years ago
  66. 3be6d5d Documented gc.get_referrers() as dangerous. SF bug 793822 by Armin Rigo · 21 years ago
  67. 2b3eb40 Deleting cyclic object comparison. by Armin Rigo · 21 years ago
  68. 0e4f764 Fix nits in error messages. by Raymond Hettinger · 21 years ago
  69. 8476c4d SF bug #827902: ctime is not creation time by Raymond Hettinger · 21 years ago
  70. 0f10343 Docstring fix: XHTML 1.0 entities are supported by Andrew M. Kuchling · 21 years ago
  71. b546be2 Fix inaccuracy: all entities from XHTML 1.0 are supported (according to text further down in this file) by Andrew M. Kuchling · 21 years ago
  72. 405a795 Patch #803998: Correctly check for error in SSL_write. by Martin v. Löwis · 21 years ago
  73. 11892ec Patch #817854: Add missing operations for SSLFile. Fixes #792101. by Martin v. Löwis · 21 years ago
  74. 98779e0 Fix Greg Ward's error message nit: PyObject_SetItem and PySequenceSetItem by Raymond Hettinger · 21 years ago
  75. 9c7ed4c Document that varlist can be NULL. by Raymond Hettinger · 21 years ago
  76. cca3491 Another instance of the same typo. by Steve Purcell · 21 years ago
  77. d591f66 Replace the window() example with pairwise() which demonstrates tee(). by Raymond Hettinger · 21 years ago
  78. f0c5aec Minor improvements to itertools.tee(): by Raymond Hettinger · 21 years ago
  79. 397b45d Incorporated patch 819077, from George Yoshida: by Steve Purcell · 21 years ago
  80. a253e18 regressing the performance bugfix -- Guido wants the performance bug left by Alex Martelli · 21 years ago
  81. 1d313ab oh dear. Wrong manipulation. Committed a version of ceval.c from my by Armin Rigo · 21 years ago
  82. 092381a Made function declaration a proper C prototype by Armin Rigo · 21 years ago
  83. 8ed69e3 SF #829941, update tutorial, built-in types can be base classes since 2.2 by Neal Norwitz · 21 years ago
  84. dd66645 document the performance fix to builtin_sum(). by Alex Martelli · 21 years ago
  85. a2777d3 Changed builtin_sum to use PyNumber_InPlaceAdd (same semantics, but fixes by Alex Martelli · 21 years ago
  86. 5cf6394 Use PyArg_UnpackTuple() where possible. by Raymond Hettinger · 21 years ago
  87. 4514369 Improvements to coding for itertools.tee(): by Raymond Hettinger · 21 years ago
  88. 23b44a3 Patch #812378: Normalize white space. by Martin v. Löwis · 21 years ago
  89. f8d59d2 Patch #828384: Don't discard nested exception in AddObject. by Martin v. Löwis · 21 years ago
  90. 7883dc8 [Patch #772077 from Tim Rice] Fix for compiling the readline module on UnixWare; fix goofy comment indent. 2.3 bugfix candidate by Andrew M. Kuchling · 21 years ago
  91. 10a4449 [Bug #822668] tarfile raises an exception if the tarfile is gzipped and is too large; the gzip filesize should be written out mod 2**32. (Reported by Johan Fredrik Ohman) by Andrew M. Kuchling · 21 years ago
  92. 1b3c04b Fixed bug introduced in revision 1.27 by Armin Rigo · 21 years ago
  93. 4894c30 Fix a bug in the memory reallocation code of PyUnicode_TranslateCharmap(). by Walter Dörwald · 21 years ago
  94. 6a5b027 Added itertools.tee() by Raymond Hettinger · 21 years ago
  95. 16b9fa8 - The pwd module incorrectly advertised its struct type as by Guido van Rossum · 21 years ago
  96. 50a2570 Record an item I missed and bump the version number. [2.3 bugfix candidate.] by Andrew M. Kuchling · 21 years ago
  97. d4210bc Patch #813200: Quote executable path on Windows. Fixes #811082. by Martin v. Löwis · 21 years ago
  98. ee950ff - add "Why is Python installed on my computer?" as a documentation FAQ by Fred Drake · 21 years ago
  99. 38443c1 Remove unneeded import. by Guido van Rossum · 21 years ago
  100. 97aa32b Replace a reduce() with sum(). by Raymond Hettinger · 21 years ago