1. 26b3a7b Modified the Py_RETURN_* macros by having the statements surrounded by {} in by Brett Cannon · 21 years ago
  2. 52da449 Patch #823259: Update spec file: by Martin v. Löwis · 21 years ago
  3. 01a74b2 Make CObjects mutable. Fixes #477441. by Martin v. Löwis · 21 years ago
  4. ad3fc44 Implemented non-recursive SRE matching. by Gustavo Niemeyer · 21 years ago
  5. 42b1ba3 * list.sort() now supports three keyword arguments: cmp, key, and reverse. by Raymond Hettinger · 21 years ago
  6. 90f7d25 Added Bjorn Pettersen for initial conversion of Lib/platform.py's docstring to LaTeX. by Brett Cannon · 21 years ago
  7. cb2da43 Extended tuple's C API to include a new function, PyTuple_Pack() that is by Raymond Hettinger · 21 years ago
  8. d662548 Patch #810914: Return absolute path for mkstemp. Fixes #810408. by Martin v. Löwis · 21 years ago
  9. 5d9ca4e Add mention of urlparse becoming RFC 2396 compliant. by Brett Cannon · 21 years ago
  10. eab353d See rev. 1.250 for log message by Brett Cannon · 21 years ago
  11. 02c58f8 SF patch #820195 by Wojtek Walczak (gminick at users.sourceforge.net): by Guido van Rossum · 21 years ago
  12. 2f726e9 SF bug #812202: randint is always even by Raymond Hettinger · 21 years ago
  13. 5c68ef0 two bugfixes by Anthony Baxter · 21 years ago
  14. f64ec0f A helper to dump info about the current frame, assuming it is the variable f. by Jeremy Hylton · 21 years ago
  15. def9934 forgot the NEWS blurb about the change to csv.DictReader by Skip Montanaro · 21 years ago
  16. 3bbd654 Patch #813445: Add IPPROTO_IPV6 option to the socketmodule. by Martin v. Löwis · 21 years ago
  17. fd95c3a updates from sean by Anthony Baxter · 21 years ago
  18. 9a80c5d Added codec for bz2 compression. by Raymond Hettinger · 21 years ago
  19. 0e5a51d New for unittest.py. by Guido van Rossum · 21 years ago
  20. 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
  21. e7a9796 Patch #800697: Add readline.clear_history. by Martin v. Löwis · 21 years ago
  22. c6bb6c0 Patch #707167: Pass dircache exceptions to the caller. Fixes #682813. by Martin v. Löwis · 21 years ago
  23. d808279 Double-fix of crash in Unicode freelist handling. by Jeremy Hylton · 21 years ago
  24. deadbf5 SF #662923 by Raymond Hettinger · 21 years ago
  25. 62dba4c select.select() now accepts a sequence (as defined by PySequence_Fast()) for by Brett Cannon · 21 years ago
  26. fd4fa88 mention new module doc display feature of pydoc in libref and NEWS by Skip Montanaro · 21 years ago
  27. f1827cf SF bug 801631: file.truncate fault on windows. by Tim Peters · 21 years ago
  28. 3f7a948 **kwds arg was missing from __init__ for Dict{Reader,Writer} classes. by Skip Montanaro · 21 years ago
  29. 2f5bf17 NEWS about email package 794466 patch. by Barry Warsaw · 21 years ago
  30. 6ec58ca Document the Pynche patch. by Barry Warsaw · 21 years ago
  31. 3b9cff1 SF 798269: bug fix for doctest (sf bug id: 798254 by Raymond Hettinger · 21 years ago
  32. ec99b5f SF patch #798534: Windows os.popen needlessly gets a reference to tuple () by Raymond Hettinger · 21 years ago
  33. 14cc1e3 SF patch #798467: Update docstring of has_key for bool changes by Raymond Hettinger · 21 years ago
  34. 9bfe533 SF bug #795506: Wrong handling of string format code for float values. by Raymond Hettinger · 21 years ago
  35. e41d4c8 Added doubled word warnings. by Raymond Hettinger · 21 years ago
  36. d24a2a4 Describe the fix to the email package. by Barry Warsaw · 21 years ago
  37. 1a3abcb This started opening files in text mode by default in the 2.3 release, by Tim Peters · 21 years ago
  38. 6a18012 Improvements to set.py: by Raymond Hettinger · 21 years ago
  39. ee562fc Make sets.py compatible with Py2.2 by Raymond Hettinger · 21 years ago
  40. 465fa3d complex_new(): This could leak when the argument was neither string nor by Tim Peters · 21 years ago
  41. 69f31eb [Patch #739124] Add use_default_colors() to curses module by Andrew M. Kuchling · 21 years ago
  42. cc9d004 mention pymemcompat.h in Misc/README by Michael W. Hudson · 21 years ago
  43. 3081d59 SF bug #778964: bad seed in python 2.3 random by Raymond Hettinger · 21 years ago
  44. 5475f23 SF bug #770485: cStringIO does not set closed attr by Raymond Hettinger · 21 years ago
  45. b5a4208 Modified itertools.izip() to match the behavior of __builtin__.zip() by Raymond Hettinger · 21 years ago
  46. beb35f4 Removed deprecated functions by Raymond Hettinger · 21 years ago
  47. 83f5291 forgot to commit this - note about the signal module SIGRT(MIN,MAX) by Anthony Baxter · 21 years ago
  48. b7150a2 Mention caching and better thread-safety for Lib/_strptime.py by Brett Cannon · 21 years ago
  49. eaef615 As discussed on python-dev, changed builtin.zip() to handle zero arguments by Raymond Hettinger · 21 years ago
  50. cb3988c add skeletal "what's new" for 2.4a1 and mention a couple python-mode tweaks. by Skip Montanaro · 21 years ago
  51. 0316116 delete the f1 key binding. py-help-at-point is still available @ C-c C-h. by Skip Montanaro · 21 years ago
  52. 98a4fbe make pending-delete/delete-selection mode work with py-electric-colon by Skip Montanaro · 21 years ago
  53. 4563769 tweak to py-fill-paragraph - problem noted by John Lee and correction by Skip Montanaro · 21 years ago
  54. 73a8a4b Fix typo. by Walter Dörwald · 21 years ago
  55. 5a2e2c1 Get rid of empty sections by Barry Warsaw · 21 years ago
  56. 36c1afc SF bug 778400: IDLE hangs when selecting "Edit with IDLE". by Tim Peters · 21 years ago
  57. 0963803 Added section for 2.3 final; moved IDLE news into it that I inserted in by Tim Peters · 21 years ago
  58. c794a1c Gave the main NEWS file its own IDLE section, and populated it with a by Tim Peters · 21 years ago
  59. 0517c9a Updated news for 2.3c2. by Barry Warsaw · 21 years ago
  60. 6560a25 Update version numbers and dates for 2.3c2 -- we won't be able to do this by Tim Peters · 21 years ago
  61. e004041 Bugfix for #775892: added -mno-fused-madd to BASECFLAGS on MacOSX. by Jack Jansen · 21 years ago
  62. 354e3d9 Change the zipimport implementation to accept files containing by Thomas Heller · 21 years ago
  63. 291f14e Windows fix: When PYTHONCASEOK is set, or for any other reason imports by Tim Peters · 21 years ago
  64. 01a4312 Added note about the pyexpat memory leak fix. by Fred Drake · 21 years ago
  65. 6a62725 Merge 23c1-branch back into the head. Barry will send email about the by Tim Peters · 21 years ago
  66. d71a551 Minor typo by Barry Warsaw · 21 years ago
  67. b434d49 Oh, well. by Jeremy Hylton · 21 years ago
  68. 0ed18c2 Forgot the release date. by Jeremy Hylton · 21 years ago
  69. 8aca417 The rest of the news. by Jeremy Hylton · 21 years ago
  70. ed86003 SF patch 764470 by Jeremy Hylton · 21 years ago
  71. ca9e21c Partial progress on NEWS. by Jeremy Hylton · 21 years ago
  72. dabc37c SF bug 770601. by Jeremy Hylton · 21 years ago
  73. af4c505 Remove code that tried to warn about shadowing builtin names after a by Neil Schemenauer · 21 years ago
  74. 6c733d3 Add mmap bugfix; typo and grammar fixes by Andrew M. Kuchling · 21 years ago
  75. 71adf7e Doctest now examines all docstrings by default. Previously, it would by Raymond Hettinger · 21 years ago
  76. 7a6c733 Make close() identical to __del__() for a dumbdbm database. Make by Tim Peters · 21 years ago
  77. 0320464 Repaired typos in comments. by Tim Peters · 21 years ago
  78. d7472ec Fixed critical shutdown race in _Database._commit. by Tim Peters · 21 years ago
  79. ca60cac Update for new module and new builtin. by Raymond Hettinger · 21 years ago
  80. e5e065b New function sys.getcheckinterval(), to complement setcheckinterval(). by Tim Peters · 21 years ago
  81. 2e7e7df An Anonymous Coward on c.l.py posted a little program with bizarre by Tim Peters · 21 years ago
  82. eec26f9 Correct documentation of check interval - it's 100 by default, not 10 any by Skip Montanaro · 21 years ago
  83. 3c0f2c9 Fix SF bug #763637, 2.3b2 unpack tuple of wrong size in after_cancel by Neal Norwitz · 21 years ago
  84. 59aba12 Make the classes exposed by threading.py new-style classes. This is by Tim Peters · 21 years ago
  85. e7dfe21 Fix SF bug #763023, difflib.py: ratio() zero division not caught by Neal Norwitz · 21 years ago
  86. 20def8b Make temporary change of using _strptime for time.strptime permanent. by Brett Cannon · 21 years ago
  87. 592c4cc SF bug 753592, websucker bug by Neal Norwitz · 21 years ago
  88. d693a81 Fix SF 762891: "del p[key]" on proxy object raises SystemError() by Raymond Hettinger · 21 years ago
  89. 562a855 Merge branch updates back into the main trunk by Raymond Hettinger · 21 years ago
  90. b752c27 Add several news items for changes I made since b1. by Jeremy Hylton · 21 years ago
  91. 5e2ed81 Removed XXX comments about missing threading.py functions. by Tim Peters · 21 years ago
  92. 883f223 Added news about os.environ['PYTHONINSPECT'] = 'yes' by Barry Warsaw · 21 years ago
  93. c98ccfd Typo repair. by Tim Peters · 21 years ago
  94. 685e697 Provide dummy (do-nothing) settrace() and setprofile() functions until by Tim Peters · 21 years ago
  95. 2740944 Filled in release date; repaired grammar in a news item. by Tim Peters · 21 years ago
  96. db3756d Some nifty doctest extensions from Jim Fulton, currently used in Zope3. by Tim Peters · 21 years ago
  97. 643bcec SF patch #760257: add socket.timeout exception by Raymond Hettinger · 21 years ago
  98. a4148c3 Added Bob Halley for work on socket.timeout by Raymond Hettinger · 21 years ago
  99. 90a2041 Added Steven Taschuk for efforts fixing zipfile.py by Raymond Hettinger · 21 years ago
  100. c0fac96 SF patch #756996: Bare except in ZipFile.testzip() by Raymond Hettinger · 21 years ago