diff options
author | Fred Drake <fdrake@acm.org> | 2000-09-12 20:17:17 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-09-12 20:17:17 (GMT) |
commit | f913e542bee40dfb83642a903c74e76566694c69 (patch) | |
tree | aafef54671396dd53c8dcf9a8fd9d5d2025cb1d0 /Doc/api/refcounts.dat | |
parent | c56817353d38fa2274831564053ee3090208f2be (diff) | |
download | cpython-f913e542bee40dfb83642a903c74e76566694c69.zip cpython-f913e542bee40dfb83642a903c74e76566694c69.tar.gz cpython-f913e542bee40dfb83642a903c74e76566694c69.tar.bz2 |
Vladimir Marangozov <Vladimir.Marangozov@inrialpes.fr>:
Here are some changes to the C API docs. The memory examples & API have
been updated because one malloc family is gone (Py_Malloc).
You'll see other small additions to the "building new types" section
for completeness and some cleanup at the end of the memory section.
Diffstat (limited to 'Doc/api/refcounts.dat')
-rw-r--r-- | Doc/api/refcounts.dat | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Doc/api/refcounts.dat b/Doc/api/refcounts.dat index 09a727e..0a80d67 100644 --- a/Doc/api/refcounts.dat +++ b/Doc/api/refcounts.dat @@ -609,6 +609,12 @@ PyObject_Hash:PyObject*:o:0: PyObject_IsTrue:int::: PyObject_IsTrue:PyObject*:o:0: +PyObject_Init:PyObject*::0: +PyObject_Init:PyObject*:op:0: + +PyObject_InitVar:PyVarObject*::0: +PyObject_InitVar:PyVarObject*:op:0: + PyObject_Length:int::: PyObject_Length:PyObject*:o:0: @@ -1212,10 +1218,13 @@ _PyImport_FixupExtension:char*::: _PyImport_Init:void::: +_PyObject_Del:void::: +_PyObject_Del:PyObject*:op:0: + _PyObject_New:PyObject*::+1: _PyObject_New:PyTypeObject*:type:0: -_PyObject_NewVar:PyObject*::+1: +_PyObject_NewVar:PyVarObject*::+1: _PyObject_NewVar:PyTypeObject*:type:0: _PyObject_NewVar:int:size:: |