diff options
author | Hynek Schlawack <hs@ox.cx> | 2012-06-23 15:58:42 (GMT) |
---|---|---|
committer | Hynek Schlawack <hs@ox.cx> | 2012-06-23 15:58:42 (GMT) |
commit | 67be92bed4f3d5ce156bb46185525ee5062a562e (patch) | |
tree | 09d2fce5104bfba2f033d45d6dc02ee088c6683c /Misc | |
parent | 46cb1ef457db30bdae88191fd4eaaf9c17ed3dea (diff) | |
download | cpython-67be92bed4f3d5ce156bb46185525ee5062a562e.zip cpython-67be92bed4f3d5ce156bb46185525ee5062a562e.tar.gz cpython-67be92bed4f3d5ce156bb46185525ee5062a562e.tar.bz2 |
#4489: Add a shutil.rmtree that isn't suspectible to symlink attacks
It is used automatically on platforms supporting the necessary os.openat() and
os.unlinkat() functions. Main code by Martin von Löwis.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -43,6 +43,10 @@ Core and Builtins Library ------- +- Issue #4489: Add a shutil.rmtree that isn't suspectible to symlink attacks. + It is used automatically on platforms supporting the necessary os.openat() + and os.unlinkat() functions. Main code by Martin von Löwis. + - Issue #15114: the strict mode of HTMLParser and the HTMLParseError exception are deprecated now that the parser is able to parse invalid markup. |