summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2009-05-24 09:14:50 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2009-05-24 09:14:50 (GMT)
commite266f25cf1f9ad28409f4c11c40595fb25f555da (patch)
treef6a44ac991861418765056f676d17bcf2520d7a1 /Misc
parent655d835415800085cddbacecfc8a22111d70a5ef (diff)
downloadcpython-e266f25cf1f9ad28409f4c11c40595fb25f555da.zip
cpython-e266f25cf1f9ad28409f4c11c40595fb25f555da.tar.gz
cpython-e266f25cf1f9ad28409f4c11c40595fb25f555da.tar.bz2
Fixed Issue1424152, urllib2 fails with HTTPS over Proxy.
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 deb8a0b..96d5044 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -302,6 +302,9 @@ Core and Builtins
Library
-------
+- Issue #1424152: Fix for httplib, urllib2 to support SSL while working through
+ proxy. Original patch by Christopher Li, changes made by Senthil Kumaran.
+
- Issue #1983: Fix functions taking or returning a process identifier to use
the dedicated C type ``pid_t`` instead of a C ``int``. Some platforms have
a process identifier type wider than the standard C integer type.