(self)
| 521 | self.out_buffer = self.out_buffer[num_sent:] |
| 522 | |
| 523 | def handle_write(self): |
| 524 | self.initiate_send() |
| 525 | |
| 526 | def writable(self): |
| 527 | return (not self.connected) or len(self.out_buffer) |
nothing calls this directly
no test coverage detected