]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-45459: C API uses type names rather than structure names (GH-31528)
authorVictor Stinner <vstinner@python.org>
Thu, 24 Feb 2022 16:51:59 +0000 (17:51 +0100)
committerGitHub <noreply@github.com>
Thu, 24 Feb 2022 16:51:59 +0000 (17:51 +0100)
commit042f31da552c19054acd3ef7bb6cfd857bce172b
treed1aa8f20f873c89adebbac7072d80dceb19d32c4
parentec091bd47e2f968b0d1631b9a8104283a7beeb1b
bpo-45459: C API uses type names rather than structure names (GH-31528)

Thanks to the new pytypedefs.h, it becomes to use type names like
PyObject rather like structure names like "struct _object".
23 files changed:
Include/boolobject.h
Include/cpython/abstract.h
Include/cpython/descrobject.h
Include/cpython/dictobject.h
Include/cpython/frameobject.h
Include/cpython/import.h
Include/cpython/object.h
Include/cpython/pystate.h
Include/cpython/traceback.h
Include/descrobject.h
Include/modsupport.h
Include/moduleobject.h
Include/object.h
Include/pystate.h
Include/structmember.h
Include/structseq.h
Objects/call.c
Objects/dictobject.c
Objects/moduleobject.c
Objects/typeobject.c
Python/import.c
Python/pystate.c
Tools/clinic/clinic.py