[Python-checkins] python/dist/src/Include longobject.h,2.30,2.31

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Thu Sep 23 03:56:04 CEST 2004


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

Modified Files:
	longobject.h 
Log Message:
Removed redundant declaration of _PyLong_NumBits().


Index: longobject.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/longobject.h,v
retrieving revision 2.30
retrieving revision 2.31
diff -u -d -r2.30 -r2.31
--- longobject.h	17 Apr 2003 18:55:11 -0000	2.30
+++ longobject.h	23 Sep 2004 01:56:02 -0000	2.31
@@ -53,7 +53,6 @@
 PyAPI_FUNC(int) _PyLong_Sign(PyObject *v);
 
 
-PyAPI_FUNC(size_t) _PyLong_NumBits(PyObject *v);
 /* _PyLong_NumBits.  Return the number of bits needed to represent the
    absolute value of a long.  For example, this returns 1 for 1 and -1, 2
    for 2 and -2, and 2 for 3 and -3.  It returns 0 for 0.



More information about the Python-checkins mailing list