(self, connection, **kwargs)
| 952 | return SSLIOStream(connection, **kwargs) |
| 953 | |
| 954 | def _make_client_iostream(self, connection, **kwargs): |
| 955 | return SSLIOStream( |
| 956 | connection, ssl_options=dict(cert_reqs=ssl.CERT_NONE), **kwargs |
| 957 | ) |
| 958 | |
| 959 | |
| 960 | # This will run some tests that are basically redundant but it's the |
nothing calls this directly
no test coverage detected