(self)
| 72 | self.encoding = baseclass.encoding |
| 73 | |
| 74 | def handle_read(self): |
| 75 | new_data = self.recv(1024) |
| 76 | self.baseclass.last_received_data += new_data |
| 77 | |
| 78 | def handle_close(self): |
| 79 | # XXX: this method can be called many times in a row for a single |