(sock)
| 200 | |
| 201 | |
| 202 | def _check_ssl_socket(sock): |
| 203 | if ssl is not None and isinstance(sock, ssl.SSLSocket): |
| 204 | raise TypeError("Socket cannot be of type SSLSocket") |
| 205 | |
| 206 | |
| 207 | class _SendfileFallbackProtocol(protocols.Protocol): |
no test coverage detected