The executor used for ``run_in_executor`` (a dedicated single-thread one if none was supplied).
(self)
| 105 | |
| 106 | @property |
| 107 | def executor(self) -> futures.Executor: |
| 108 | """The executor used for ``run_in_executor`` (a dedicated single-thread one if none was supplied).""" |
| 109 | return self._executor |
| 110 | |
| 111 | @asynccontextmanager |
| 112 | async def read_lock(self, timeout: float | None = None, *, blocking: bool | None = None) -> AsyncGenerator[None]: |
nothing calls this directly
no outgoing calls
no test coverage detected