(self)
| 103 | self.read_buf.extend(newData) |
| 104 | |
| 105 | def handle_write(self): |
| 106 | self.lastTx = time.time() |
| 107 | written = self.send(self.write_buf[0:self.uploadChunk]) |
| 108 | asyncore.update_sent(written) |
| 109 | self.sentBytes += written |
| 110 | self.slice_write_buf(written) |
| 111 | |
| 112 | def handle_connect_event(self): |
| 113 | try: |
nothing calls this directly
no test coverage detected