From 4c11c92578c32f218f8840ab56c4cc8df9923172 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 15 Dec 2014 10:04:13 -0500 Subject: [PATCH] remove extra ssl imports (closes #23053) Patch from Jan Matejek. --- Lib/test/test_urllib2_localnet.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/test/test_urllib2_localnet.py b/Lib/test/test_urllib2_localnet.py index e17b2251af0..0650aa27443 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)