1. 64958a1 Guido grants a Christmas wish: by Raymond Hettinger · 21 years ago
  2. c0d49d8 Fix typo and improve wording a bit. by Raymond Hettinger · 21 years ago
  3. 060ebed Add an entry for addition of {str,unicode}.rsplit. by Hye-Shik Chang · 21 years ago
  4. 37c5f2a Add news item about processor support in urllib2. by Jeremy Hylton · 21 years ago
  5. 8f5cdaa * Added a new method flag, METH_COEXIST. by Raymond Hettinger · 21 years ago
  6. d25c1c6 Implement itertools.groupby() by Raymond Hettinger · 21 years ago
  7. c7501d5 distutils compilers now compile source files in the same order as they by Thomas Heller · 21 years ago
  8. 713ade6 Add news about removal of the PendingDeprecationWarning from apply(). by Fred Drake · 21 years ago
  9. c8de458 Add parameters indent, width and depth to pprint.pprint() and pprint.pformat() by Walter Dörwald · 21 years ago
  10. 7a7ede5 Patch #750542: pprint now will pretty print subclasses of list, tuple by Walter Dörwald · 21 years ago
  11. 1d7323e Py_Finalize(): disabled the second call of cyclic gc, and added extensive by Tim Peters · 21 years ago
  12. 166958b As discussed on python-dev, added two extractor functions to the by Raymond Hettinger · 21 years ago
  13. fd25aca Add news item for _winreg fix (SF bug 851056). by Guido van Rossum · 21 years ago
  14. 6c9e130 - Removed FutureWarnings related to hex/oct literals and conversions by Guido van Rossum · 21 years ago
  15. b310591 See SF #848614: distutils' msvccompiler now tries to detect that MSVC6 by Thomas Heller · 21 years ago
  16. 94681fc Patch #849595: Add socket.shutdown() constants. by Martin v. Löwis · 21 years ago
  17. 4f8f976 Add optional fillchar argument to ljust(), rjust(), and center() string methods. by Raymond Hettinger · 21 years ago
  18. bc0f2ab Expose dict_contains() and PyDict_Contains() with is about 10% faster by Raymond Hettinger · 21 years ago
  19. baf0f8f - When method objects have an attribute that can be satisfied either by Guido van Rossum · 21 years ago
  20. 403a203 SF bug 839548: Bug in type's GC handling causes segfaults. by Tim Peters · 21 years ago
  21. af7dc8d Patch #831747: Add skip_accept_encoding parameter to putrequest. by Martin v. Löwis · 21 years ago
  22. 70b9f49 Remove deprecation of sets.Set.update(). by Raymond Hettinger · 21 years ago
  23. 6caea37 Patch #794400: Let PYTHONSTARTUP influence the compiler flags. by Martin v. Löwis · 21 years ago
  24. a690a99 * Migrate set() and frozenset() from the sandbox. by Raymond Hettinger · 21 years ago
  25. cf0005b Mention patch #841977: modulefinder didn't find extension modules in packages by Thomas Heller · 21 years ago
  26. add09b4 SF bug 840829: weakref callbacks and gc corrupt memory. by Tim Peters · 21 years ago
  27. d892137 Patch #798297: Add IMAP THREAD command. by Martin v. Löwis · 21 years ago
  28. 967b063 Plug tempfile.mktemp() hole (Iustin Pop). by Guido van Rossum · 21 years ago
  29. b3af181 Convert heapq.py to a C implementation. by Raymond Hettinger · 21 years ago
  30. 85c20a4 Implement and apply PEP 322, reverse iteration by Raymond Hettinger · 21 years ago
  31. f607fc5 Add traceback.format_exc(). by Neil Schemenauer · 21 years ago
  32. 92bee36 missing news entry by Anthony Baxter · 21 years ago
  33. 45394c2 Patch #531629: Add multicall support. by Martin v. Löwis · 21 years ago
  34. 48440b7 Patch #: Add POP3 over SSL support. by Martin v. Löwis · 21 years ago
  35. 0a9b9da Add list.sorted() classmethod. by Raymond Hettinger · 21 years ago
  36. 030f68a note db2pickle/pickle2db tweaks by Skip Montanaro · 21 years ago
  37. 2b3eb40 Deleting cyclic object comparison. by Armin Rigo · 21 years ago
  38. a253e18 regressing the performance bugfix -- Guido wants the performance bug left by Alex Martelli · 21 years ago
  39. dd66645 document the performance fix to builtin_sum(). by Alex Martelli · 21 years ago
  40. 6a5b027 Added itertools.tee() by Raymond Hettinger · 21 years ago
  41. 16b9fa8 - The pwd module incorrectly advertised its struct type as by Guido van Rossum · 21 years ago
  42. de05032 Note the update to Expat 1.95.7. by Fred Drake · 21 years ago
  43. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  44. 26b3a7b Modified the Py_RETURN_* macros by having the statements surrounded by {} in by Brett Cannon · 21 years ago
  45. 52da449 Patch #823259: Update spec file: by Martin v. Löwis · 21 years ago
  46. 01a74b2 Make CObjects mutable. Fixes #477441. by Martin v. Löwis · 21 years ago
  47. ad3fc44 Implemented non-recursive SRE matching. by Gustavo Niemeyer · 21 years ago
  48. 42b1ba3 * list.sort() now supports three keyword arguments: cmp, key, and reverse. by Raymond Hettinger · 21 years ago
  49. 90f7d25 Added Bjorn Pettersen for initial conversion of Lib/platform.py's docstring to LaTeX. by Brett Cannon · 21 years ago
  50. cb2da43 Extended tuple's C API to include a new function, PyTuple_Pack() that is by Raymond Hettinger · 21 years ago
  51. d662548 Patch #810914: Return absolute path for mkstemp. Fixes #810408. by Martin v. Löwis · 21 years ago
  52. 5d9ca4e Add mention of urlparse becoming RFC 2396 compliant. by Brett Cannon · 21 years ago
  53. eab353d See rev. 1.250 for log message by Brett Cannon · 21 years ago
  54. 02c58f8 SF patch #820195 by Wojtek Walczak (gminick at users.sourceforge.net): by Guido van Rossum · 21 years ago
  55. 2f726e9 SF bug #812202: randint is always even by Raymond Hettinger · 21 years ago
  56. 5c68ef0 two bugfixes by Anthony Baxter · 21 years ago
  57. f64ec0f A helper to dump info about the current frame, assuming it is the variable f. by Jeremy Hylton · 21 years ago
  58. def9934 forgot the NEWS blurb about the change to csv.DictReader by Skip Montanaro · 21 years ago
  59. 3bbd654 Patch #813445: Add IPPROTO_IPV6 option to the socketmodule. by Martin v. Löwis · 21 years ago
  60. fd95c3a updates from sean by Anthony Baxter · 21 years ago
  61. 9a80c5d Added codec for bz2 compression. by Raymond Hettinger · 21 years ago
  62. 0e5a51d New for unittest.py. by Guido van Rossum · 21 years ago
  63. d7160f8 Added test whether wchar_t is signed or not. A signed wchar_t is not usable as internal unicode type base for Py_UNICODE since the unicode implementation assumes an unsigned type. by Marc-André Lemburg · 21 years ago
  64. e7a9796 Patch #800697: Add readline.clear_history. by Martin v. Löwis · 21 years ago
  65. c6bb6c0 Patch #707167: Pass dircache exceptions to the caller. Fixes #682813. by Martin v. Löwis · 21 years ago
  66. d808279 Double-fix of crash in Unicode freelist handling. by Jeremy Hylton · 21 years ago
  67. deadbf5 SF #662923 by Raymond Hettinger · 21 years ago
  68. 62dba4c select.select() now accepts a sequence (as defined by PySequence_Fast()) for by Brett Cannon · 21 years ago
  69. fd4fa88 mention new module doc display feature of pydoc in libref and NEWS by Skip Montanaro · 21 years ago
  70. f1827cf SF bug 801631: file.truncate fault on windows. by Tim Peters · 21 years ago
  71. 3f7a948 **kwds arg was missing from __init__ for Dict{Reader,Writer} classes. by Skip Montanaro · 21 years ago
  72. 2f5bf17 NEWS about email package 794466 patch. by Barry Warsaw · 21 years ago
  73. 6ec58ca Document the Pynche patch. by Barry Warsaw · 21 years ago
  74. 3b9cff1 SF 798269: bug fix for doctest (sf bug id: 798254 by Raymond Hettinger · 21 years ago
  75. ec99b5f SF patch #798534: Windows os.popen needlessly gets a reference to tuple () by Raymond Hettinger · 21 years ago
  76. 14cc1e3 SF patch #798467: Update docstring of has_key for bool changes by Raymond Hettinger · 21 years ago
  77. 9bfe533 SF bug #795506: Wrong handling of string format code for float values. by Raymond Hettinger · 21 years ago
  78. e41d4c8 Added doubled word warnings. by Raymond Hettinger · 21 years ago
  79. d24a2a4 Describe the fix to the email package. by Barry Warsaw · 21 years ago
  80. 1a3abcb This started opening files in text mode by default in the 2.3 release, by Tim Peters · 21 years ago
  81. 6a18012 Improvements to set.py: by Raymond Hettinger · 21 years ago
  82. ee562fc Make sets.py compatible with Py2.2 by Raymond Hettinger · 21 years ago
  83. 465fa3d complex_new(): This could leak when the argument was neither string nor by Tim Peters · 21 years ago
  84. 69f31eb [Patch #739124] Add use_default_colors() to curses module by Andrew M. Kuchling · 21 years ago
  85. cc9d004 mention pymemcompat.h in Misc/README by Michael W. Hudson · 21 years ago
  86. 3081d59 SF bug #778964: bad seed in python 2.3 random by Raymond Hettinger · 21 years ago
  87. 5475f23 SF bug #770485: cStringIO does not set closed attr by Raymond Hettinger · 21 years ago
  88. b5a4208 Modified itertools.izip() to match the behavior of __builtin__.zip() by Raymond Hettinger · 21 years ago
  89. beb35f4 Removed deprecated functions by Raymond Hettinger · 21 years ago
  90. 83f5291 forgot to commit this - note about the signal module SIGRT(MIN,MAX) by Anthony Baxter · 21 years ago
  91. b7150a2 Mention caching and better thread-safety for Lib/_strptime.py by Brett Cannon · 21 years ago
  92. eaef615 As discussed on python-dev, changed builtin.zip() to handle zero arguments by Raymond Hettinger · 21 years ago
  93. cb3988c add skeletal "what's new" for 2.4a1 and mention a couple python-mode tweaks. by Skip Montanaro · 21 years ago
  94. 0316116 delete the f1 key binding. py-help-at-point is still available @ C-c C-h. by Skip Montanaro · 21 years ago
  95. 98a4fbe make pending-delete/delete-selection mode work with py-electric-colon by Skip Montanaro · 21 years ago
  96. 4563769 tweak to py-fill-paragraph - problem noted by John Lee and correction by Skip Montanaro · 21 years ago
  97. 73a8a4b Fix typo. by Walter Dörwald · 21 years ago
  98. 5a2e2c1 Get rid of empty sections by Barry Warsaw · 21 years ago
  99. 36c1afc SF bug 778400: IDLE hangs when selecting "Edit with IDLE". by Tim Peters · 21 years ago
  100. 0963803 Added section for 2.3 final; moved IDLE news into it that I inserted in by Tim Peters · 21 years ago