| 300 | } |
| 301 | |
| 302 | PyObject *PyEventLoop::Future::getResult() { |
| 303 | // https://docs.python.org/3.9/library/asyncio-future.html#asyncio.Future.result |
| 304 | return PyObject_CallMethod(_future, "result", NULL); |
| 305 | } |
| 306 | |
| 307 | PyObject *PyEventLoop::Future::getException() { |
| 308 | // https://docs.python.org/3.9/library/asyncio-future.html#asyncio.Future.exception |
no outgoing calls
no test coverage detected