summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2010-10-24 11:23:25 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2010-10-24 11:23:25 (GMT)
commit543af759616ca6f4c8a2ca74e8c65a3e92a990a7 (patch)
tree30efd71dab1f8c056f77e764f69e09780ea71ee5 /Misc
parentd4519c14ca5f08247207616ccab4b652abf584c1 (diff)
downloadcpython-543af759616ca6f4c8a2ca74e8c65a3e92a990a7.zip
cpython-543af759616ca6f4c8a2ca74e8c65a3e92a990a7.tar.gz
cpython-543af759616ca6f4c8a2ca74e8c65a3e92a990a7.tar.bz2
Issue 5178: Add tempfile.TemporaryDirectory (original patch by Neil Schemenauer)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 98bc24f..e1b818d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -51,6 +51,9 @@ Core and Builtins
Library
-------
+- Issue #5178: Added tempfile.TemporaryDirectory class that can be used
+ as a context manager.
+
- Issue #1349106: Generator (and BytesGenerator) flatten method and Header
encode method now support a 'linesep' argument.