summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-03-13 18:31:49 (GMT)
committerGeorg Brandl <georg@python.org>2007-03-13 18:31:49 (GMT)
commit35ef9c19fe0f66d9d68b41100e85edc9feb45b1e (patch)
tree2e199adeacb7b794ec18c9ea79e57ba58e659cd3 /Misc
parent6c104f6906bc7203f39a15bcc8b3d3905c7333e8 (diff)
downloadcpython-35ef9c19fe0f66d9d68b41100e85edc9feb45b1e.zip
cpython-35ef9c19fe0f66d9d68b41100e85edc9feb45b1e.tar.gz
cpython-35ef9c19fe0f66d9d68b41100e85edc9feb45b1e.tar.bz2
Patch #1537850: tempfile.NamedTemporaryFile now has a "delete" parameter
which can be set to False to prevent the default delete-on-close behavior.
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 177e524..e110632 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -430,6 +430,7 @@ Mike Meyer
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 @@ Core and builtins
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.