summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2013-09-06 13:11:19 (GMT)
committerEli Bendersky <eliben@gmail.com>2013-09-06 13:11:19 (GMT)
commitf315df31bd8a927768bb94c3342d155cdc87d997 (patch)
tree25a027aa12346e1fff608ea693a61ff3b2cd2aa2 /Misc
parent43c6ef189955474001aad75d3b47d895180b2d42 (diff)
downloadcpython-f315df31bd8a927768bb94c3342d155cdc87d997.zip
cpython-f315df31bd8a927768bb94c3342d155cdc87d997.tar.gz
cpython-f315df31bd8a927768bb94c3342d155cdc87d997.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 20eeafd..db01d14 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1121,6 +1121,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 8052c6b..1c0f3b2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -280,6 +280,10 @@ Library
- Issue #18113: Fixed a refcount leak in the curses.panel module's
set_userptr() method. Reported by Atsuo Ishimoto.
+- 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.
+
C API
-----