commit | 6eb996685e25c09499858bee4be258776e603c6f | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@redhat.com> | Mon Nov 26 17:09:16 2018 +0100 |
committer | GitHub <noreply@github.com> | Mon Nov 26 17:09:16 2018 +0100 |
tree | 7a867595182170ce05ae4eaba0eb3f8e7ff4c5e9 | |
parent | 282c03d45d2d766c55904a4eb766923a2c459124 [diff] |
bpo-35134: Create Include/cpython/object.h (GH-10679) * Move object.h code surrounded by "#ifndef Py_LIMITED_API" to a new Include/cpython/object.h header file. * "typedef struct _typeobject PyTypeObject;" is now always defined in object.h, but if Py_LIMITED_API is not defined, Include/cpython/object.h also defines the structure. * Complete the printfunc comment to mention Py_LIMITED_API define.