Lines Matching defs:context
122 "add_done_callback($self, fn, /, *, context=<unrepresentable>)\n"
136 PyObject *context);
142 static const char * const _keywords[] = {"", "context", NULL};
147 PyObject *context = NULL;
157 context = args[1];
159 return_value = _asyncio_Future_add_done_callback_impl(self, fn, context);
281 "it erases the context exception value.");
296 "Task(coro, *, loop=None, name=None, context=None)\n"
303 PyObject *name, PyObject *context);
309 static const char * const _keywords[] = {"coro", "loop", "name", "context", NULL};
318 PyObject *context = Py_None;
340 context = fastargs[3];
342 return_value = _asyncio_Task___init___impl((TaskObj *)self, coro, loop, name, context);
355 "it erases the context exception value.");