summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-03-24 18:51:53 (GMT)
committerGitHub <noreply@github.com>2017-03-24 18:51:53 (GMT)
commitaf7b9ec5c855366feef4c67dc492d64b3baf84ca (patch)
tree48f0d7ad1aad75910e0a9f87876b5d9144fb55b5 /Misc
parent8988945cdc27ffa86ba8c624e095b51c459f5154 (diff)
downloadcpython-af7b9ec5c855366feef4c67dc492d64b3baf84ca.zip
cpython-af7b9ec5c855366feef4c67dc492d64b3baf84ca.tar.gz
cpython-af7b9ec5c855366feef4c67dc492d64b3baf84ca.tar.bz2
bpo-25803: Avoid incorrect errors raised by Path.mkdir(exist_ok=True) (#805)
when the OS gives priority to errors such as EACCES over EEXIST.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bd43227..9b0414a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -287,6 +287,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.