From: R David Murray Date: Sat, 7 May 2011 02:26:27 +0000 (-0400) Subject: #11999: sync based on comparing mtimes, not mtime to system clock X-Git-Tag: v3.3.0a1~2382 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=46070ebddffe6e679e3f26ddfe6ed560cbdb05e0;p=python #11999: sync based on comparing mtimes, not mtime to system clock --- 46070ebddffe6e679e3f26ddfe6ed560cbdb05e0 diff --cc Misc/NEWS index 0c9d91a077,1f48a14d44..637e254bb8 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -140,12 -83,10 +140,16 @@@ Core and Builtin 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. + +- Issue #11072: added MLSD command (RFC-3659) support to ftplib. + +- Issue #8808: The IMAP4_SSL constructor now allows passing an SSLContext + parameter to control parameters of the secure channel. Patch by Sijin + Joseph. + - ntpath.samefile failed to notice that "a.txt" and "A.TXT" refer to the same file on Windows XP. As noticed in issue #10684.