summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-05-16 19:40:01 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-05-16 19:40:01 (GMT)
commitde9ac6c2e5b5887e473a24f067942dcf306ed3d3 (patch)
tree4116086b6516d72bd6bc228dcb62e0258cb90c18 /Misc
parent5d953184a6fae25bf27e769c90b419d9b2aa1af9 (diff)
downloadcpython-de9ac6c2e5b5887e473a24f067942dcf306ed3d3.zip
cpython-de9ac6c2e5b5887e473a24f067942dcf306ed3d3.tar.gz
cpython-de9ac6c2e5b5887e473a24f067942dcf306ed3d3.tar.bz2
Issue #14780: urllib.request.urlopen() now has a `cadefault` argument to use the default certificate store.
Initial patch by James Oakley.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index acf8a34..b9750b9 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -746,6 +746,7 @@ Nigel O'Brian
John O'Connor
Kevin O'Connor
Tim O'Malley
+James Oakley
Jon Oberheide
Pascal Oberndoerfer
Jeffrey Ollie
diff --git a/Misc/NEWS b/Misc/NEWS
index da919aa..40426b1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,6 +34,9 @@ Core and Builtins
Library
-------
+- Issue #14780: urllib.request.urlopen() now has a ``cadefault`` argument
+ to use the default certificate store. Initial patch by James Oakley.
+
- Issue #14829: Fix bisect and range() indexing with large indices
(>= 2 ** 32) under 64-bit Windows.