summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2011-05-06 08:23:04 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2011-05-06 08:23:04 (GMT)
commitf51738b10e83d0adf404ca989970a5b44700d685 (patch)
tree1fc30e8a697333459b9e0a8eb4ff14bd92084a96 /Misc
parentd92ab0806d38cc592f303545d649821daa802997 (diff)
downloadcpython-f51738b10e83d0adf404ca989970a5b44700d685.zip
cpython-f51738b10e83d0adf404ca989970a5b44700d685.tar.gz
cpython-f51738b10e83d0adf404ca989970a5b44700d685.tar.bz2
Fix for issue 10684: Folders get deleted when trying to change case with shutil.move (case insensitive file systems only)
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 8878612..1c6fedc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,10 @@ Core and Builtins
Library
-------
+- Issue #10684: shutil.move used to delete a folder on case insensitive
+ filesystems when the source and destination name where the same except
+ for the case.
+
- Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get
around a mmap bug with sparse files. Patch written by Steffen Daode Nurpmeso.