[Python-checkins] python/dist/src/Python bltinmodule.c, 2.328, 2.329 marshal.c, 1.89, 1.90 symtable.c, 2.14, 2.15

jhylton@users.sourceforge.net jhylton at users.sourceforge.net
Fri Oct 21 16:58:09 CEST 2005


Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2903/Python

Modified Files:
	bltinmodule.c marshal.c symtable.c 
Log Message:
Fix a bunch of imports to use code.h instead of compile.h.
Remove duplicate declarations from compile.h


Index: bltinmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/bltinmodule.c,v
retrieving revision 2.328
retrieving revision 2.329
diff -u -d -r2.328 -r2.329
--- bltinmodule.c	20 Oct 2005 19:59:25 -0000	2.328
+++ bltinmodule.c	21 Oct 2005 14:58:06 -0000	2.329
@@ -4,7 +4,6 @@
 
 #include "node.h"
 #include "code.h"
-#include "compile.h"
 #include "eval.h"
 
 #include <ctype.h>

Index: marshal.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/marshal.c,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -d -r1.89 -r1.90
--- marshal.c	20 Oct 2005 19:59:25 -0000	1.89
+++ marshal.c	21 Oct 2005 14:58:06 -0000	1.90
@@ -7,7 +7,6 @@
 #include "Python.h"
 #include "longintrepr.h"
 #include "code.h"
-#include "compile.h"
 #include "marshal.h"
 
 /* High water mark to determine when the marshalled object is dangerously deep

Index: symtable.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/symtable.c,v
retrieving revision 2.14
retrieving revision 2.15
diff -u -d -r2.14 -r2.15
--- symtable.c	21 Oct 2005 12:57:31 -0000	2.14
+++ symtable.c	21 Oct 2005 14:58:06 -0000	2.15
@@ -1,7 +1,6 @@
 #include "Python.h"
 #include "Python-ast.h"
 #include "code.h"
-#include "compile.h"
 #include "symtable.h"
 #include "structmember.h"
 



More information about the Python-checkins mailing list