(self, fd, callback, *args)
| 929 | self._loop._add_reader(fd, callback, *args, context=self._context) |
| 930 | |
| 931 | def _add_writer(self, fd, callback, *args): |
| 932 | self._loop._add_writer(fd, callback, *args, context=self._context) |
| 933 | |
| 934 | def _call_soon(self, callback, *args): |
| 935 | self._loop.call_soon(callback, *args, context=self._context) |
no outgoing calls
no test coverage detected