diff options
author | 2020-04-15 02:35:41 +0200 | |
---|---|---|
committer | 2020-04-15 02:35:41 +0200 | |
commit | 4a21e57fe55076c77b0ee454e1994ca544d09dc0 (patch) | |
tree | 1c9ed1c1a467357a470cd37b98e20aa5b9878cf9 /Objects/typeobject.c | |
parent | bpo-40268: Remove explicit pythread.h includes (#19529) (diff) | |
download | cpython-4a21e57fe55076c77b0ee454e1994ca544d09dc0.tar.gz cpython-4a21e57fe55076c77b0ee454e1994ca544d09dc0.tar.bz2 cpython-4a21e57fe55076c77b0ee454e1994ca544d09dc0.zip |
bpo-40268: Remove unused structmember.h includes (GH-19530)
If only offsetof() is needed: include stddef.h instead.
When structmember.h is used, add a comment explaining that
PyMemberDef is used.
Diffstat (limited to 'Objects/typeobject.c')
-rw-r--r-- | Objects/typeobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 47766bf6fbb..a107715808f 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -5,9 +5,9 @@ #include "pycore_initconfig.h" #include "pycore_object.h" #include "pycore_pyerrors.h" -#include "pycore_pystate.h" // _PyThreadState_GET() +#include "pycore_pystate.h" // _PyThreadState_GET() #include "frameobject.h" -#include "structmember.h" +#include "structmember.h" // PyMemberDef #include <ctype.h> |