diff options
author | Fred Drake <fdrake@acm.org> | 2000-11-28 22:34:32 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-11-28 22:34:32 (GMT) |
commit | ee814bf2c9d4b4a578064e69764ed58cfc223846 (patch) | |
tree | e32b4f1109a5166bff072089d0b32c348f0453d0 /Doc/api/refcounts.dat | |
parent | 83ff4af1a3d30ead430109114c785d569313226a (diff) | |
download | cpython-ee814bf2c9d4b4a578064e69764ed58cfc223846.zip cpython-ee814bf2c9d4b4a578064e69764ed58cfc223846.tar.gz cpython-ee814bf2c9d4b4a578064e69764ed58cfc223846.tar.bz2 |
Added documentation for the Py_InitModule*() family of functions.
Diffstat (limited to 'Doc/api/refcounts.dat')
-rw-r--r-- | Doc/api/refcounts.dat | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Doc/api/refcounts.dat b/Doc/api/refcounts.dat index 8021151..aace695 100644 --- a/Doc/api/refcounts.dat +++ b/Doc/api/refcounts.dat @@ -274,6 +274,22 @@ PyFloat_Check:PyObject*:p:0: PyFloat_FromDouble:PyObject*::+1: PyFloat_FromDouble:double:v:: +Py_InitModule:PyObject*::0: +Py_InitModule:name:char*:: +Py_InitModule:methods:PyMethodDef[]:: + +Py_InitModule3:PyObject*::0: +Py_InitModule3:name:char*:: +Py_InitModule3:methods:PyMethodDef[]:: +Py_InitModule3:doc:char*:: + +Py_InitModule4:PyObject*::0: +Py_InitModule4:name:char*:: +Py_InitModule4:methods:PyMethodDef[]:: +Py_InitModule4:doc:char*:: +Py_InitModule4:self:PyObject*:: +Py_InitModule4:apiver:int::usually provided by Py_InitModule or Py_InitModule3 + PyImport_AddModule:PyObject*::0:reference borrowed from sys.modules PyImport_AddModule:char*:name:: |