(self)
| 531 | self.out_buffer = self.out_buffer[num_sent:] |
| 532 | |
| 533 | def handle_write(self): |
| 534 | self.initiate_send() |
| 535 | |
| 536 | def writable(self): |
| 537 | return (not self.connected) or len(self.out_buffer) |
nothing calls this directly
no test coverage detected