Drop _PyLong_FitsInLong. Fixes #1666.

This commit is contained in:
Martin v. Löwis 2007-12-20 22:57:23 +00:00
parent 704b34d9e4
commit 8445104d7d
3 changed files with 36 additions and 35 deletions

View file

@ -50,7 +50,6 @@ PyAPI_DATA(int) _PyLong_DigitValue[256];
be multiplied by SHIFT! There may not be enough room in an int to store
e*SHIFT directly. */
PyAPI_FUNC(double) _PyLong_AsScaledDouble(PyObject *vv, int *e);
PyAPI_FUNC(int) _PyLong_FitsInLong(PyObject* vv);
PyAPI_FUNC(double) PyLong_AsDouble(PyObject *);
PyAPI_FUNC(PyObject *) PyLong_FromVoidPtr(void *);