summaryrefslogtreecommitdiff
path: root/asyncio/test_utils.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-01-14 00:15:15 +0100
committerVictor Stinner <victor.stinner@gmail.com>2015-01-14 00:15:15 +0100
commit83a22207da266446d00f45930fa2d38ad26d3a33 (patch)
treeca73799f3dd90002ee8c7d93f5c17bb6c3cc6e8f /asyncio/test_utils.py
parent41a067f638699b8a01f0e16aa3b6e94a1a0b9566 (diff)
downloadtrollius-83a22207da266446d00f45930fa2d38ad26d3a33.tar.gz
Python issue #22560: New SSL implementation based on ssl.MemoryBIO
The new SSL implementation is based on the new ssl.MemoryBIO which is only available on Python 3.5. On Python 3.4 and older, the legacy SSL implementation (using SSL_write, SSL_read, etc.) is used. The proactor event loop only supports the new implementation. The new asyncio.sslproto module adds _SSLPipe, SSLProtocol and _SSLProtocolTransport classes. _SSLPipe allows to "wrap" or "unwrap" a socket (switch between cleartext and SSL/TLS). Patch written by Antoine Pitrou. sslproto.py is based on gruvi/ssl.py of the gruvi project written by Geert Jansen. This change adds SSL support to ProactorEventLoop on Python 3.5 and newer! It becomes also possible to implement STARTTTLS: switch a cleartext socket to SSL.
Diffstat (limited to 'asyncio/test_utils.py')
-rw-r--r--asyncio/test_utils.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/asyncio/test_utils.py b/asyncio/test_utils.py
index 3e5eee5..180bafa 100644
--- a/asyncio/test_utils.py
+++ b/asyncio/test_utils.py
@@ -434,3 +434,8 @@ def mock_nonblocking_socket():
sock = mock.Mock(socket.socket)
sock.gettimeout.return_value = 0.0
return sock
+
+
+def force_legacy_ssl_support():
+ return mock.patch('asyncio.sslproto._is_sslproto_available',
+ return_value=False)