diff options
| author | Hai Shi <shihai1992@gmail.com> | 2019-06-28 04:02:57 -0500 |
|---|---|---|
| committer | Inada Naoki <songofacandy@gmail.com> | 2019-06-28 18:02:56 +0900 |
| commit | b4bee03087a3c70cb040e2ce569c828860ed8e87 (patch) | |
| tree | c1b96770862434c265262e370189dac1716d743c /Doc | |
| parent | 3b03b09fc94425915c5b1225e9200a3a95bc827b (diff) | |
| download | cpython-git-b4bee03087a3c70cb040e2ce569c828860ed8e87.tar.gz | |
bpo-37432: Doc: Fix signature of PyObject_Del() (GH-14430)
Diffstat (limited to 'Doc')
| -rw-r--r-- | Doc/c-api/allocation.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/allocation.rst b/Doc/c-api/allocation.rst index 8e8a92003c..33b0c06a9e 100644 --- a/Doc/c-api/allocation.rst +++ b/Doc/c-api/allocation.rst @@ -48,7 +48,7 @@ Allocating Objects on the Heap improving the memory management efficiency. -.. c:function:: void PyObject_Del(PyObject *op) +.. c:function:: void PyObject_Del(void *op) Releases memory allocated to an object using :c:func:`PyObject_New` or :c:func:`PyObject_NewVar`. This is normally called from the |
