Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 1 | .. highlightlang:: c |
| 2 | |
| 3 | .. _importing: |
| 4 | |
| 5 | Importing Modules |
| 6 | ================= |
| 7 | |
| 8 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 9 | .. c:function:: PyObject* PyImport_ImportModule(const char *name) |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 10 | |
| 11 | .. index:: |
| 12 | single: package variable; __all__ |
| 13 | single: __all__ (package variable) |
| 14 | single: modules (in module sys) |
| 15 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 16 | This is a simplified interface to :c:func:`PyImport_ImportModuleEx` below, |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 17 | leaving the *globals* and *locals* arguments set to *NULL* and *level* set |
| 18 | to 0. When the *name* |
| 19 | argument contains a dot (when it specifies a submodule of a package), the |
| 20 | *fromlist* argument is set to the list ``['*']`` so that the return value is the |
| 21 | named module rather than the top-level package containing it as would otherwise |
| 22 | be the case. (Unfortunately, this has an additional side effect when *name* in |
| 23 | fact specifies a subpackage instead of a submodule: the submodules specified in |
| 24 | the package's ``__all__`` variable are loaded.) Return a new reference to the |
Georg Brandl | e6bcc91 | 2008-05-12 18:05:20 +0000 | [diff] [blame] | 25 | imported module, or *NULL* with an exception set on failure. A failing |
| 26 | import of a module doesn't leave the module in :data:`sys.modules`. |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 27 | |
Alexandre Vassalotti | 711ed4a | 2009-07-17 10:42:05 +0000 | [diff] [blame] | 28 | This function always uses absolute imports. |
| 29 | |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 30 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 31 | .. c:function:: PyObject* PyImport_ImportModuleNoBlock(const char *name) |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 32 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 33 | This version of :c:func:`PyImport_ImportModule` does not block. It's intended |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 34 | to be used in C functions that import other modules to execute a function. |
| 35 | The import may block if another thread holds the import lock. The function |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 36 | :c:func:`PyImport_ImportModuleNoBlock` never blocks. It first tries to fetch |
| 37 | the module from sys.modules and falls back to :c:func:`PyImport_ImportModule` |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 38 | unless the lock is held, in which case the function will raise an |
| 39 | :exc:`ImportError`. |
| 40 | |
| 41 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 42 | .. c:function:: PyObject* PyImport_ImportModuleEx(char *name, PyObject *globals, PyObject *locals, PyObject *fromlist) |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 43 | |
| 44 | .. index:: builtin: __import__ |
| 45 | |
| 46 | Import a module. This is best described by referring to the built-in Python |
| 47 | function :func:`__import__`, as the standard :func:`__import__` function calls |
| 48 | this function directly. |
| 49 | |
Georg Brandl | e6bcc91 | 2008-05-12 18:05:20 +0000 | [diff] [blame] | 50 | The return value is a new reference to the imported module or top-level |
| 51 | package, or *NULL* with an exception set on failure. Like for |
| 52 | :func:`__import__`, the return value when a submodule of a package was |
| 53 | requested is normally the top-level package, unless a non-empty *fromlist* |
| 54 | was given. |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 55 | |
| 56 | Failing imports remove incomplete module objects, like with |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 57 | :c:func:`PyImport_ImportModule`. |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 58 | |
| 59 | |
Victor Stinner | fe93faf | 2011-03-14 15:54:52 -0400 | [diff] [blame] | 60 | .. c:function:: PyObject* PyImport_ImportModuleLevelObject(PyObject *name, PyObject *globals, PyObject *locals, PyObject *fromlist, int level) |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 61 | |
| 62 | Import a module. This is best described by referring to the built-in Python |
| 63 | function :func:`__import__`, as the standard :func:`__import__` function calls |
| 64 | this function directly. |
| 65 | |
| 66 | The return value is a new reference to the imported module or top-level package, |
| 67 | or *NULL* with an exception set on failure. Like for :func:`__import__`, |
| 68 | the return value when a submodule of a package was requested is normally the |
| 69 | top-level package, unless a non-empty *fromlist* was given. |
| 70 | |
Victor Stinner | fe93faf | 2011-03-14 15:54:52 -0400 | [diff] [blame] | 71 | .. versionadded:: 3.3 |
| 72 | |
| 73 | |
| 74 | .. c:function:: PyObject* PyImport_ImportModuleLevel(char *name, PyObject *globals, PyObject *locals, PyObject *fromlist, int level) |
| 75 | |
| 76 | Similar to :c:func:`PyImport_ImportModuleLevelObject`, but the name is an |
| 77 | UTF-8 encoded string instead of a Unicode object. |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 78 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 79 | .. c:function:: PyObject* PyImport_Import(PyObject *name) |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 80 | |
| 81 | This is a higher-level interface that calls the current "import hook |
| 82 | function" (with an explicit *level* of 0, meaning absolute import). It |
| 83 | invokes the :func:`__import__` function from the ``__builtins__`` of the |
| 84 | current globals. This means that the import is done using whatever import |
| 85 | hooks are installed in the current environment. |
| 86 | |
Alexandre Vassalotti | 711ed4a | 2009-07-17 10:42:05 +0000 | [diff] [blame] | 87 | This function always uses absolute imports. |
| 88 | |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 89 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 90 | .. c:function:: PyObject* PyImport_ReloadModule(PyObject *m) |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 91 | |
| 92 | Reload a module. Return a new reference to the reloaded module, or *NULL* with |
| 93 | an exception set on failure (the module still exists in this case). |
| 94 | |
| 95 | |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 96 | .. c:function:: PyObject* PyImport_AddModuleObject(PyObject *name) |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 97 | |
| 98 | Return the module object corresponding to a module name. The *name* argument |
| 99 | may be of the form ``package.module``. First check the modules dictionary if |
| 100 | there's one there, and if not, create a new one and insert it in the modules |
| 101 | dictionary. Return *NULL* with an exception set on failure. |
| 102 | |
| 103 | .. note:: |
| 104 | |
| 105 | This function does not load or import the module; if the module wasn't already |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 106 | loaded, you will get an empty module object. Use :c:func:`PyImport_ImportModule` |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 107 | or one of its variants to import a module. Package structures implied by a |
| 108 | dotted name for *name* are not created if not already present. |
| 109 | |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 110 | .. versionadded:: 3.3 |
| 111 | |
| 112 | |
| 113 | .. c:function:: PyObject* PyImport_AddModule(const char *name) |
| 114 | |
Éric Araujo | 16e6f4c | 2011-03-20 18:08:19 +0100 | [diff] [blame^] | 115 | Similar to :c:func:`PyImport_AddModuleObject`, but the name is a UTF-8 |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 116 | encoded string instead of a Unicode object. |
| 117 | |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 118 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 119 | .. c:function:: PyObject* PyImport_ExecCodeModule(char *name, PyObject *co) |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 120 | |
| 121 | .. index:: builtin: compile |
| 122 | |
| 123 | Given a module name (possibly of the form ``package.module``) and a code object |
| 124 | read from a Python bytecode file or obtained from the built-in function |
| 125 | :func:`compile`, load the module. Return a new reference to the module object, |
Georg Brandl | e6bcc91 | 2008-05-12 18:05:20 +0000 | [diff] [blame] | 126 | or *NULL* with an exception set if an error occurred. *name* |
| 127 | is removed from :attr:`sys.modules` in error cases, even if *name* was already |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 128 | in :attr:`sys.modules` on entry to :c:func:`PyImport_ExecCodeModule`. Leaving |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 129 | incompletely initialized modules in :attr:`sys.modules` is dangerous, as imports of |
| 130 | such modules have no way to know that the module object is an unknown (and |
| 131 | probably damaged with respect to the module author's intents) state. |
| 132 | |
Benjamin Peterson | 08bf91c | 2010-04-11 16:12:57 +0000 | [diff] [blame] | 133 | The module's :attr:`__file__` attribute will be set to the code object's |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 134 | :c:member:`co_filename`. |
Benjamin Peterson | 08bf91c | 2010-04-11 16:12:57 +0000 | [diff] [blame] | 135 | |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 136 | This function will reload the module if it was already imported. See |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 137 | :c:func:`PyImport_ReloadModule` for the intended way to reload a module. |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 138 | |
| 139 | If *name* points to a dotted name of the form ``package.module``, any package |
| 140 | structures not already created will still not be created. |
| 141 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 142 | See also :c:func:`PyImport_ExecCodeModuleEx` and |
| 143 | :c:func:`PyImport_ExecCodeModuleWithPathnames`. |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 144 | |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 145 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 146 | .. c:function:: PyObject* PyImport_ExecCodeModuleEx(char *name, PyObject *co, char *pathname) |
Benjamin Peterson | 08bf91c | 2010-04-11 16:12:57 +0000 | [diff] [blame] | 147 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 148 | Like :c:func:`PyImport_ExecCodeModule`, but the :attr:`__file__` attribute of |
Benjamin Peterson | 08bf91c | 2010-04-11 16:12:57 +0000 | [diff] [blame] | 149 | the module object is set to *pathname* if it is non-``NULL``. |
| 150 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 151 | See also :c:func:`PyImport_ExecCodeModuleWithPathnames`. |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 152 | |
| 153 | |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 154 | .. c:function:: PyObject* PyImport_ExecCodeModuleObject(PyObject *name, PyObject *co, PyObject *pathname, PyObject *cpathname) |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 155 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 156 | Like :c:func:`PyImport_ExecCodeModuleEx`, but the :attr:`__cached__` |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 157 | attribute of the module object is set to *cpathname* if it is |
| 158 | non-``NULL``. Of the three functions, this is the preferred one to use. |
| 159 | |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 160 | .. versionadded:: 3.3 |
| 161 | |
| 162 | |
| 163 | .. c:function:: PyObject* PyImport_ExecCodeModuleWithPathnames(char *name, PyObject *co, char *pathname, char *cpathname) |
| 164 | |
| 165 | Like :c:func:`PyImport_ExecCodeModuleObject`, but *name*, *pathname* and |
| 166 | *cpathname* are UTF-8 encoded strings. |
| 167 | |
Éric Araujo | 930df31 | 2010-12-16 06:28:48 +0000 | [diff] [blame] | 168 | .. versionadded:: 3.2 |
Benjamin Peterson | 08bf91c | 2010-04-11 16:12:57 +0000 | [diff] [blame] | 169 | |
Victor Stinner | 27ee089 | 2011-03-04 12:57:09 +0000 | [diff] [blame] | 170 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 171 | .. c:function:: long PyImport_GetMagicNumber() |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 172 | |
| 173 | Return the magic number for Python bytecode files (a.k.a. :file:`.pyc` and |
| 174 | :file:`.pyo` files). The magic number should be present in the first four bytes |
| 175 | of the bytecode file, in little-endian byte order. |
| 176 | |
| 177 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 178 | .. c:function:: const char * PyImport_GetMagicTag() |
Barry Warsaw | 28a691b | 2010-04-17 00:19:56 +0000 | [diff] [blame] | 179 | |
| 180 | Return the magic tag string for :pep:`3147` format Python bytecode file |
| 181 | names. |
| 182 | |
Éric Araujo | 930df31 | 2010-12-16 06:28:48 +0000 | [diff] [blame] | 183 | .. versionadded:: 3.2 |
| 184 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 185 | .. c:function:: PyObject* PyImport_GetModuleDict() |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 186 | |
| 187 | Return the dictionary used for the module administration (a.k.a. |
| 188 | ``sys.modules``). Note that this is a per-interpreter variable. |
| 189 | |
| 190 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 191 | .. c:function:: PyObject* PyImport_GetImporter(PyObject *path) |
Christian Heimes | 4fbc72b | 2008-03-22 00:47:35 +0000 | [diff] [blame] | 192 | |
| 193 | Return an importer object for a :data:`sys.path`/:attr:`pkg.__path__` item |
| 194 | *path*, possibly by fetching it from the :data:`sys.path_importer_cache` |
| 195 | dict. If it wasn't yet cached, traverse :data:`sys.path_hooks` until a hook |
| 196 | is found that can handle the path item. Return ``None`` if no hook could; |
Georg Brandl | 22b3431 | 2009-07-26 14:54:51 +0000 | [diff] [blame] | 197 | this tells our caller it should fall back to the built-in import mechanism. |
Christian Heimes | 4fbc72b | 2008-03-22 00:47:35 +0000 | [diff] [blame] | 198 | Cache the result in :data:`sys.path_importer_cache`. Return a new reference |
| 199 | to the importer object. |
| 200 | |
Christian Heimes | 4fbc72b | 2008-03-22 00:47:35 +0000 | [diff] [blame] | 201 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 202 | .. c:function:: void _PyImport_Init() |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 203 | |
| 204 | Initialize the import mechanism. For internal use only. |
| 205 | |
| 206 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 207 | .. c:function:: void PyImport_Cleanup() |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 208 | |
| 209 | Empty the module table. For internal use only. |
| 210 | |
| 211 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 212 | .. c:function:: void _PyImport_Fini() |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 213 | |
| 214 | Finalize the import mechanism. For internal use only. |
| 215 | |
| 216 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 217 | .. c:function:: PyObject* _PyImport_FindExtension(char *, char *) |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 218 | |
| 219 | For internal use only. |
| 220 | |
| 221 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 222 | .. c:function:: PyObject* _PyImport_FixupExtension(char *, char *) |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 223 | |
| 224 | For internal use only. |
| 225 | |
| 226 | |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 227 | .. c:function:: int PyImport_ImportFrozenModuleObject(PyObject *name) |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 228 | |
| 229 | Load a frozen module named *name*. Return ``1`` for success, ``0`` if the |
| 230 | module is not found, and ``-1`` with an exception set if the initialization |
| 231 | failed. To access the imported module on a successful load, use |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 232 | :c:func:`PyImport_ImportModule`. (Note the misnomer --- this function would |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 233 | reload the module if it was already imported.) |
| 234 | |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 235 | .. versionadded:: 3.3 |
| 236 | |
| 237 | |
| 238 | .. c:function:: int PyImport_ImportFrozenModule(char *name) |
| 239 | |
Éric Araujo | 16e6f4c | 2011-03-20 18:08:19 +0100 | [diff] [blame^] | 240 | Similar to :c:func:`PyImport_ImportFrozenModuleObject`, but the name is a |
Victor Stinner | 53dc735 | 2011-03-20 01:50:21 +0100 | [diff] [blame] | 241 | UTF-8 encoded string instead of a Unicode object. |
| 242 | |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 243 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 244 | .. c:type:: struct _frozen |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 245 | |
| 246 | .. index:: single: freeze utility |
| 247 | |
| 248 | This is the structure type definition for frozen module descriptors, as |
| 249 | generated by the :program:`freeze` utility (see :file:`Tools/freeze/` in the |
| 250 | Python source distribution). Its definition, found in :file:`Include/import.h`, |
| 251 | is:: |
| 252 | |
| 253 | struct _frozen { |
| 254 | char *name; |
| 255 | unsigned char *code; |
| 256 | int size; |
| 257 | }; |
| 258 | |
| 259 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 260 | .. c:var:: struct _frozen* PyImport_FrozenModules |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 261 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 262 | This pointer is initialized to point to an array of :c:type:`struct _frozen` |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 263 | records, terminated by one whose members are all *NULL* or zero. When a frozen |
| 264 | module is imported, it is searched in this table. Third-party code could play |
| 265 | tricks with this to provide a dynamically created collection of frozen modules. |
| 266 | |
| 267 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 268 | .. c:function:: int PyImport_AppendInittab(const char *name, PyObject* (*initfunc)(void)) |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 269 | |
| 270 | Add a single module to the existing table of built-in modules. This is a |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 271 | convenience wrapper around :c:func:`PyImport_ExtendInittab`, returning ``-1`` if |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 272 | the table could not be extended. The new module can be imported by the name |
| 273 | *name*, and uses the function *initfunc* as the initialization function called |
| 274 | on the first attempted import. This should be called before |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 275 | :c:func:`Py_Initialize`. |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 276 | |
| 277 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 278 | .. c:type:: struct _inittab |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 279 | |
| 280 | Structure describing a single entry in the list of built-in modules. Each of |
| 281 | these structures gives the name and initialization function for a module built |
Victor Stinner | db536af | 2011-03-07 18:34:59 +0100 | [diff] [blame] | 282 | into the interpreter. The name is an ASCII encoded string. Programs which |
| 283 | embed Python may use an array of these structures in conjunction with |
| 284 | :c:func:`PyImport_ExtendInittab` to provide additional built-in modules. |
| 285 | The structure is defined in :file:`Include/import.h` as:: |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 286 | |
| 287 | struct _inittab { |
Victor Stinner | db536af | 2011-03-07 18:34:59 +0100 | [diff] [blame] | 288 | char *name; /* ASCII encoded string */ |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 289 | PyObject* (*initfunc)(void); |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 290 | }; |
| 291 | |
| 292 | |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 293 | .. c:function:: int PyImport_ExtendInittab(struct _inittab *newtab) |
Georg Brandl | 54a3faa | 2008-01-20 09:30:57 +0000 | [diff] [blame] | 294 | |
| 295 | Add a collection of modules to the table of built-in modules. The *newtab* |
| 296 | array must end with a sentinel entry which contains *NULL* for the :attr:`name` |
| 297 | field; failure to provide the sentinel value can result in a memory fault. |
| 298 | Returns ``0`` on success or ``-1`` if insufficient memory could be allocated to |
| 299 | extend the internal table. In the event of failure, no modules are added to the |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 300 | internal table. This should be called before :c:func:`Py_Initialize`. |