summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-02-12 22:37:29 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-02-12 22:37:29 (GMT)
commitff7fef9601d15cdf274b4b984c7638f33002e879 (patch)
tree3daf809b893ec457ef45c321e8319814251f343a /Misc
parentb52d432a780fdfb861000c95eb2bbb594fda9900 (diff)
parentf6b361ec1a10b93ff8b927b400ca1777429bb23a (diff)
downloadcpython-ff7fef9601d15cdf274b4b984c7638f33002e879.zip
cpython-ff7fef9601d15cdf274b4b984c7638f33002e879.tar.gz
cpython-ff7fef9601d15cdf274b4b984c7638f33002e879.tar.bz2
Issue #16800: tempfile.gettempdir() no longer left temporary files when
the disk is full. Original patch by Amir Szekely.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 2828a8b..cddf161 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1163,6 +1163,7 @@ Andrew Svetlov
Paul Swartz
Thenault Sylvain
Péter Szabó
+Amir Szekely
Arfrever Frehtes Taifersar Arahesis
Neil Tallim
Geoff Talvola
diff --git a/Misc/NEWS b/Misc/NEWS
index f2bad73..d3f7e07 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -175,6 +175,9 @@ Core and Builtins
Library
-------
+- Issue #16800: tempfile.gettempdir() no longer left temporary files when
+ the disk is full. Original patch by Amir Szekely.
+
- Issue #16564: Fixed regression relative to Python2 in the operation of
email.encoders.encode_7or8bit when used with binary data.