diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-11-19 04:48:44 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-11-19 04:48:44 (GMT) |
commit | a82642f9dbdff5253f40d4acee0cbb27aaf34462 (patch) | |
tree | 39ae79f83900575d6dba600ebec8deb3917508eb /Misc | |
parent | 41f69f4cc7c977bd202545b8ada01b80a278d0e2 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |