aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-04-15 02:35:41 +0200
committerGitHub <noreply@github.com>2020-04-15 02:35:41 +0200
commit4a21e57fe55076c77b0ee454e1994ca544d09dc0 (patch)
tree1c9ed1c1a467357a470cd37b98e20aa5b9878cf9 /Objects/namespaceobject.c
parentbpo-40268: Remove explicit pythread.h includes (#19529) (diff)
downloadcpython-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/namespaceobject.c')
-rw-r--r--Objects/namespaceobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/namespaceobject.c b/Objects/namespaceobject.c
index a28b9e509fc..29141a81d71 100644
--- a/Objects/namespaceobject.c
+++ b/Objects/namespaceobject.c
@@ -1,7 +1,7 @@
// namespace object implementation
#include "Python.h"
-#include "structmember.h"
+#include "structmember.h" // PyMemberDef
typedef struct {