diff options
author | Georg Brandl <georg@python.org> | 2010-11-30 09:30:54 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-11-30 09:30:54 (GMT) |
commit | 71c23d447322307572fbe0ca68b61fad97e10021 (patch) | |
tree | 65b0cc0bfd86b04b891b4a11269485078a29495f /Modules | |
parent | 53afa6d239a48acbff0bfacdbce4ca3f2587ee3c (diff) | |
download | cpython-71c23d447322307572fbe0ca68b61fad97e10021.zip cpython-71c23d447322307572fbe0ca68b61fad97e10021.tar.gz cpython-71c23d447322307572fbe0ca68b61fad97e10021.tar.bz2 |
Include structseq.h in Python.h, and remove now-redundant includes in individual sources.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_lsprof.c | 1 | ||||
-rw-r--r-- | Modules/_struct.c | 1 | ||||
-rw-r--r-- | Modules/grpmodule.c | 1 | ||||
-rw-r--r-- | Modules/posixmodule.c | 1 | ||||
-rw-r--r-- | Modules/pwdmodule.c | 1 | ||||
-rw-r--r-- | Modules/resource.c | 1 | ||||
-rw-r--r-- | Modules/spwdmodule.c | 1 | ||||
-rw-r--r-- | Modules/timemodule.c | 1 |
8 files changed, 0 insertions, 8 deletions
diff --git a/Modules/_lsprof.c b/Modules/_lsprof.c index 1fd660b..a5630c8 100644 --- a/Modules/_lsprof.c +++ b/Modules/_lsprof.c @@ -1,7 +1,6 @@ #include "Python.h" #include "compile.h" #include "frameobject.h" -#include "structseq.h" #include "rotatingtree.h" #if !defined(HAVE_LONG_LONG) diff --git a/Modules/_struct.c b/Modules/_struct.c index f85d562..2b4341c 100644 --- a/Modules/_struct.c +++ b/Modules/_struct.c @@ -6,7 +6,6 @@ #define PY_SSIZE_T_CLEAN #include "Python.h" -#include "structseq.h" #include "structmember.h" #include <ctype.h> diff --git a/Modules/grpmodule.c b/Modules/grpmodule.c index d64c142..97a3783 100644 --- a/Modules/grpmodule.c +++ b/Modules/grpmodule.c @@ -2,7 +2,6 @@ /* UNIX group file access module */ #include "Python.h" -#include "structseq.h" #include <sys/types.h> #include <grp.h> diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 48dbaa5..7267eca 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -28,7 +28,6 @@ #define PY_SSIZE_T_CLEAN #include "Python.h" -#include "structseq.h" #if defined(__VMS) # include <unixio.h> diff --git a/Modules/pwdmodule.c b/Modules/pwdmodule.c index 4e6bd2f..1e0903a 100644 --- a/Modules/pwdmodule.c +++ b/Modules/pwdmodule.c @@ -2,7 +2,6 @@ /* UNIX password file access module */ #include "Python.h" -#include "structseq.h" #include <sys/types.h> #include <pwd.h> diff --git a/Modules/resource.c b/Modules/resource.c index 450f08c..1875e48 100644 --- a/Modules/resource.c +++ b/Modules/resource.c @@ -1,6 +1,5 @@ #include "Python.h" -#include "structseq.h" #include <sys/resource.h> #include <sys/time.h> #include <string.h> diff --git a/Modules/spwdmodule.c b/Modules/spwdmodule.c index 96707b4..194ae19 100644 --- a/Modules/spwdmodule.c +++ b/Modules/spwdmodule.c @@ -4,7 +4,6 @@ /* For info also see http://www.unixpapa.com/incnote/passwd.html */ #include "Python.h" -#include "structseq.h" #include <sys/types.h> #ifdef HAVE_SHADOW_H diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 5e6cd6c..79803f4 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -2,7 +2,6 @@ /* Time module */ #include "Python.h" -#include "structseq.h" #include "_time.h" #define TZNAME_ENCODING "utf-8" |