diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2012-06-24 06:43:06 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2012-06-24 06:43:06 (GMT) |
commit | 5b0eca116ad1b9509ebe4620f1685d86ce4433bf (patch) | |
tree | 06028b901fd8bd82fb14cf108c399b8626dce196 /Doc/whatsnew | |
parent | 8e5c0a774fd8c51fdf5654a6d6688a09e62d6c5e (diff) | |
download | cpython-5b0eca116ad1b9509ebe4620f1685d86ce4433bf.zip cpython-5b0eca116ad1b9509ebe4620f1685d86ce4433bf.tar.gz cpython-5b0eca116ad1b9509ebe4620f1685d86ce4433bf.tar.bz2 |
Issue #4489: Rename the feature marker for the symlink resistant rmtree and store it as a function attribute
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 25a0ece..e97ac86 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -1296,6 +1296,11 @@ shutil acts on the symlink itself (or creates one, if relevant). (Contributed by Hynek Schlawack in :issue:`12715`.) +* :func:`~shutil.rmtree` is now resistant to symlink attacks on platforms + which support the new ``dir_fd`` parameter in :func:`os.open` and + :func:`os.unlinkat`. (Contributed by Martin von Löwis and Hynek Schlawack + in :issue:`4489`.) + signal |