(self, sel, events)
| 62 | self.loop.add_callback(self._process) |
| 63 | |
| 64 | def _callback(self, sel, events): |
| 65 | if self.loop.READ & events: |
| 66 | sel.readable() |
| 67 | if self.loop.WRITE & events: |
| 68 | sel.writable() |
| 69 | self._process() |
| 70 | |
| 71 | def on_selectable_init(self, event): |
| 72 | sel = event.context |
no test coverage detected