summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2015-11-19 04:48:44 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2015-11-19 04:48:44 (GMT)
commita82642f9dbdff5253f40d4acee0cbb27aaf34462 (patch)
tree39ae79f83900575d6dba600ebec8deb3917508eb /Misc
parent41f69f4cc7c977bd202545b8ada01b80a278d0e2 (diff)
downloadcpython-a82642f9dbdff5253f40d4acee0cbb27aaf34462.zip
cpython-a82642f9dbdff5253f40d4acee0cbb27aaf34462.tar.gz
cpython-a82642f9dbdff5253f40d4acee0cbb27aaf34462.tar.bz2
Issue #25583: Avoid incorrect errors raised by os.makedirs(exist_ok=True)
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 e98e4a6..f82696a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -106,6 +106,9 @@ Core and Builtins
Library
-------
+- Issue #25583: Avoid incorrect errors raised by os.makedirs(exist_ok=True)
+ when the OS gives priority to errors such as EACCES over EEXIST.
+
- Issue #25593: Change semantics of EventLoop.stop() in asyncio.
- Issue #6973: When we know a subprocess.Popen process has died, do