(self, sock)
| 495 | _add(w, self.wfile) |
| 496 | |
| 497 | def callback(self, sock): |
| 498 | (r, w, _) = select.select([self.rfile], [self.wfile], [], 0) |
| 499 | if self.rfile in r: |
| 500 | self.handle() |
| 501 | if self.outbuf and self.wfile in w: |
| 502 | self.flush() |
| 503 | |
| 504 | |
| 505 | class MuxWrapper(SockWrapper): |