[Python-checkins] r86884 - in python/branches/py3k: Modules/_datetimemodule.c Modules/_lsprof.c Modules/main.c Modules/parsermodule.c Modules/signalmodule.c Modules/symtablemodule.c Objects/funcobject.c Objects/genobject.c Objects/object.c Objects/unicodectype.c Objects/unicodeobject.c Python/ast.c Python/bltinmodule.c Python/ceval.c Python/compile.c Python/future.c Python/import.c Python/peephole.c Python/pyarena.c Python/pythonrun.c Python/sysmodule.c Python/traceback.c
georg.brandl
python-checkins at python.org
Tue Nov 30 10:41:02 CET 2010
Author: georg.brandl
Date: Tue Nov 30 10:41:01 2010
New Revision: 86884
Log:
Remove redundant includes of headers that are already included by Python.h.
Modified:
python/branches/py3k/Modules/_datetimemodule.c
python/branches/py3k/Modules/_lsprof.c
python/branches/py3k/Modules/main.c
python/branches/py3k/Modules/parsermodule.c
python/branches/py3k/Modules/signalmodule.c
python/branches/py3k/Modules/symtablemodule.c
python/branches/py3k/Objects/funcobject.c
python/branches/py3k/Objects/genobject.c
python/branches/py3k/Objects/object.c
python/branches/py3k/Objects/unicodectype.c
python/branches/py3k/Objects/unicodeobject.c
python/branches/py3k/Python/ast.c
python/branches/py3k/Python/bltinmodule.c
python/branches/py3k/Python/ceval.c
python/branches/py3k/Python/compile.c
python/branches/py3k/Python/future.c
python/branches/py3k/Python/import.c
python/branches/py3k/Python/peephole.c
python/branches/py3k/Python/pyarena.c
python/branches/py3k/Python/pythonrun.c
python/branches/py3k/Python/sysmodule.c
python/branches/py3k/Python/traceback.c
Modified: python/branches/py3k/Modules/_datetimemodule.c
==============================================================================
--- python/branches/py3k/Modules/_datetimemodule.c (original)
+++ python/branches/py3k/Modules/_datetimemodule.c Tue Nov 30 10:41:01 2010
@@ -3,7 +3,6 @@
*/
#include "Python.h"
-#include "modsupport.h"
#include "structmember.h"
#include <time.h>
Modified: python/branches/py3k/Modules/_lsprof.c
==============================================================================
--- python/branches/py3k/Modules/_lsprof.c (original)
+++ python/branches/py3k/Modules/_lsprof.c Tue Nov 30 10:41:01 2010
@@ -1,5 +1,4 @@
#include "Python.h"
-#include "compile.h"
#include "frameobject.h"
#include "rotatingtree.h"
Modified: python/branches/py3k/Modules/main.c
==============================================================================
--- python/branches/py3k/Modules/main.c (original)
+++ python/branches/py3k/Modules/main.c Tue Nov 30 10:41:01 2010
@@ -2,7 +2,6 @@
#include "Python.h"
#include "osdefs.h"
-#include "import.h"
#include <locale.h>
Modified: python/branches/py3k/Modules/parsermodule.c
==============================================================================
--- python/branches/py3k/Modules/parsermodule.c (original)
+++ python/branches/py3k/Modules/parsermodule.c Tue Nov 30 10:41:01 2010
@@ -34,10 +34,8 @@
#include "grammar.h"
#include "parsetok.h"
/* ISTERMINAL() / ISNONTERMINAL() */
-#include "compile.h"
#undef Yield
#include "ast.h"
-#include "pyarena.h"
extern grammar _PyParser_Grammar; /* From graminit.c */
Modified: python/branches/py3k/Modules/signalmodule.c
==============================================================================
--- python/branches/py3k/Modules/signalmodule.c (original)
+++ python/branches/py3k/Modules/signalmodule.c Tue Nov 30 10:41:01 2010
@@ -4,7 +4,6 @@
/* XXX Signals should be recorded per thread, now we have thread state. */
#include "Python.h"
-#include "intrcheck.h"
#ifdef MS_WINDOWS
#include <Windows.h>
Modified: python/branches/py3k/Modules/symtablemodule.c
==============================================================================
--- python/branches/py3k/Modules/symtablemodule.c (original)
+++ python/branches/py3k/Modules/symtablemodule.c Tue Nov 30 10:41:01 2010
@@ -1,7 +1,6 @@
#include "Python.h"
#include "code.h"
-#include "compile.h"
#include "Python-ast.h"
#include "symtable.h"
Modified: python/branches/py3k/Objects/funcobject.c
==============================================================================
--- python/branches/py3k/Objects/funcobject.c (original)
+++ python/branches/py3k/Objects/funcobject.c Tue Nov 30 10:41:01 2010
@@ -3,7 +3,6 @@
#include "Python.h"
#include "code.h"
-#include "eval.h"
#include "structmember.h"
PyObject *
Modified: python/branches/py3k/Objects/genobject.c
==============================================================================
--- python/branches/py3k/Objects/genobject.c (original)
+++ python/branches/py3k/Objects/genobject.c Tue Nov 30 10:41:01 2010
@@ -2,8 +2,6 @@
#include "Python.h"
#include "frameobject.h"
-#include "genobject.h"
-#include "ceval.h"
#include "structmember.h"
#include "opcode.h"
Modified: python/branches/py3k/Objects/object.c
==============================================================================
--- python/branches/py3k/Objects/object.c (original)
+++ python/branches/py3k/Objects/object.c Tue Nov 30 10:41:01 2010
@@ -2,7 +2,6 @@
/* Generic object operations; and implementation of None (NoObject) */
#include "Python.h"
-#include "sliceobject.h" /* For PyEllipsis_Type */
#include "frameobject.h"
#ifdef __cplusplus
Modified: python/branches/py3k/Objects/unicodectype.c
==============================================================================
--- python/branches/py3k/Objects/unicodectype.c (original)
+++ python/branches/py3k/Objects/unicodectype.c Tue Nov 30 10:41:01 2010
@@ -9,7 +9,6 @@
*/
#include "Python.h"
-#include "unicodeobject.h"
#define ALPHA_MASK 0x01
#define DECIMAL_MASK 0x02
Modified: python/branches/py3k/Objects/unicodeobject.c
==============================================================================
--- python/branches/py3k/Objects/unicodeobject.c (original)
+++ python/branches/py3k/Objects/unicodeobject.c Tue Nov 30 10:41:01 2010
@@ -43,7 +43,6 @@
#include "Python.h"
#include "bytes_methods.h"
-#include "unicodeobject.h"
#include "ucnhash.h"
#ifdef MS_WINDOWS
Modified: python/branches/py3k/Python/ast.c
==============================================================================
--- python/branches/py3k/Python/ast.c (original)
+++ python/branches/py3k/Python/ast.c Tue Nov 30 10:41:01 2010
@@ -7,7 +7,6 @@
#include "Python-ast.h"
#include "grammar.h"
#include "node.h"
-#include "pyarena.h"
#include "ast.h"
#include "token.h"
#include "parsetok.h"
Modified: python/branches/py3k/Python/bltinmodule.c
==============================================================================
--- python/branches/py3k/Python/bltinmodule.c (original)
+++ python/branches/py3k/Python/bltinmodule.c Tue Nov 30 10:41:01 2010
@@ -5,7 +5,6 @@
#include "node.h"
#include "code.h"
-#include "eval.h"
#include <ctype.h>
Modified: python/branches/py3k/Python/ceval.c
==============================================================================
--- python/branches/py3k/Python/ceval.c (original)
+++ python/branches/py3k/Python/ceval.c Tue Nov 30 10:41:01 2010
@@ -13,7 +13,6 @@
#include "code.h"
#include "frameobject.h"
-#include "eval.h"
#include "opcode.h"
#include "structmember.h"
Modified: python/branches/py3k/Python/compile.c
==============================================================================
--- python/branches/py3k/Python/compile.c (original)
+++ python/branches/py3k/Python/compile.c Tue Nov 30 10:41:01 2010
@@ -25,10 +25,8 @@
#include "Python-ast.h"
#include "node.h"
-#include "pyarena.h"
#include "ast.h"
#include "code.h"
-#include "compile.h"
#include "symtable.h"
#include "opcode.h"
Modified: python/branches/py3k/Python/future.c
==============================================================================
--- python/branches/py3k/Python/future.c (original)
+++ python/branches/py3k/Python/future.c Tue Nov 30 10:41:01 2010
@@ -4,7 +4,6 @@
#include "token.h"
#include "graminit.h"
#include "code.h"
-#include "compile.h"
#include "symtable.h"
#define UNDEFINED_FUTURE_FEATURE "future feature %.100s is not defined"
Modified: python/branches/py3k/Python/import.c
==============================================================================
--- python/branches/py3k/Python/import.c (original)
+++ python/branches/py3k/Python/import.c Tue Nov 30 10:41:01 2010
@@ -5,13 +5,9 @@
#include "Python-ast.h"
#undef Yield /* undefine macro conflicting with winbase.h */
-#include "pyarena.h"
-#include "pythonrun.h"
#include "errcode.h"
#include "marshal.h"
#include "code.h"
-#include "compile.h"
-#include "eval.h"
#include "osdefs.h"
#include "importdl.h"
Modified: python/branches/py3k/Python/peephole.c
==============================================================================
--- python/branches/py3k/Python/peephole.c (original)
+++ python/branches/py3k/Python/peephole.c Tue Nov 30 10:41:01 2010
@@ -4,10 +4,8 @@
#include "Python-ast.h"
#include "node.h"
-#include "pyarena.h"
#include "ast.h"
#include "code.h"
-#include "compile.h"
#include "symtable.h"
#include "opcode.h"
Modified: python/branches/py3k/Python/pyarena.c
==============================================================================
--- python/branches/py3k/Python/pyarena.c (original)
+++ python/branches/py3k/Python/pyarena.c Tue Nov 30 10:41:01 2010
@@ -1,5 +1,4 @@
#include "Python.h"
-#include "pyarena.h"
/* A simple arena block structure.
Modified: python/branches/py3k/Python/pythonrun.c
==============================================================================
--- python/branches/py3k/Python/pythonrun.c (original)
+++ python/branches/py3k/Python/pythonrun.c Tue Nov 30 10:41:01 2010
@@ -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>
Modified: python/branches/py3k/Python/sysmodule.c
==============================================================================
--- python/branches/py3k/Python/sysmodule.c (original)
+++ python/branches/py3k/Python/sysmodule.c Tue Nov 30 10:41:01 2010
@@ -17,7 +17,6 @@
#include "Python.h"
#include "code.h"
#include "frameobject.h"
-#include "eval.h"
#include "osdefs.h"
Modified: python/branches/py3k/Python/traceback.c
==============================================================================
--- python/branches/py3k/Python/traceback.c (original)
+++ python/branches/py3k/Python/traceback.c Tue Nov 30 10:41:01 2010
@@ -7,7 +7,6 @@
#include "frameobject.h"
#include "structmember.h"
#include "osdefs.h"
-#include "traceback.h"
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif
More information about the Python-checkins
mailing list