(self, sel)
| 40 | event.dispatch(self.io) |
| 41 | |
| 42 | def _events(self, sel): |
| 43 | events = self.loop.ERROR |
| 44 | if sel.reading: |
| 45 | events |= self.loop.READ |
| 46 | if sel.writing: |
| 47 | events |= self.loop.WRITE |
| 48 | return events |
| 49 | |
| 50 | def _schedule(self, sel): |
| 51 | if sel.deadline: |
no outgoing calls
no test coverage detected