commit | 7790c3b802e98f706f0caf729cdd8a5bad5a3ce7 | [log] [tgz] |
---|---|---|
author | Tim Peters <tim.peters@gmail.com> | Thu Sep 23 01:56:02 2004 +0000 |
committer | Tim Peters <tim.peters@gmail.com> | Thu Sep 23 01:56:02 2004 +0000 |
tree | 017a36a6a2b8532ca49e5ed86c86929d7c4e6472 | |
parent | 2c31a058eb719da8908ea9d9c2f1b748ecc7a4ca [diff] |
Removed redundant declaration of _PyLong_NumBits().
diff --git a/Include/longobject.h b/Include/longobject.h index 8354963..209c082 100644 --- a/Include/longobject.h +++ b/Include/longobject.h
@@ -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.