summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2007-12-20 22:57:23 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2007-12-20 22:57:23 (GMT)
commit8445104d7d8ed460061317cd39232e56f9217c29 (patch)
tree6a754e6759e1f2beaaa2671d442b6630f7737527 /Include
parent704b34d9e4481ef35cfe56daabb4a016da9e83aa (diff)
downloadcpython-8445104d7d8ed460061317cd39232e56f9217c29.zip
cpython-8445104d7d8ed460061317cd39232e56f9217c29.tar.gz
cpython-8445104d7d8ed460061317cd39232e56f9217c29.tar.bz2
Drop _PyLong_FitsInLong. Fixes #1666.
Diffstat (limited to 'Include')
-rw-r--r--Include/longobject.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/longobject.h b/Include/longobject.h
index 18d0c55..237e2e6 100644
--- a/Include/longobject.h
+++ b/Include/longobject.h
@@ -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 *);