summaryrefslogtreecommitdiff
path: root/Modules/_collectionsmodule.c
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 /Modules/_collectionsmodule.c
parent62183b8d6d49e59c6a98bbdaa65b7ea1415abb7f (diff)
downloadcpython-git-4a21e57fe55076c77b0ee454e1994ca544d09dc0.tar.gz
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 'Modules/_collectionsmodule.c')
-rw-r--r--Modules/_collectionsmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c
index 181e3229da..978ea03bd9 100644
--- a/Modules/_collectionsmodule.c
+++ b/Modules/_collectionsmodule.c
@@ -1,10 +1,10 @@
#include "Python.h"
-#include "structmember.h"
+#include "structmember.h" // PyMemberDef
#ifdef STDC_HEADERS
#include <stddef.h>
#else
-#include <sys/types.h> /* For size_t */
+#include <sys/types.h> // size_t
#endif
/*[clinic input]