(self, 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) |
| 936 | |
| 937 | class _SelectorSocketTransport(_SelectorTransport): |
| 938 |
no test coverage detected