summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-03-24 19:46:46 (GMT)
committerGitHub <noreply@github.com>2017-03-24 19:46:46 (GMT)
commit1fc1f8d7f737f80a1ee5ea37b9781c0a790102b2 (patch)
tree1462ff3b86c04f43c51c8fb4c777db77373f41c4 /Misc/NEWS
parent80cb6ed4db9bae09de1e9ad6001d11cb45a4c1cc (diff)
downloadcpython-1fc1f8d7f737f80a1ee5ea37b9781c0a790102b2.zip
cpython-1fc1f8d7f737f80a1ee5ea37b9781c0a790102b2.tar.gz
cpython-1fc1f8d7f737f80a1ee5ea37b9781c0a790102b2.tar.bz2
bpo-25803: Avoid incorrect errors raised by Path.mkdir(exist_ok=True) (#805) (#807)
when the OS gives priority to errors such as EACCES over EEXIST. (cherry picked from commit af7b9ec5c855366feef4c67dc492d64b3baf84ca)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index cc219d4..f541504 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,6 +46,9 @@ Extension Modules
Library
-------
+- bpo-25803: Avoid incorrect errors raised by Path.mkdir(exist_ok=True)
+ when the OS gives priority to errors such as EACCES over EEXIST.
+
- bpo-29861: Release references to tasks, their arguments and their results
as soon as they are finished in multiprocessing.Pool.