mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
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.
This commit is contained in:
parent
c56817353d
commit
f913e542be
2 changed files with 62 additions and 54 deletions
|
@ -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::
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue