Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
e5b99f0f
Commit
e5b99f0f
authored
Nov 30, 2010
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove redundant includes of headers that are already included by Python.h.
parent
71c23d44
Changes
22
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
0 additions
and
32 deletions
+0
-32
Modules/_datetimemodule.c
Modules/_datetimemodule.c
+0
-1
Modules/_lsprof.c
Modules/_lsprof.c
+0
-1
Modules/main.c
Modules/main.c
+0
-1
Modules/parsermodule.c
Modules/parsermodule.c
+0
-2
Modules/signalmodule.c
Modules/signalmodule.c
+0
-1
Modules/symtablemodule.c
Modules/symtablemodule.c
+0
-1
Objects/funcobject.c
Objects/funcobject.c
+0
-1
Objects/genobject.c
Objects/genobject.c
+0
-2
Objects/object.c
Objects/object.c
+0
-1
Objects/unicodectype.c
Objects/unicodectype.c
+0
-1
Objects/unicodeobject.c
Objects/unicodeobject.c
+0
-1
Python/ast.c
Python/ast.c
+0
-1
Python/bltinmodule.c
Python/bltinmodule.c
+0
-1
Python/ceval.c
Python/ceval.c
+0
-1
Python/compile.c
Python/compile.c
+0
-2
Python/future.c
Python/future.c
+0
-1
Python/import.c
Python/import.c
+0
-4
Python/peephole.c
Python/peephole.c
+0
-2
Python/pyarena.c
Python/pyarena.c
+0
-1
Python/pythonrun.c
Python/pythonrun.c
+0
-4
Python/sysmodule.c
Python/sysmodule.c
+0
-1
Python/traceback.c
Python/traceback.c
+0
-1
No files found.
Modules/_datetimemodule.c
View file @
e5b99f0f
...
...
@@ -3,7 +3,6 @@
*/
#include "Python.h"
#include "modsupport.h"
#include "structmember.h"
#include <time.h>
...
...
Modules/_lsprof.c
View file @
e5b99f0f
#include "Python.h"
#include "compile.h"
#include "frameobject.h"
#include "rotatingtree.h"
...
...
Modules/main.c
View file @
e5b99f0f
...
...
@@ -2,7 +2,6 @@
#include "Python.h"
#include "osdefs.h"
#include "import.h"
#include <locale.h>
...
...
Modules/parsermodule.c
View file @
e5b99f0f
...
...
@@ -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 */
...
...
Modules/signalmodule.c
View file @
e5b99f0f
...
...
@@ -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>
...
...
Modules/symtablemodule.c
View file @
e5b99f0f
#include "Python.h"
#include "code.h"
#include "compile.h"
#include "Python-ast.h"
#include "symtable.h"
...
...
Objects/funcobject.c
View file @
e5b99f0f
...
...
@@ -3,7 +3,6 @@
#include "Python.h"
#include "code.h"
#include "eval.h"
#include "structmember.h"
PyObject
*
...
...
Objects/genobject.c
View file @
e5b99f0f
...
...
@@ -2,8 +2,6 @@
#include "Python.h"
#include "frameobject.h"
#include "genobject.h"
#include "ceval.h"
#include "structmember.h"
#include "opcode.h"
...
...
Objects/object.c
View file @
e5b99f0f
...
...
@@ -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
...
...
Objects/unicodectype.c
View file @
e5b99f0f
...
...
@@ -9,7 +9,6 @@
*/
#include "Python.h"
#include "unicodeobject.h"
#define ALPHA_MASK 0x01
#define DECIMAL_MASK 0x02
...
...
Objects/unicodeobject.c
View file @
e5b99f0f
...
...
@@ -43,7 +43,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "Python.h"
#include "bytes_methods.h"
#include "unicodeobject.h"
#include "ucnhash.h"
#ifdef MS_WINDOWS
...
...
Python/ast.c
View file @
e5b99f0f
...
...
@@ -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"
...
...
Python/bltinmodule.c
View file @
e5b99f0f
...
...
@@ -5,7 +5,6 @@
#include "node.h"
#include "code.h"
#include "eval.h"
#include <ctype.h>
...
...
Python/ceval.c
View file @
e5b99f0f
...
...
@@ -13,7 +13,6 @@
#include "code.h"
#include "frameobject.h"
#include "eval.h"
#include "opcode.h"
#include "structmember.h"
...
...
Python/compile.c
View file @
e5b99f0f
...
...
@@ -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"
...
...
Python/future.c
View file @
e5b99f0f
...
...
@@ -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"
...
...
Python/import.c
View file @
e5b99f0f
...
...
@@ -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"
...
...
Python/peephole.c
View file @
e5b99f0f
...
...
@@ -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"
...
...
Python/pyarena.c
View file @
e5b99f0f
#include "Python.h"
#include "pyarena.h"
/* A simple arena block structure.
...
...
Python/pythonrun.c
View file @
e5b99f0f
...
...
@@ -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>
...
...
Python/sysmodule.c
View file @
e5b99f0f
...
...
@@ -17,7 +17,6 @@ Data members:
#include "Python.h"
#include "code.h"
#include "frameobject.h"
#include "eval.h"
#include "osdefs.h"
...
...
Python/traceback.c
View file @
e5b99f0f
...
...
@@ -7,7 +7,6 @@
#include "frameobject.h"
#include "structmember.h"
#include "osdefs.h"
#include "traceback.h"
#ifdef HAVE_FCNTL_H
#include <fcntl.h>
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment