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 /Objects | |
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 'Objects')
-rw-r--r-- | Objects/floatobject.c | 1 | ||||
-rw-r--r-- | Objects/longobject.c | 1 | ||||
-rw-r--r-- | Objects/structseq.c | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c index d0173e8..4decb0b 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -5,7 +5,6 @@ for any kind of float exception without losing portability. */ #include "Python.h" -#include "structseq.h" #include <ctype.h> #include <float.h> diff --git a/Objects/longobject.c b/Objects/longobject.c index b9ce388..e8a7284 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -4,7 +4,6 @@ #include "Python.h" #include "longintrepr.h" -#include "structseq.h" #include <float.h> #include <ctype.h> diff --git a/Objects/structseq.c b/Objects/structseq.c index 52ff301..75e2250 100644 --- a/Objects/structseq.c +++ b/Objects/structseq.c @@ -3,7 +3,6 @@ #include "Python.h" #include "structmember.h" -#include "structseq.h" static char visible_length_key[] = "n_sequence_fields"; static char real_length_key[] = "n_fields"; |