(self, fd, callback, *args, context=None)
| 415 | raise AssertionError(f'fd {fd} is registered') |
| 416 | |
| 417 | def _add_writer(self, fd, callback, *args, context=None): |
| 418 | self.writers[fd] = events.Handle(callback, args, self, context) |
| 419 | |
| 420 | def _remove_writer(self, fd): |
| 421 | self.remove_writer_count[fd] += 1 |
no outgoing calls