summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2013-09-06 13:14:16 (GMT)
committerEli Bendersky <eliben@gmail.com>2013-09-06 13:14:16 (GMT)
commit309836c5c8a7bf85c666ff913bf903b8f735cfa5 (patch)
tree636eea90d5158dec50db0080fe4d9110039c3648 /Misc
parentf7b436ce8d69e1067cf2cb3769de93605b307327 (diff)
parentf315df31bd8a927768bb94c3342d155cdc87d997 (diff)
downloadcpython-309836c5c8a7bf85c666ff913bf903b8f735cfa5.zip
cpython-309836c5c8a7bf85c666ff913bf903b8f735cfa5.tar.gz
cpython-309836c5c8a7bf85c666ff913bf903b8f735cfa5.tar.bz2
Issue #18849: Fixed a Windows-specific tempfile bug where collision with an
existing directory caused mkstemp and related APIs to fail instead of retrying. Report and fix by Vlad Shcherbina.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index e7c98a9..b64db91 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1157,6 +1157,7 @@ Daniel Shahaf
Ha Shao
Mark Shannon
Richard Shapiro
+Vlad Shcherbina
Justin Sheehy
Charlie Shepherd
Bruce Sherwood
diff --git a/Misc/NEWS b/Misc/NEWS
index a506960..c69110f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -189,6 +189,10 @@ Library
- Issue #8860: Fixed rounding in timedelta constructor.
+- Issue #18849: Fixed a Windows-specific tempfile bug where collision with an
+ existing directory caused mkstemp and related APIs to fail instead of
+ retrying. Report and fix by Vlad Shcherbina.
+
Tests
-----