From 86b995867d627e8d53a3688df2bf3ad5b1066ba8 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Fri, 8 May 2015 21:18:21 +0300 Subject: [PATCH] Revert coverage: tox will cover 3.3 also --- aiohttp/connector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiohttp/connector.py b/aiohttp/connector.py index 7da3cd38fab..630954a0767 100644 --- a/aiohttp/connector.py +++ b/aiohttp/connector.py @@ -359,7 +359,7 @@ def ssl_context(self): elif _SSH_HAS_CREATE_DEFAULT_CONTEXT: # Python 3.4+ sslcontext = ssl.create_default_context() - else: # pragma: no cover + else: # Fallback for Python 3.3. sslcontext = ssl.SSLContext(ssl.PROTOCOL_SSLv23) sslcontext.options |= ssl.OP_NO_SSLv2