summaryrefslogtreecommitdiff
path: root/Lib/urllib/request.py
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2013-04-01 13:26:21 -0400
committerBrett Cannon <brett@python.org>2013-04-01 13:26:21 -0400
commita495b498afa3ab0e2424cad0fb2fa3caacf7fd08 (patch)
tree5cac6d6c7a6bca4794b8532e3892fb7323dc6b9b /Lib/urllib/request.py
parentdaf4daa295b75b4f0c87b5051a59b0a81ba4dc70 (diff)
parent9a8d6934df77a6c45bd8d39e4919b93ba45e195d (diff)
downloadcpython-git-a495b498afa3ab0e2424cad0fb2fa3caacf7fd08.tar.gz
merge
Diffstat (limited to 'Lib/urllib/request.py')
-rw-r--r--Lib/urllib/request.py14
1 files changed, 5 insertions, 9 deletions
diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py
index 8b3cdf9d2c..5c875916df 100644
--- a/Lib/urllib/request.py
+++ b/Lib/urllib/request.py
@@ -143,16 +143,12 @@ def urlopen(url, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
raise ValueError('SSL support not available')
context = ssl.SSLContext(ssl.PROTOCOL_SSLv23)
context.options |= ssl.OP_NO_SSLv2
- if cafile or capath or cadefault:
- context.verify_mode = ssl.CERT_REQUIRED
- if cafile or capath:
- context.load_verify_locations(cafile, capath)
- else:
- context.set_default_verify_paths()
- check_hostname = True
+ context.verify_mode = ssl.CERT_REQUIRED
+ if cafile or capath:
+ context.load_verify_locations(cafile, capath)
else:
- check_hostname = False
- https_handler = HTTPSHandler(context=context, check_hostname=check_hostname)
+ context.set_default_verify_paths()
+ https_handler = HTTPSHandler(context=context, check_hostname=True)
opener = build_opener(https_handler)
elif _opener is None:
_opener = opener = build_opener()