From: Petri Lehtinen Date: Thu, 28 Jun 2012 10:53:43 +0000 (+0300) Subject: #9559: Append data to single-file mailbox files if messages are only added X-Git-Tag: v3.3.0b2~374 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dde8cb0899a0feb5a71918cc11bbc4f7f19830d4;p=python #9559: Append data to single-file mailbox files if messages are only added If messages were only added, a new file is no longer created and renamed over the old file when flush() is called on an mbox, MMDF or Babyl mailbox. --- dde8cb0899a0feb5a71918cc11bbc4f7f19830d4 diff --cc Misc/NEWS index 20a24071d8,a8c274965d..4dcbfc2efc --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -2,40 -2,10 +2,44 @@@ Python News +++++++++++ -What's New in Python 3.2.4 -========================== +What's New in Python 3.3.0 Beta 2? +================================== + +*Release date: xx-xxx-2012* + +Core and Builtins +----------------- + + +Library +------- + ++- Issue #9559: If messages were only added, a new file is no longer ++ created and renamed over the old file when flush() is called on an ++ mbox, MMDF or Babyl mailbox. ++ +- Issue 10924: Fixed mksalt() to use a RNG that is suitable for cryptographic + purpose. + +Extension Modules +----------------- + +- Issue #15194: Update libffi to the 3.0.11 release. + +Tools/Demos +----------- + +- Issue #12605: The gdb hooks for debugging CPython (within Tools/gdb) have + been enhanced to show information on more C frames relevant to CPython within + the "py-bt" and "py-bt-full" commands: + * C frames that are waiting on the GIL + * C frames that are garbage-collecting + * C frames that are due to the invocation of a PyCFunction + +What's New in Python 3.3.0 Beta 1? +================================== -*Release date: XX-XX-XXXX* +*Release date: 27-Jun-2012* Core and Builtins -----------------