summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2014-04-20 16:45:00 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2014-04-20 16:45:00 (GMT)
commitf4faef4c11e565a10fd4444567454dcb0d3aa117 (patch)
tree61652ca3084805a2d7b6ad1dbda77d9bbf5da4cb /Misc/NEWS
parent4eef074e4cb8f3c10000fa2187c7a718a1d76d40 (diff)
parent4a63923328650bb73f40bcec5bb06ebbd409811d (diff)
downloadcpython-f4faef4c11e565a10fd4444567454dcb0d3aa117.zip
cpython-f4faef4c11e565a10fd4444567454dcb0d3aa117.tar.gz
cpython-f4faef4c11e565a10fd4444567454dcb0d3aa117.tar.bz2
merge 3.4
urllib.response object to use _TemporaryFileWrapper (and _TemporaryFileCloser) facility. Provides a better way to handle file descriptor close. Address issue #15002 . Patch contributed by Christian Theune.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e59ba47..2a6c6f4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -54,6 +54,10 @@ Core and Builtins
Library
-------
+- Issue #15002: urllib.response object to use _TemporaryFileWrapper (and
+ _TemporaryFileCloser) facility. Provides a better way to handle file
+ descriptor close. Patch contributed by Christian Theune.
+
- Issue #12220: mindom now raises a custom ValueError indicating it doesn't
support spaces in URIs instead of letting a 'split' ValueError bubble up.