summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2014-09-19 07:23:30 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2014-09-19 07:23:30 (GMT)
commit8b7e161ac39b14abe0a06b69ae4e51d16649f628 (patch)
treef11f094eeb81e8fe236fec14ac2155b54978265e /Misc
parentcc23154d020723dc85d055324861f6a8f54fe0f7 (diff)
downloadcpython-8b7e161ac39b14abe0a06b69ae4e51d16649f628.zip
cpython-8b7e161ac39b14abe0a06b69ae4e51d16649f628.tar.gz
cpython-8b7e161ac39b14abe0a06b69ae4e51d16649f628.tar.bz2
backport context argument of urlopen (#22366) for pep 476
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e2a7d73..55f95b5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,10 @@ Core and Builtins
Library
-------
+- Issue #22366: urllib.request.urlopen will accept a context object
+ (SSLContext) as an argument which will then used be for HTTPS connection.
+ Patch by Alex Gaynor.
+
- Issue #22776: Brought excluded code into the scope of a try block in
SysLogHandler.emit().