Skip to content

Commit e07c218

Browse files
committed
remove unused function
1 parent d72486f commit e07c218

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

Objects/longobject.c

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3651,14 +3651,6 @@ long_dealloc(PyObject *self)
36513651
Py_TYPE(self)->tp_free(self);
36523652
}
36533653

3654-
void _PyLong_Free(PyLongObject *op) {
3655-
if (_PyLong_IsCompact(op)) {
3656-
_Py_FREELIST_FREE(ints, op, PyObject_Free);
3657-
return;
3658-
}
3659-
PyObject_Free(op);
3660-
}
3661-
36623654
static Py_hash_t
36633655
long_hash(PyObject *obj)
36643656
{

0 commit comments

Comments
 (0)