diff options
author | Peter Schneider-Kamp <nowonder@nowonder.de> | 2000-07-10 17:15:07 (GMT) |
---|---|---|
committer | Peter Schneider-Kamp <nowonder@nowonder.de> | 2000-07-10 17:15:07 (GMT) |
commit | 8bc8f0d036a8257267fe9dc621b3d0861ab9d17d (patch) | |
tree | f771e3de5f189f382906d46900262d0b1359fb11 /Modules/gcmodule.c | |
parent | 3646366f4cbca51f0654184a59aa9b35f10604ce (diff) | |
download | cpython-8bc8f0d036a8257267fe9dc621b3d0861ab9d17d.zip cpython-8bc8f0d036a8257267fe9dc621b3d0861ab9d17d.tar.gz cpython-8bc8f0d036a8257267fe9dc621b3d0861ab9d17d.tar.bz2 |
ANSI-fication
Diffstat (limited to 'Modules/gcmodule.c')
-rw-r--r-- | Modules/gcmodule.c | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c index 43acbef..5ceea01 100644 --- a/Modules/gcmodule.c +++ b/Modules/gcmodule.c @@ -527,9 +527,7 @@ static char collect__doc__[] = ; static PyObject * -Py_collect(self, args) - PyObject *self; - PyObject *args; +Py_collect(PyObject *self, PyObject *args) { long n; @@ -561,9 +559,7 @@ static char set_debug__doc__[] = ; static PyObject * -Py_set_debug(self, args) - PyObject *self; - PyObject *args; +Py_set_debug(PyObject *self, PyObject *args) { if (!PyArg_ParseTuple(args, "l", &debug)) return NULL; @@ -579,9 +575,7 @@ static char get_debug__doc__[] = ; static PyObject * -Py_get_debug(self, args) - PyObject *self; - PyObject *args; +Py_get_debug(PyObject *self, PyObject *args) { if(!PyArg_ParseTuple(args, "")) /* no args */ return NULL; @@ -597,9 +591,7 @@ static char set_thresh__doc__[] = ; static PyObject * -Py_set_thresh(self, args) - PyObject *self; - PyObject *args; +Py_set_thresh(PyObject *self, PyObject *args) { if (!PyArg_ParseTuple(args, "i|ii", &threshold0, &threshold1, &threshold2)) @@ -616,9 +608,7 @@ static char get_thresh__doc__[] = ; static PyObject * -Py_get_thresh(self, args) - PyObject *self; - PyObject *args; +Py_get_thresh(PyObject *self, PyObject *args) { if(!PyArg_ParseTuple(args, "")) /* no args */ return NULL; |