PEP476: Corrected a typo

This commit is contained in:
Alex Gaynor 2014-09-20 09:19:19 -07:00
parent 5c4cb9f0eb
commit 06409bf984
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ this by providing the ``context`` argument to ``urllib.urlopen``:
context = ssl._create_unverified_context() context = ssl._create_unverified_context()
urllib.urlopen("https://no-valid-cert", context=context) urllib.urlopen("https://no-valid-cert", context=context)
It is also possibly **though highly discouraged** to globally disable It is also possible **though highly discouraged** to globally disable
verification by monkeypatching the ``ssl`` module:: verification by monkeypatching the ``ssl`` module::
import ssl import ssl