summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2011-10-31 17:35:17 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2011-10-31 17:35:17 (GMT)
commitce260142c6c6eaf32775c4aec283c3a4c921b75c (patch)
tree6e7766ee8212602dd419064dba553ea491272063 /Misc
parent53bcd660122b6604373e5304bd014c41c8ca3e08 (diff)
downloadcpython-ce260142c6c6eaf32775c4aec283c3a4c921b75c.zip
cpython-ce260142c6c6eaf32775c4aec283c3a4c921b75c.tar.gz
cpython-ce260142c6c6eaf32775c4aec283c3a4c921b75c.tar.bz2
Fix issue 10817 - Fix urlretrieve function to raise ContentTooShortError
even when reporthook is None. Patch by Jyrki Pulliainen.
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 13e79b2..6173196 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,9 @@ Core and Builtins
Library
-------
+- Issue 10817: Fix urlretrieve function to raise ContentTooShortError even
+ when reporthook is None. Patch by Jyrki Pulliainen.
+
- Issue 13296: Fix IDLE to clear compile __future__ flags on shell restart.
(Patch by Roger Serwy)