summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2009-12-20 06:05:13 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2009-12-20 06:05:13 (GMT)
commit7713acf201e9638966a9a8f8e38446400410e826 (patch)
tree27cdca52a87dd6575df9f6c2ab99361f00cea2ea /Misc
parent062d2b52f3128f44bfd853459652e075c9bb5f40 (diff)
downloadcpython-7713acf201e9638966a9a8f8e38446400410e826.zip
cpython-7713acf201e9638966a9a8f8e38446400410e826.tar.gz
cpython-7713acf201e9638966a9a8f8e38446400410e826.tar.bz2
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 a326c29..c5d2380 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,9 @@ Core and Builtins
Library
-------
+- Issue #7231: urllib2 cannot handle https with proxy requiring auth.
+ Patch by Tatsuhiro Tsujikawa.
+
- Issue #7349: Make methods of file objects in the io module accept None as an
argument where file-like objects (ie StringIO and BytesIO) accept them to mean
the same as passing no argument.