summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2011-05-07 02:20:34 (GMT)
committerR David Murray <rdmurray@bitdance.com>2011-05-07 02:20:34 (GMT)
commit94b8ee3bffec592c62cff0334b0fdde83c2fae35 (patch)
tree5c21d9a9d10b5c5c2f82ce41c92a302bbff89dfa /Misc/NEWS
parent6355c16d3623921cbecb156c23349b8a6fe32827 (diff)
parentcaed7fe0ffeadb681d175320574d4d51c060f07b (diff)
downloadcpython-94b8ee3bffec592c62cff0334b0fdde83c2fae35.zip
cpython-94b8ee3bffec592c62cff0334b0fdde83c2fae35.tar.gz
cpython-94b8ee3bffec592c62cff0334b0fdde83c2fae35.tar.bz2
#11999: sync based on comparing mtimes, not mtime to system clock
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 52d1d61..1f48a14 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -83,6 +83,10 @@ Core and Builtins
Library
-------
+- Issue 11999: fixed sporadic sync failure mailbox.Maildir due to its trying to
+ detect mtime changes by comparing to the system clock instead of to the
+ previous value of the mtime.
+
- ntpath.samefile failed to notice that "a.txt" and "A.TXT" refer to the same
file on Windows XP. As noticed in issue #10684.