From: Neil Schemenauer Date: Fri, 22 Sep 2000 22:35:36 +0000 (+0000) Subject: Fix some long/"l" int/"i" mismatches. Fixes bug #113779. X-Git-Tag: v2.0b2~111 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7760cff29489fef6728ef7776d76fcc7b41c2488;p=python Fix some long/"l" int/"i" mismatches. Fixes bug #113779. --- diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c index 62bc58ed14..cf884814d2 100644 --- a/Modules/gcmodule.c +++ b/Modules/gcmodule.c @@ -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);