(self, sock)
| 6857 | return b''.join(received) |
| 6858 | |
| 6859 | def meth_from_sock(self, sock): |
| 6860 | # Depending on the mixin class being run return either send() |
| 6861 | # or sendfile() method implementation. |
| 6862 | return getattr(sock, "_sendfile_use_send") |
| 6863 | |
| 6864 | # regular file |
| 6865 |
no outgoing calls
no test coverage detected