summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2009-12-20 07:18:22 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2009-12-20 07:18:22 (GMT)
commit4b9fbebaee627393f0bdd501c8882c6b8cbdc1ff (patch)
treec3d1a195be3065b4981cb40f56cb077deb0364ba /Misc
parent890c19388762c7e93168d23e149cc03febc98269 (diff)
downloadcpython-4b9fbebaee627393f0bdd501c8882c6b8cbdc1ff.zip
cpython-4b9fbebaee627393f0bdd501c8882c6b8cbdc1ff.tar.gz
cpython-4b9fbebaee627393f0bdd501c8882c6b8cbdc1ff.tar.bz2
Merged revisions 76910 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r76910 | senthil.kumaran | 2009-12-20 12:40:31 +0530 (Sun, 20 Dec 2009) | 10 lines Merged revisions 76908 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r76908 | senthil.kumaran | 2009-12-20 11:35:13 +0530 (Sun, 20 Dec 2009) | 4 lines Fix for issue 7291 - urllib2 cannot handle https with proxy requiring auth Refactored HTTPHandler tests and added testcase for proxy authorization. ........ ................
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 7ed716c..f40ae65 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -58,6 +58,9 @@ Core and Builtins
Library
-------
+- Issue #7231: urllib2 cannot handle https with proxy requiring auth. Patch by
+ Tatsuhiro Tsujikawa.
+
- Issue #4757: `zlib.compress` and other methods in the zlib module now
raise a TypeError when given an `str` object (rather than a `bytes`-like
object). Patch by Victor Stinner and Florent Xicluna.