The executor used for ``run_in_executor`` (a dedicated single-thread one if none was supplied).
(self)
| 94 | |
| 95 | @property |
| 96 | def executor(self) -> futures.Executor: |
| 97 | """The executor used for ``run_in_executor`` (a dedicated single-thread one if none was supplied).""" |
| 98 | return self._executor |
| 99 | |
| 100 | async def _run(self, func: Callable[..., object], *args: object, **kwargs: object) -> object: |
| 101 | loop = self._loop or asyncio.get_running_loop() |
nothing calls this directly
no outgoing calls
no test coverage detected