From: Benjamin Peterson Date: Mon, 15 Dec 2014 15:04:13 +0000 (-0500) Subject: remove extra ssl imports (closes #23053) X-Git-Tag: v3.4.3rc1~216 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4c11c92578c32f218f8840ab56c4cc8df9923172;p=thirdparty%2FPython%2Fcpython.git remove extra ssl imports (closes #23053) Patch from Jan Matejek. --- diff --git a/Lib/test/test_urllib2_localnet.py b/Lib/test/test_urllib2_localnet.py index e17b2251af0f..0650aa274431 100644 --- a/Lib/test/test_urllib2_localnet.py +++ b/Lib/test/test_urllib2_localnet.py @@ -551,7 +551,6 @@ class TestUrlopen(unittest.TestCase): def test_https_with_cafile(self): handler = self.start_https_server(certfile=CERT_localhost) - import ssl # Good cert data = self.urlopen("https://localhost:%s/bizarre" % handler.port, cafile=CERT_localhost)