Close #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.
diff --git a/Misc/ACKS b/Misc/ACKS
index 8d29290..e251596 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -936,6 +936,7 @@
Ha Shao
Mark Shannon
Richard Shapiro
+Vlad Shcherbina
Justin Sheehy
Charlie Shepherd
Bruce Sherwood
diff --git a/Misc/NEWS b/Misc/NEWS
index 8c67ad1..53be4c1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -156,6 +156,11 @@
- 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.
+
+
Tools/Demos
-----------