[Python-checkins] python/dist/src/Include compile.h,2.42,2.43

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


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

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


Index: compile.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/compile.h,v
retrieving revision 2.42
retrieving revision 2.43
diff -u -d -r2.42 -r2.43
--- compile.h	20 Oct 2005 19:59:24 -0000	2.42
+++ compile.h	21 Oct 2005 14:58:06 -0000	2.43
@@ -11,11 +11,6 @@
 /* Public interface */
 struct _node; /* Declare the existence of this type */
 PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *);
-PyAPI_FUNC(PyCodeObject *) PyCode_New(
-	int, int, int, int, PyObject *, PyObject *, PyObject *, PyObject *,
-	PyObject *, PyObject *, PyObject *, PyObject *, int, PyObject *); 
-        /* same as struct above */
-PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int);
 
 /* Future feature support */
 



More information about the Python-checkins mailing list