summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2009-07-25 04:24:38 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2009-07-25 04:24:38 (GMT)
commit97f0c6be463bd83764e0e5d76e79f1831ef29df0 (patch)
tree37c1df16f5de614b3d7bc86bfe471f7253f76577 /Misc/NEWS
parentbe0e177ae52f84e2787f511693d4889d7fc9d5d7 (diff)
downloadcpython-97f0c6be463bd83764e0e5d76e79f1831ef29df0.zip
cpython-97f0c6be463bd83764e0e5d76e79f1831ef29df0.tar.gz
cpython-97f0c6be463bd83764e0e5d76e79f1831ef29df0.tar.bz2
Fixed Issue1424152 in Py3k: urllib2 fails with HTTPS over Proxy.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2306861..558ab29 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -60,6 +60,9 @@ C-API
Library
-------
+- Issue #1424152: Fix for httplib, urllib2 to support SSL while working through
+ proxy. Original patch by Christopher Li, changes made by Senthil Kumaran
+
- Add importlib.abc.ExecutionLoader to represent the PEP 302 protocol for
loaders that allow for modules to be executed. Both importlib.abc.PyLoader
and PyPycLoader inherit from this class and provide implementations in