diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-01-24 07:59:28 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-01-24 07:59:28 (GMT) |
commit | 5311c1d7ab24f862b9b0bb272a9aee9c4f4ac023 (patch) | |
tree | aef57f35c7e9b616acf4597f63a8165e0d55491f /Misc | |
parent | 3b65fd7e9784967567e66bd67e9205cbb0d53d3a (diff) | |
download | cpython-5311c1d7ab24f862b9b0bb272a9aee9c4f4ac023.zip cpython-5311c1d7ab24f862b9b0bb272a9aee9c4f4ac023.tar.gz cpython-5311c1d7ab24f862b9b0bb272a9aee9c4f4ac023.tar.bz2 |
Issue #13772: In os.symlink() under Windows, do not try to guess the link
target's type (file or directory). The detection was buggy and made the
call non-atomic (therefore prone to race conditions).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -108,6 +108,10 @@ Core and Builtins Library ------- +- Issue #13772: In os.symlink() under Windows, do not try to guess the link + target's type (file or directory). The detection was buggy and made the + call non-atomic (therefore prone to race conditions). + - Issue #6631: Disallow relative file paths in urllib urlopen methods. - Issue #13722: Avoid silencing ImportErrors when initializing the codecs |