From 06409bf984891ad7e77d964de557e8f8e977eef0 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 20 Sep 2014 09:19:19 -0700 Subject: [PATCH] PEP476: Corrected a typo --- pep-0476.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0476.txt b/pep-0476.txt index 4b41c2147..f3f02d55a 100644 --- a/pep-0476.txt +++ b/pep-0476.txt @@ -130,7 +130,7 @@ this by providing the ``context`` argument to ``urllib.urlopen``: context = ssl._create_unverified_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:: import ssl