| 234 | py_awaitable * res; |
| 235 | |
| 236 | void operator()(py::object t) const |
| 237 | { |
| 238 | res->extract_result(t); |
| 239 | asio::dispatch(exec, std::move(awaiter)); |
| 240 | } |
| 241 | }; |
| 242 | |
| 243 | if (py::cast<bool>(getattr(task, "done")())) |
nothing calls this directly
no test coverage detected