1. a690a99 * Migrate set() and frozenset() from the sandbox. by Raymond Hettinger · 21 years ago
  2. d456849 Fix typo by Raymond Hettinger · 21 years ago
  3. 6dab052 Change ValueErrors to TypeErrors and add PyList_Check() assertions. by Raymond Hettinger · 21 years ago
  4. 236a244 Verify heappop argument is a list. by Raymond Hettinger · 21 years ago
  5. cf0005b Mention patch #841977: modulefinder didn't find extension modules in packages by Thomas Heller · 21 years ago
  6. aaf1c8d SF #841977 - modulefinder fails to find extension modules in packages by Thomas Heller · 21 years ago
  7. 780c497 update_refs(): assert that incoming refcounts aren't 0. The comment by Tim Peters · 21 years ago
  8. 0bd743c subtype_dealloc(): Simplified overly contorted retracking logic. With by Tim Peters · 21 years ago
  9. f7f9e99 subtype_dealloc(): A more complete fix for critical bug 840829 + by Tim Peters · 21 years ago
  10. 981a918 Various edits by Andrew M. Kuchling · 21 years ago
  11. b845ef0 remove "support" for BerkeleyDB 3.1, it hasn't worked for a long time by Gregory P. Smith · 21 years ago
  12. d4e48b7 Patch #839877: Remove unused lambda expression. by Martin v. Löwis · 21 years ago
  13. f56d015 Patch #804543: strdup saved locales. Backported to 2.3. by Martin v. Löwis · 21 years ago
  14. add09b4 SF bug 840829: weakref callbacks and gc corrupt memory. by Tim Peters · 21 years ago
  15. 045f1de pyexpat stopped building on Windows -- whining about the lack of a by Tim Peters · 21 years ago
  16. 7d1dd04 Fix typo by Raymond Hettinger · 21 years ago
  17. bc3cba2 Explain the advantages of reversed. by Raymond Hettinger · 21 years ago
  18. 607c00f Present each feature in terms of what makes it useful or desirable. by Raymond Hettinger · 21 years ago
  19. 859db26 Improve backwards compatibility code to handle True/False. by Raymond Hettinger · 21 years ago
  20. ad983e7 Improve the implementation of itertools.tee(). by Raymond Hettinger · 21 years ago
  21. 767126d Make Message.__str__ more efficient. by Neil Schemenauer · 21 years ago
  22. d85ed1b fix typo in markup by Fred Drake · 21 years ago
  23. 28eae08 fix use of undefined markup by Fred Drake · 21 years ago
  24. dbe7980 add missing "if" by Fred Drake · 21 years ago
  25. 75aa4db Mention that getsid is new in 2.4. by Martin v. Löwis · 21 years ago
  26. d892137 Patch #798297: Add IMAP THREAD command. by Martin v. Löwis · 21 years ago
  27. 49ee14d Patch #839038: Add getsid(2). by Martin v. Löwis · 21 years ago
  28. 967b063 Plug tempfile.mktemp() hole (Iustin Pop). by Guido van Rossum · 21 years ago
  29. b25615939 mktemp() shouldn't rely on os.path.exists(), which can return False if by Guido van Rossum · 21 years ago
  30. f09994e fixed wrong error checking on fcntl call as per SF bug # 821896 by Alex Martelli · 21 years ago
  31. 0c5b4ad fixed obvious bug in _send_header as per SF bug #831271 by Alex Martelli · 21 years ago
  32. 721b776 fixed buggy comment as per SF bug #827856 by Alex Martelli · 21 years ago
  33. c516b0e clarified (in the 5.14 summary) that tests and comparisons all chain, by Alex Martelli · 21 years ago
  34. 37dc334 Add docs for readmodule_ex and its function-descriptors, fixing by Alex Martelli · 21 years ago
  35. 50324a6 Avoid giving advice that's bad for security, as per SF bug #823515 by Alex Martelli · 21 years ago
  36. 35d8360 Document Py_RETURN_NONE. by Brett Cannon · 21 years ago
  37. f7a6b67 Add 'see also' section pointing to the PEP by Andrew M. Kuchling · 21 years ago
  38. 1a42025 Add some recent changes by Andrew M. Kuchling · 21 years ago
  39. af28e4b Update test to handle list.__reversed__(). by Raymond Hettinger · 21 years ago
  40. 001f228 Improve the reverse list iterator to free memory as soon as the iterator by Raymond Hettinger · 21 years ago
  41. e21f606 SF bug #835457: Small typo in logging documentation by Raymond Hettinger · 21 years ago
  42. c24c910 Minor code fixup. Make sure that len reflects the current list size. by Raymond Hettinger · 21 years ago
  43. b3af181 Convert heapq.py to a C implementation. by Raymond Hettinger · 21 years ago
  44. 1021c44 Optimize reversed(list) using a custom iterator. by Raymond Hettinger · 21 years ago
  45. ff1f194 Fix the problem addressed by patch by Michael W. Hudson · 21 years ago
  46. dc62aec Add a new looping idiom by Raymond Hettinger · 21 years ago
  47. 5ce2fec Patch #837322: Clarify owning, borrowing, stealing. Backported to 2.3. by Martin v. Löwis · 21 years ago
  48. d2171d2 Overallocate target buffer for normalization more early. Fixes #834676. by Martin v. Löwis · 21 years ago
  49. 85c20a4 Implement and apply PEP 322, reverse iteration by Raymond Hettinger · 21 years ago
  50. f607fc5 Add traceback.format_exc(). by Neil Schemenauer · 21 years ago
  51. 904ed86 Make undetected error on stack unwind a fatal error. by Jeremy Hylton · 21 years ago
  52. 92bee36 missing news entry by Anthony Baxter · 21 years ago
  53. 7441e65 * SF patch 835100 - C++ // comments are not allowed. Use /* */ by Gregory P. Smith · 21 years ago
  54. ceac90a Fix compiler warning about possible use of n without assignment. by Jeremy Hylton · 21 years ago
  55. a703a21 * Use weakref's of DBCursor objects for the iterator cursors to avoid a by Gregory P. Smith · 21 years ago
  56. 83c1874 SF patch #834444: add versionadd to new functions by Raymond Hettinger · 21 years ago
  57. cc523fc SF patch #834015: Remove imports of unused modules by Raymond Hettinger · 21 years ago
  58. dc113a8 * Fix the singlethreaded deadlocks occurring in the simple bsddb interface. by Gregory P. Smith · 21 years ago
  59. e276717 Fix a tuple memory leak when raising DB, DBEnv and DBCursor "object by Gregory P. Smith · 21 years ago
  60. 54a831b Use PyTuple_Pack() to simplify enumerate(). by Raymond Hettinger · 21 years ago
  61. b4b9ced [Bug #817178] Fix incorrect arguments in example, noted by Terry Reedy by Andrew M. Kuchling · 21 years ago
  62. 2389c41 Patch #833710: Set INSTSONAME on Solaris. Backported to 2.3. by Martin v. Löwis · 21 years ago
  63. 893ffa4 Patch #830858: Correct the number of is-functions. Backported to 2.3 and 2.2. by Martin v. Löwis · 21 years ago
  64. 04570db Patch #628301: Update installer to by Martin v. Löwis · 21 years ago
  65. 45394c2 Patch #531629: Add multicall support. by Martin v. Löwis · 21 years ago
  66. f9b08b8 Patch #785689: Use basename in usage. Backported to 2.3. by Martin v. Löwis · 21 years ago
  67. be4fea6 Patch #787189: Explicitly define CTRL on SGI. by Martin v. Löwis · 21 years ago
  68. 48440b7 Patch #: Add POP3 over SSL support. by Martin v. Löwis · 21 years ago
  69. 9ad853b Patch #788404: ignore "b" and "t" mode modifiers in posix_popen. by Martin v. Löwis · 21 years ago
  70. 9885c93 Fix typo. by Raymond Hettinger · 21 years ago
  71. 82b2482 Minor grammatical fix. by Brett Cannon · 21 years ago
  72. c40b7af Update test to include "sorted" in dir(list). by Raymond Hettinger · 21 years ago
  73. 0a9b9da Add list.sorted() classmethod. by Raymond Hettinger · 21 years ago
  74. c43a7e7 SF bug #827902: ctime is not creation time by Raymond Hettinger · 21 years ago
  75. 9920430 SF #775057, fix IDLE problem in about dialog by Neal Norwitz · 21 years ago
  76. 030f68a note db2pickle/pickle2db tweaks by Skip Montanaro · 21 years ago
  77. 48f9c6d allow dump/load of gdbm files by Skip Montanaro · 21 years ago
  78. 9c8f7ea Fixed dis.disassemble_string(). Added dis.findlinestarts(). SF bug 811294 by Armin Rigo · 21 years ago
  79. 3be6d5d Documented gc.get_referrers() as dangerous. SF bug 793822 by Armin Rigo · 21 years ago
  80. 2b3eb40 Deleting cyclic object comparison. by Armin Rigo · 21 years ago
  81. 0e4f764 Fix nits in error messages. by Raymond Hettinger · 21 years ago
  82. 8476c4d SF bug #827902: ctime is not creation time by Raymond Hettinger · 21 years ago
  83. 0f10343 Docstring fix: XHTML 1.0 entities are supported by Andrew M. Kuchling · 21 years ago
  84. 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
  85. 405a795 Patch #803998: Correctly check for error in SSL_write. by Martin v. Löwis · 21 years ago
  86. 11892ec Patch #817854: Add missing operations for SSLFile. Fixes #792101. by Martin v. Löwis · 21 years ago
  87. 98779e0 Fix Greg Ward's error message nit: PyObject_SetItem and PySequenceSetItem by Raymond Hettinger · 21 years ago
  88. 9c7ed4c Document that varlist can be NULL. by Raymond Hettinger · 21 years ago
  89. cca3491 Another instance of the same typo. by Steve Purcell · 21 years ago
  90. d591f66 Replace the window() example with pairwise() which demonstrates tee(). by Raymond Hettinger · 21 years ago
  91. f0c5aec Minor improvements to itertools.tee(): by Raymond Hettinger · 21 years ago
  92. 397b45d Incorporated patch 819077, from George Yoshida: by Steve Purcell · 21 years ago
  93. a253e18 regressing the performance bugfix -- Guido wants the performance bug left by Alex Martelli · 21 years ago
  94. 1d313ab oh dear. Wrong manipulation. Committed a version of ceval.c from my by Armin Rigo · 21 years ago
  95. 092381a Made function declaration a proper C prototype by Armin Rigo · 21 years ago
  96. 8ed69e3 SF #829941, update tutorial, built-in types can be base classes since 2.2 by Neal Norwitz · 21 years ago
  97. dd66645 document the performance fix to builtin_sum(). by Alex Martelli · 21 years ago
  98. a2777d3 Changed builtin_sum to use PyNumber_InPlaceAdd (same semantics, but fixes by Alex Martelli · 21 years ago
  99. 5cf6394 Use PyArg_UnpackTuple() where possible. by Raymond Hettinger · 21 years ago
  100. 4514369 Improvements to coding for itertools.tee(): by Raymond Hettinger · 21 years ago