summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2012-06-28 10:48:17 (GMT)
committerPetri Lehtinen <petri@digip.org>2012-06-28 10:53:23 (GMT)
commitf29435f9f0659d433ed2e0e3e8b9c15a4c7155fd (patch)
treed95ccdf454410f57f34c442b11cf0d8e5d21a281 /Misc
parent8237258e094f7d7beddcd6dd113213f2fba2b269 (diff)
downloadcpython-f29435f9f0659d433ed2e0e3e8b9c15a4c7155fd.zip
cpython-f29435f9f0659d433ed2e0e3e8b9c15a4c7155fd.tar.gz
cpython-f29435f9f0659d433ed2e0e3e8b9c15a4c7155fd.tar.bz2
#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.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 27ece4d..a8c2749 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -81,6 +81,10 @@ 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 #14653: email.utils.mktime_tz() no longer relies on system
mktime() when timezone offest is supplied.