[Python-checkins] python/dist/src/Include rangeobject.h,2.20,2.21

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Fri Dec 3 12:45:43 CET 2004


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

Modified Files:
	rangeobject.h 
Log Message:
Remove PyRange_New().

Index: rangeobject.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/rangeobject.h,v
retrieving revision 2.20
retrieving revision 2.21
diff -u -d -r2.20 -r2.21
--- rangeobject.h	28 Oct 2004 16:31:58 -0000	2.20
+++ rangeobject.h	3 Dec 2004 11:45:09 -0000	2.21
@@ -22,8 +22,6 @@
 
 #define PyRange_Check(op) ((op)->ob_type == &PyRange_Type)
 
-PyAPI_FUNC(PyObject *) PyRange_New(long, long, long, int);
-
 #ifdef __cplusplus
 }
 #endif



More information about the Python-checkins mailing list