(self, transport)
| 214 | return self._stream_reader_wr() |
| 215 | |
| 216 | def _replace_transport(self, transport): |
| 217 | self._transport = transport |
| 218 | self._over_ssl = transport.get_extra_info('sslcontext') is not None |
| 219 | |
| 220 | def connection_made(self, transport): |
| 221 | if self._reject_connection: |
no test coverage detected