Commit 7760cff2 authored by Neil Schemenauer's avatar Neil Schemenauer

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

parent 4a5eb967
...@@ -599,7 +599,7 @@ gc_collect(PyObject *self, PyObject *args) ...@@ -599,7 +599,7 @@ gc_collect(PyObject *self, PyObject *args)
gc_list_merge(&generation1, &generation2); gc_list_merge(&generation1, &generation2);
n = collect(&generation2, &generation2); n = collect(&generation2, &generation2);
return Py_BuildValue("i", n); return Py_BuildValue("l", n);
} }
static char gc_set_debug__doc__[] = static char gc_set_debug__doc__[] =
...@@ -622,7 +622,7 @@ static char gc_set_debug__doc__[] = ...@@ -622,7 +622,7 @@ static char gc_set_debug__doc__[] =
static PyObject * static PyObject *
gc_set_debug(PyObject *self, PyObject *args) 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; return NULL;
Py_INCREF(Py_None); Py_INCREF(Py_None);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment