Lines Matching defs:module

488 "behavior of the traceback module.)\n"
530 "This produces output similar to that of the traceback module,\n"
634 "_get_running_loop($module, /)\n"
646 _asyncio__get_running_loop_impl(PyObject *module);
649 _asyncio__get_running_loop(PyObject *module, PyObject *Py_UNUSED(ignored))
651 return _asyncio__get_running_loop_impl(module);
655 "_set_running_loop($module, loop, /)\n"
667 "get_event_loop($module, /)\n"
683 _asyncio_get_event_loop_impl(PyObject *module);
686 _asyncio_get_event_loop(PyObject *module, PyObject *Py_UNUSED(ignored))
688 return _asyncio_get_event_loop_impl(module);
692 "_get_event_loop($module, /, stacklevel=3)\n"
700 _asyncio__get_event_loop_impl(PyObject *module, int stacklevel);
703 _asyncio__get_event_loop(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
724 return_value = _asyncio__get_event_loop_impl(module, stacklevel);
731 "get_running_loop($module, /)\n"
742 _asyncio_get_running_loop_impl(PyObject *module);
745 _asyncio_get_running_loop(PyObject *module, PyObject *Py_UNUSED(ignored))
747 return _asyncio_get_running_loop_impl(module);
751 "_register_task($module, /, task)\n"
762 _asyncio__register_task_impl(PyObject *module, PyObject *task);
765 _asyncio__register_task(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
778 return_value = _asyncio__register_task_impl(module, task);
785 "_unregister_task($module, /, task)\n"
796 _asyncio__unregister_task_impl(PyObject *module, PyObject *task);
799 _asyncio__unregister_task(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
812 return_value = _asyncio__unregister_task_impl(module, task);
819 "_enter_task($module, /, loop, task)\n"
832 _asyncio__enter_task_impl(PyObject *module, PyObject *loop, PyObject *task);
835 _asyncio__enter_task(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
850 return_value = _asyncio__enter_task_impl(module, loop, task);
857 "_leave_task($module, /, loop, task)\n"
870 _asyncio__leave_task_impl(PyObject *module, PyObject *loop, PyObject *task);
873 _asyncio__leave_task(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
888 return_value = _asyncio__leave_task_impl(module, loop, task);