mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
bpo-37432: Doc: Fix signature of PyObject_Del() (GH-14430)
This commit is contained in:
parent
3b03b09fc9
commit
b4bee03087
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue