* @brief Create a new `AsyncHandle` without an associated `asyncio.Handle` Python object * @return the timeoutId */
| 48 | * @return the timeoutId |
| 49 | */ |
| 50 | static inline id_t newEmpty() { |
| 51 | auto handle = AsyncHandle(Py_None); |
| 52 | return AsyncHandle::getUniqueId(std::move(handle)); |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * @brief Cancel the scheduled event-loop job. |
nothing calls this directly
no test coverage detected