(self, data)
| 1553 | return getattr(self.sock, name) |
| 1554 | |
| 1555 | def send(self, data): |
| 1556 | # Fake that our write buffer is full, send only half |
| 1557 | to_send = len(data)//2 |
| 1558 | return self.sock.send(data[:to_send]) |
| 1559 | |
| 1560 | def _fake_full_write_buffer(data): |
| 1561 | if socket_transport._read_ready_cb is None and not isinstance(socket_transport._sock, SocketWrapper): |
no outgoing calls
no test coverage detected