From: Serhiy Storchaka Date: Tue, 11 Feb 2014 08:32:41 +0000 (+0200) Subject: Issue #19856: shutil.move() failed to move a directory to other directory X-Git-Tag: v3.4.1rc1~233^2~361 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6a45021084f287cf389205939784d32f29efb20c;p=thirdparty%2FPython%2Fcpython.git Issue #19856: shutil.move() failed to move a directory to other directory on Windows if source name ends with os.altsep. --- 6a45021084f287cf389205939784d32f29efb20c diff --cc Misc/NEWS index 06223600ac2f,647cedf34e41..5d95b9bf0799 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -37,14 -20,9 +37,17 @@@ Core and Builtin Library ------- + - Issue #19856: shutil.move() failed to move a directory to other directory + on Windows if source name ends with os.altsep. + +- Issue #20530: The signatures for slot builtins have been updated + to reflect the fact that they only accept positional-only arguments. + +- Issue #20517: Functions in the os module that accept two filenames + now register both filenames in the exception on failure. + +- Issue #20563: The ipaddress module API is now considered stable. + - Issue #14983: email.generator now always adds a line end after each MIME boundary marker, instead of doing so only when there is an epilogue. This fixes an RFC compliance bug and solves an issue with signed MIME parts.