Lines Matching defs:module
13 module _asyncio
28 /* State of the _asyncio module */
525 traceback module is already unloaded.
2299 behavior of the traceback module.)
2322 This produces output similar to that of the traceback module,
3075 _asyncio__get_running_loop_impl(PyObject *module)
3101 _asyncio__set_running_loop(PyObject *module, PyObject *loop)
3124 _asyncio_get_event_loop_impl(PyObject *module)
3141 _asyncio__get_event_loop_impl(PyObject *module, int stacklevel)
3156 _asyncio_get_running_loop_impl(PyObject *module)
3182 _asyncio__register_task_impl(PyObject *module, PyObject *task)
3203 _asyncio__unregister_task_impl(PyObject *module, PyObject *task)
3227 _asyncio__enter_task_impl(PyObject *module, PyObject *loop, PyObject *task)
3251 _asyncio__leave_task_impl(PyObject *module, PyObject *loop, PyObject *task)
3356 PyObject *module = NULL;
3383 Py_CLEAR(module); \
3384 module = PyImport_ImportModule(NAME); \
3385 if (module == NULL) { \
3390 VAR = PyObject_GetAttrString(module, NAME); \
3426 Py_DECREF(module);
3430 Py_CLEAR(module);
3438 PyDoc_STRVAR(module_doc, "Accelerator module for asyncio");