(sock)
| 202 | |
| 203 | |
| 204 | def _check_ssl_socket(sock): |
| 205 | if ssl is not None and isinstance(sock, ssl.SSLSocket): |
| 206 | raise TypeError("Socket cannot be of type SSLSocket") |
| 207 | |
| 208 | |
| 209 | class _SendfileFallbackProtocol(protocols.Protocol): |
no outgoing calls
no test coverage detected
searching dependent graphs…