(self, sock)
| 6754 | return b''.join(received) |
| 6755 | |
| 6756 | def meth_from_sock(self, sock): |
| 6757 | # Depending on the mixin class being run return either send() |
| 6758 | # or sendfile() method implementation. |
| 6759 | return getattr(sock, "_sendfile_use_send") |
| 6760 | |
| 6761 | # regular file |
| 6762 |
no test coverage detected