Home
last modified time | relevance | path

Searched refs:asyncio_CancelledError (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython3/Modules/
D_asynciomodule.c33 static PyObject *asyncio_CancelledError; variable
611 exc = PyObject_CallNoArgs(asyncio_CancelledError); in create_cancelled_error()
613 exc = PyObject_CallOneArg(asyncio_CancelledError, msg); in create_cancelled_error()
622 PyErr_SetObject(asyncio_CancelledError, exc); in future_set_cancelled_error()
2645 res = PyObject_IsInstance(exc, asyncio_CancelledError); in task_step_impl()
2723 if (PyErr_ExceptionMatches(asyncio_CancelledError)) { in task_step_impl()
3311 Py_CLEAR(asyncio_CancelledError); in module_free()
3377 GET_MOD_ATTR(asyncio_CancelledError, "CancelledError") in module_init()