summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-05-23 22:49:38 (GMT)
committerGuido van Rossum <guido@python.org>1996-05-23 22:49:38 (GMT)
commit5e3e426961fcf7bbaada25ad6f627fd1d6bf15f1 (patch)
tree3c6f392441268af3568233bfe8fb6e575f66e342 /Python
parent795ba583f263f240ec30e2021f3f49622e8ff78f (diff)
downloadcpython-5e3e426961fcf7bbaada25ad6f627fd1d6bf15f1.zip
cpython-5e3e426961fcf7bbaada25ad6f627fd1d6bf15f1.tar.gz
cpython-5e3e426961fcf7bbaada25ad6f627fd1d6bf15f1.tar.bz2
removed sime redundant header includes and decls.
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index fb3d1fe..a0e5eb2 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -36,22 +36,14 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "allobjects.h"
-#include "import.h"
-#include "sysmodule.h"
-#include "bltinmodule.h"
#include "compile.h"
#include "frameobject.h"
#include "eval.h"
-#include "ceval.h"
#include "opcode.h"
-#include "traceback.h"
#include "graminit.h"
-#include "pythonrun.h"
#include <ctype.h>
-extern int suppress_print; /* Declared in pythonrun.c, set in pythonmain.c */
-
/* Turn this on if your compiler chokes on the big switch: */
/* #define CASE_TOO_BIG 1 */