Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Doc/c-api/import.rst
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,13 @@ Importing Modules
initialization.


.. c:var:: struct _inittab *PyImport_Inittab

The table of built-in modules used by Python. Do not use this directly; use
:c:func:`PyImport_ExtendInittab` and :c:func:`PyImport_AppendInittab`
instead.


.. c:function:: PyObject* PyImport_ImportModuleAttr(PyObject *mod_name, PyObject *attr_name)

Import the module *mod_name* and get its attribute *attr_name*.
Expand Down
Loading