diff options
author | Victor Stinner <vstinner@python.org> | 2020-04-15 00:35:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 00:35:41 (GMT) |
commit | 4a21e57fe55076c77b0ee454e1994ca544d09dc0 (patch) | |
tree | 1c9ed1c1a467357a470cd37b98e20aa5b9878cf9 /Objects/abstract.c | |
parent | 62183b8d6d49e59c6a98bbdaa65b7ea1415abb7f (diff) | |
download | cpython-4a21e57fe55076c77b0ee454e1994ca544d09dc0.zip cpython-4a21e57fe55076c77b0ee454e1994ca544d09dc0.tar.gz cpython-4a21e57fe55076c77b0ee454e1994ca544d09dc0.tar.bz2 |
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/abstract.c')
-rw-r--r-- | Objects/abstract.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c index 8e22dfe..6e390dd 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c @@ -1,12 +1,12 @@ /* Abstract Object Interface (many thanks to Jim Fulton) */ #include "Python.h" -#include "pycore_abstract.h" // _PyIndex_Check() -#include "pycore_ceval.h" // _Py_EnterRecursiveCall() +#include "pycore_abstract.h" // _PyIndex_Check() +#include "pycore_ceval.h" // _Py_EnterRecursiveCall() #include "pycore_pyerrors.h" -#include "pycore_pystate.h" // _PyThreadState_GET() +#include "pycore_pystate.h" // _PyThreadState_GET() #include <ctype.h> -#include "structmember.h" /* we need the offsetof() macro from there */ +#include <stddef.h> // offsetof() #include "longintrepr.h" |