bpo-37432: Doc: Fix signature of PyObject_Del() (GH-14430)

(cherry picked from commit b4bee03087)

Co-authored-by: Hai Shi <shihai1992@gmail.com>
This commit is contained in:
Miss Islington (bot) 2019-06-28 02:16:36 -07:00 committed by GitHub
parent 515a026eb0
commit ad00640f93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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