[Python-checkins] python/dist/src/Modules _hotshot.c, 1.38, 1.39 main.c, 1.85, 1.86 pyexpat.c, 2.91, 2.92 zipimport.c, 1.19, 1.20

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


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

Modified Files:
	_hotshot.c main.c pyexpat.c zipimport.c 
Log Message:
Fix a bunch of imports to use code.h instead of compile.h.
Remove duplicate declarations from compile.h


Index: _hotshot.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_hotshot.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- _hotshot.c	20 Oct 2005 19:59:24 -0000	1.38
+++ _hotshot.c	21 Oct 2005 14:58:06 -0000	1.39
@@ -4,7 +4,6 @@
 
 #include "Python.h"
 #include "code.h"
-#include "compile.h"
 #include "eval.h"
 #include "frameobject.h"
 #include "structmember.h"

Index: main.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/main.c,v
retrieving revision 1.85
retrieving revision 1.86
diff -u -d -r1.85 -r1.86
--- main.c	3 Oct 2005 00:54:57 -0000	1.85
+++ main.c	21 Oct 2005 14:58:06 -0000	1.86
@@ -2,7 +2,7 @@
 
 #include "Python.h"
 #include "osdefs.h"
-#include "compile.h" /* For CO_FUTURE_DIVISION */
+#include "code.h" /* For CO_FUTURE_DIVISION */
 #include "import.h"
 
 #ifdef __VMS

Index: pyexpat.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/pyexpat.c,v
retrieving revision 2.91
retrieving revision 2.92
diff -u -d -r2.91 -r2.92
--- pyexpat.c	30 Sep 2005 04:46:49 -0000	2.91
+++ pyexpat.c	21 Oct 2005 14:58:06 -0000	2.92
@@ -1,7 +1,6 @@
 #include "Python.h"
 #include <ctype.h>
 
-#include "compile.h"
 #include "frameobject.h"
 #include "expat.h"
 

Index: zipimport.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/zipimport.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- zipimport.c	26 Aug 2005 06:42:30 -0000	1.19
+++ zipimport.c	21 Oct 2005 14:58:06 -0000	1.20
@@ -2,7 +2,6 @@
 #include "structmember.h"
 #include "osdefs.h"
 #include "marshal.h"
-#include "compile.h"
 #include <time.h>
 
 



More information about the Python-checkins mailing list