1. 276887b Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. Fixed by patch #922167. by Collin Winter · 18 years ago
  2. 7b9c555 Bug #1678647: write a newline after printing an exception in any by Georg Brandl · 18 years ago
  3. 871f1bc Backport from Py3k branch: by Georg Brandl · 18 years ago
  4. 2681beb Patch #1677862: Require a space or tab after import in .pth files. by Martin v. Löwis · 18 years ago
  5. eb62357 Bug #1675511: Use -Kpic instead of -xcode=pic32 on Solaris/x86. by Martin v. Löwis · 18 years ago
  6. 2faa9e1 Patch #1192590: Fix pdb's "ignore" and "condition" commands so they trap the IndexError caused by passing in an invalid breakpoint number. by Collin Winter · 18 years ago
  7. 8903208 Patch #1675981: remove unreachable code from type.__new__() method. by Žiga Seilnacht · 18 years ago
  8. ae04106 Patch #1599845: Add an option to disable the implicit calls to server_bind() and server_activate() in the constructors for TCPServer, SimpleXMLRPCServer and DocXMLRPCServer. by Collin Winter · 18 years ago
  9. faaa204 Add proper attribution for a bug fix. by Collin Winter · 18 years ago
  10. 22c42ba Bug #1531963: Make SocketServer.TCPServer's server_address always be equal to calling getsockname() on the server's socket. by Collin Winter · 18 years ago
  11. 2456a3c Bug #1651235: When a tuple was passed to a ctypes function call, by Thomas Heller · 18 years ago
  12. e38051d Patch #1491866: change the complex() constructor to allow parthensized forms. This means complex(repr(x)) now works instead of raising a ValueError. by Collin Winter · 18 years ago
  13. c2f7725 Fix bug #1646630: ctypes.string_at(buf, 0) and ctypes.wstring_at(buf, 0) by Thomas Heller · 18 years ago
  14. b7b2b4e Bug #1629566: clarify the docs on the return values of parsedate() and parsedate_tz() in email.utils and rfc822. by Collin Winter · 18 years ago
  15. 1190a38 Patch #957003: Implement smtplib.LMTP. by Martin v. Löwis · 18 years ago
  16. fb728de Add NEWS item for patch #1481079 (r54234). by Collin Winter · 18 years ago
  17. a30fcb4 Introduce test.test_support.TransientResource. It's a context manager to by Brett Cannon · 18 years ago
  18. 9caadf8 Add a NEWS entry for rev. 54207,8. by Georg Brandl · 18 years ago
  19. 05c075d Bug #1115886: os.path.splitext('.cshrc') gives now ('.cshrc', ''). by Martin v. Löwis · 18 years ago
  20. d0a9625 Patch #787789: allow to pass custom TestRunner instances to unittest's by Georg Brandl · 18 years ago
  21. 15c5ce9 Patches #1550273, #1550272: fix a few bugs in unittest and add a by Georg Brandl · 18 years ago
  22. 71ff646 Patch #1001604: glob.glob() now returns unicode filenames if it was by Georg Brandl · 18 years ago
  23. aa2321b Patch #703779: unset __file__ in __main__ after running a file. This by Georg Brandl · 18 years ago
  24. 49aafc9 Variant of patch #697613: don't exit the interpreter on a SystemExit by Georg Brandl · 18 years ago
  25. 8537c30 Document change to curses. by Walter Dörwald · 18 years ago
  26. 40c6261 Patch #1654417: make operator.{get,set,del}slice use the full range by Georg Brandl · 18 years ago
  27. 00cd818 Patch #1638879: don't accept strings with embedded NUL bytes in long(). by Georg Brandl · 18 years ago
  28. 2054ee9 Patch #1646728: datetime.fromtimestamp fails with negative by Guido van Rossum · 18 years ago
  29. d128732 patch 1673619 - identify extension modules which cannot be built by Skip Montanaro · 18 years ago
  30. ab8a6bb Patch #912410: Replace HTML entity references for attribute values by Martin v. Löwis · 18 years ago
  31. ff432e6 Patch #1663234: you can now run doctest on test files and modules by Georg Brandl · 18 years ago
  32. 098cd69 Bug #1674503: close the file opened by execfile() in an error condition. by Georg Brandl · 18 years ago
  33. 3eb7648 Patch #1121142: Implement ZipFile.open. by Martin v. Löwis · 18 years ago
  34. d28b9fc Patch #1671450: add a section about subclassing builtin types to the by Georg Brandl · 18 years ago
  35. 0fca97a Patch #1674228: when assigning a slice (old-style), check for the by Georg Brandl · 18 years ago
  36. f694b1b note MacPorts/BerkDB change in setup.py by Skip Montanaro · 18 years ago
  37. c37e5e0 Add collections.NamedTuple by Raymond Hettinger · 18 years ago
  38. cca7540 Add news about changes to metaclasses and __bases__ error checking. by Jeremy Hylton · 18 years ago
  39. 88516a6 When printing an unraisable error, don't print exceptions. before the name. by Neal Norwitz · 18 years ago
  40. c5ceb25 Fix crash in exec when unicode filename can't be decoded. by Jeremy Hylton · 18 years ago
  41. d36862c Add itertools.izip_longest(). by Raymond Hettinger · 18 years ago
  42. 382abef Patch #1490190: posixmodule now includes os.chflags() and os.lchflags() by Martin v. Löwis · 18 years ago
  43. 0713a68 Moved misplaced news item. by Lars Gustäbel · 18 years ago
  44. 00166c5 Add merge() function to heapq. by Raymond Hettinger · 18 years ago
  45. 971a012 Update the encoding package's search function to use absolute imports when by Brett Cannon · 19 years ago
  46. 983d100 Patch #1494140: Add documentation for the new struct.Struct object. by Georg Brandl · 19 years ago
  47. 45423a7 Patch #1432399: Add HCI sockets. by Martin v. Löwis · 19 years ago
  48. 5b1a785 Patch #1647484: Renamed GzipFile's filename attribute to name. The by Lars Gustäbel · 19 years ago
  49. b1cc1d4 Patch #1657276: Make NETLINK_DNRTMSG conditional. Will backport. by Martin v. Löwis · 19 years ago
  50. 84f6de9 Patch #1517891: Make 'a' create the file if it doesn't exist. Fixes #1514451. by Martin v. Löwis · 19 years ago
  51. c6d626e Patch #698833: Support file decryption in zipfile. by Martin v. Löwis · 19 years ago
  52. 07aa3ed Patch #685268: Consider a package's __path__ in imputil. Will backport. by Martin v. Löwis · 19 years ago
  53. 2bad58f Patch 1463026: Support default namespace in XMLGenerator. by Martin v. Löwis · 19 years ago
  54. 691acf2 fix trace.py --ignore-dir by Skip Montanaro · 19 years ago
  55. 0a20326 Bug #1600860: Search for shared python library in LIBDIR, not by Martin v. Löwis · 19 years ago
  56. fd96326 Bug #1653736: Properly discard third argument to slot_nb_inplace_power. by Martin v. Löwis · 19 years ago
  57. 4c11a92 Bug #1653736: Complain about keyword arguments to time.isoformat. by Martin v. Löwis · 19 years ago
  58. 3f8aca1 Patch #1652681: create nonexistent files in append mode and by Lars Gustäbel · 19 years ago
  59. 5f9c6ae Applied patch 1124861.3.patch to solve bug #1124861: Automatically create pipes on Windows, if GetStdHandle fails. Will backport. by Peter Astrand · 19 years ago
  60. 129bd52 No more raising of string exceptions! by Brett Cannon · 19 years ago
  61. e05e6b0 Add a test for slicing an exception. by Brett Cannon · 19 years ago
  62. 4ba9e5b Patch #1634778: add missing encoding aliases for iso8859_15 and iso8859_16. by Georg Brandl · 19 years ago
  63. ab49684 Patch #1638243: the compiler package is now able to correctly compile by Georg Brandl · 19 years ago
  64. 07e1db3 Fix time.strptime's %U support. Basically rewrote the algorithm to be more by Brett Cannon · 19 years ago
  65. 4378215 Fix for #1643874: When calling SysAllocString, create a PyCObject by Thomas Heller · 19 years ago
  66. f5bee30 Fix crasher for when an object's __del__ creates a new weakref to itself. by Brett Cannon · 19 years ago
  67. 6c5c502 Make PyTraceBack_Here use the current thread, not the by Martin v. Löwis · 19 years ago
  68. 6ed1965 Add news entry about last checkin (oops.) by Thomas Wouters · 19 years ago
  69. d2e2290 Patch #1507247: tarfile.py: use current umask for intermediate directories. by Lars Gustäbel · 19 years ago
  70. dd7b052 Patch #1627441: close sockets properly in urllib2. by Georg Brandl · 19 years ago
  71. b84c137 Bug #1486663: don't reject keyword arguments for subclasses of builtin types. by Georg Brandl · 19 years ago
  72. aef4c6b Patch #1610575: Add support for _Bool to struct. by Martin v. Löwis · 19 years ago
  73. 4885e7d Prefix AST symbols with _Py_. Fixes #1637022. Will backport. by Martin v. Löwis · 19 years ago
  74. b26b1c6 Bug #1629125: fix wrong data type (int -> Py_ssize_t) in PyDict_Next docs. by Georg Brandl · 19 years ago
  75. 33a0a06 Fixed ntpath.expandvars to not replace references to non-existing by Sjoerd Mullender · 19 years ago
  76. fa3d08b Add news items for the recent pybench and platform changes. by Marc-André Lemburg · 19 years ago
  77. bb2cc69 Patch #1635058 by Mark Roberts: ensure that htonl and friends never accept or by Guido van Rossum · 19 years ago
  78. 093b670 Deprecate the sets module. by Brett Cannon · 19 years ago
  79. 6fd4549 patch #1610795: BSD version of ctypes.util.find_library, by Martin Kammerhofer. by Thomas Heller · 19 years ago
  80. 8138c26 Fixes for 64-bit Windows: In ctypes.wintypes, correct the definitions by Thomas Heller · 19 years ago
  81. a398e2d - idle: Honor the "Cancel" action in the save dialog (Debian bug #299092). by Matthias Klose · 19 years ago
  82. fb9d787 Change the ctypes version number to "1.1.0". by Thomas Heller · 19 years ago
  83. ab41c10 Added entry about addition of _open() method to logging.FileHandler. by Vinay Sajip · 19 years ago
  84. c913726 Added entries about removal of some bare except clauses from logging. by Vinay Sajip · 19 years ago
  85. 72cd02c Prevent crash on shutdown which can occur if we are finalizing by Neal Norwitz · 19 years ago
  86. 8b96a35 Support linking of the bsddb module against BerkeleyDB 4.5.x by Gregory P. Smith · 19 years ago
  87. 7b7c9d4 Bug #1566280: Explicitly invoke threading._shutdown from Py_Main, by Martin v. Löwis · 19 years ago
  88. 92d54d5 Add EnvironmentVarGuard to test.test_support. Provides a context manager to by Brett Cannon · 19 years ago
  89. a7ba6fc Patch #1504073: Fix tarfile.open() for mode "r" with a fileobj argument. by Lars Gustäbel · 19 years ago
  90. 7166232 [Rest of patch #1182394] Add ._current() method so that we can use the written-in-C .hexdigest() method by Andrew M. Kuchling · 19 years ago
  91. a4b2381 Patch #1262036: Prevent TarFiles from being added to themselves under by Lars Gustäbel · 19 years ago
  92. 6baa502 Patch #1230446: tarfile.py: fix ExFileObject so that read() and tell() by Lars Gustäbel · 19 years ago
  93. 94547f7 Bug #1590891: random.randrange don't return correct value for big number by Raymond Hettinger · 19 years ago
  94. ebbeed7 Patch #1484695: The tarfile module now raises a HeaderError exception by Georg Brandl · 19 years ago
  95. 76fdb8c Added news on recent changes to logging by Vinay Sajip · 19 years ago
  96. 6d9520c Add test.test_support.guard_warnings_filter . This function returns a context by Brett Cannon · 19 years ago
  97. ebde149 - Fix the build of the library reference in info format. by Matthias Klose · 19 years ago
  98. b130743 Patch #1608267: fix a race condition in os.makedirs() is the directory by Georg Brandl · 19 years ago
  99. 87fa559 Patch #1610437: fix a tarfile bug with long filename headers. by Georg Brandl · 19 years ago
  100. d149d0c - Fix build failure on kfreebsd and on the hurd. by Matthias Klose · 19 years ago