diff options
author | Georg Brandl <georg@python.org> | 2010-11-30 09:41:01 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-11-30 09:41:01 +0000 |
commit | c16ad2eeb23a20667e832e09ad88e012952d8988 (patch) | |
tree | 21f4147c4dede6044822a8aa98a39e297e5d5bb7 /Python/pythonrun.c | |
parent | 6171159a9a7c63538f97307fc00e27618b326a1f (diff) | |
download | cpython-c16ad2eeb23a20667e832e09ad88e012952d8988.tar.gz |
Remove redundant includes of headers that are already included by Python.h.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 37c1f1197a..de8e9da4b6 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -11,14 +11,10 @@ #include "parsetok.h" #include "errcode.h" #include "code.h" -#include "compile.h" #include "symtable.h" -#include "pyarena.h" #include "ast.h" -#include "eval.h" #include "marshal.h" #include "osdefs.h" -#include "abstract.h" #ifdef HAVE_SIGNAL_H #include <signal.h> |