]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Replace PyObject_Del with PyObject_Free (#122453)
authorVictor Stinner <vstinner@python.org>
Thu, 1 Aug 2024 12:12:33 +0000 (14:12 +0200)
committerGitHub <noreply@github.com>
Thu, 1 Aug 2024 12:12:33 +0000 (14:12 +0200)
commitfda6bd842a2b93a501526f1b830eb900d935ac73
treed2c76a2c54a99b18fd297662a1b4809f8977a8a4
parent88030861e216ac791725c8784752201d6fe31329
Replace PyObject_Del with PyObject_Free (#122453)

PyObject_Del() is just a alias to PyObject_Free() kept for backward
compatibility. Use directly PyObject_Free() instead.
13 files changed:
Doc/c-api/typeobj.rst
Modules/_testcapi/gc.c
Modules/_testcapimodule.c
Objects/bytearrayobject.c
Objects/bytesobject.c
Objects/codeobject.c
Objects/complexobject.c
Objects/fileobject.c
Objects/odictobject.c
Objects/rangeobject.c
Objects/typeobject.c
Objects/unicodeobject.c
Python/optimizer.c