Patch #1537850: tempfile.NamedTemporaryFile now has a "delete" parameter
which can be set to False to prevent the default delete-on-close
behavior.
diff --git a/Misc/ACKS b/Misc/ACKS
index 177e524..e110632 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -430,6 +430,7 @@
Steven Miale
Trent Mick
Chad Miller
+Damien Miller
Roman Milner
Dom Mitchell
Doug Moen
diff --git a/Misc/NEWS b/Misc/NEWS
index 52c3c81..d03c4b5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -168,6 +168,10 @@
Library
-------
+- Patch #1537850: tempfile.NamedTemporaryFile now has a "delete" parameter
+ which can be set to False to prevent the default delete-on-close
+ behavior.
+
- Patch #1581073: add a flag to textwrap that prevents the dropping of
whitespace while wrapping.