diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-05-19 21:14:00 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-05-19 21:14:00 (GMT) |
commit | 492f0277933fd5714762a99ec99fd7f97d99866a (patch) | |
tree | 85451c0d2ed74f4b10266dd2d71205ffb5fc9a87 /Misc | |
parent | 873e0df946e53af525b515df7773ff72884a8c3b (diff) | |
parent | 5d6b7b1cb7943255b8682ea3663ce2c0da500e96 (diff) | |
download | cpython-492f0277933fd5714762a99ec99fd7f97d99866a.zip cpython-492f0277933fd5714762a99ec99fd7f97d99866a.tar.gz cpython-492f0277933fd5714762a99ec99fd7f97d99866a.tar.bz2 |
Issue #22107: tempfile.gettempdir() and tempfile.mkdtemp() now try again
when a directory with the chosen name already exists on Windows as well as
on Unix. tempfile.mkstemp() now fails early if parent directory is not
valid (not exists or is a file) on Windows.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -52,6 +52,11 @@ Core and Builtins Library ------- +- Issue #22107: tempfile.gettempdir() and tempfile.mkdtemp() now try again + when a directory with the chosen name already exists on Windows as well as + on Unix. tempfile.mkstemp() now fails early if parent directory is not + valid (not exists or is a file) on Windows. + - Issue #23780: Improved error message in os.path.join() with single argument. - Issue #6598: Increased time precision and random number range in |