summaryrefslogtreecommitdiff
path: root/Include/longobject.h
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2004-09-23 01:56:02 +0000
committerTim Peters <tim.peters@gmail.com>2004-09-23 01:56:02 +0000
commitc9c57fb9cfe940d5ab9ca846eec162c5c2f535e6 (patch)
treea37ddf41244116375bc24aebfa9ca75963f8a97d /Include/longobject.h
parent734a920ecaea719e73d89ab1fa6d619abf356f11 (diff)
downloadcpython-c9c57fb9cfe940d5ab9ca846eec162c5c2f535e6.tar.gz
Removed redundant declaration of _PyLong_NumBits().
Diffstat (limited to 'Include/longobject.h')
-rw-r--r--Include/longobject.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/longobject.h b/Include/longobject.h
index 8354963efc..209c082fe9 100644
--- a/Include/longobject.h
+++ b/Include/longobject.h
@@ -53,7 +53,6 @@ PyAPI_FUNC(PyObject *) PyLong_FromUnicode(Py_UNICODE*, int, int);
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.