diff options
author | Brett Cannon <brett@python.org> | 2015-12-27 12:24:06 -0800 |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2015-12-27 12:24:06 -0800 |
commit | 762d5ea8753e2c137eb7affa9fcb51db1cecd1aa (patch) | |
tree | 6434653e0fc50b8972147096fd5e791e53ee4a9e /Doc/c-api | |
parent | 85622e4bc914383c087ef2e5944b14b10b22cff5 (diff) | |
download | cpython-git-762d5ea8753e2c137eb7affa9fcb51db1cecd1aa.tar.gz |
Issue #12484: Remove a mention of Py_InitModule() and _PyImport_FixupExtension().
Thanks to Alejandro Santos for the bug report and Anish Shah for the
patch.
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/import.rst | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Doc/c-api/import.rst b/Doc/c-api/import.rst index bf1b49577e..15a9e25501 100644 --- a/Doc/c-api/import.rst +++ b/Doc/c-api/import.rst @@ -236,11 +236,6 @@ Importing Modules For internal use only. -.. c:function:: PyObject* _PyImport_FixupExtension(char *, char *) - - For internal use only. - - .. c:function:: int PyImport_ImportFrozenModuleObject(PyObject *name) Load a frozen module named *name*. Return ``1`` for success, ``0`` if the |