Fix some long/"l" int/"i" mismatches. Fixes bug #113779.

This commit is contained in:
Neil Schemenauer 2000-09-22 22:35:36 +00:00
parent 4a5eb967b8
commit 7760cff294
1 changed files with 2 additions and 2 deletions

View File

@ -599,7 +599,7 @@ gc_collect(PyObject *self, PyObject *args)
gc_list_merge(&generation1, &generation2);
n = collect(&generation2, &generation2);
return Py_BuildValue("i", n);
return Py_BuildValue("l", n);
}
static char gc_set_debug__doc__[] =
@ -622,7 +622,7 @@ static char gc_set_debug__doc__[] =
static PyObject *
gc_set_debug(PyObject *self, PyObject *args)
{
if (!PyArg_ParseTuple(args, "l:get_debug", &debug))
if (!PyArg_ParseTuple(args, "i:set_debug", &debug))
return NULL;
Py_INCREF(Py_None);