summaryrefslogtreecommitdiffstats
path: root/Modules/timingmodule.c
diff options
context:
space:
mode:
authorPeter Schneider-Kamp <nowonder@nowonder.de>2000-07-10 12:04:18 (GMT)
committerPeter Schneider-Kamp <nowonder@nowonder.de>2000-07-10 12:04:18 (GMT)
commite89b15691e224f7742b72b9e502580a0189659fe (patch)
tree3e84c7cdc6c20d13ecc3382333b2b3983d735e43 /Modules/timingmodule.c
parentc4bc0e0895ef4407f7d4239a107a0324ae545bbb (diff)
downloadcpython-e89b15691e224f7742b72b9e502580a0189659fe.zip
cpython-e89b15691e224f7742b72b9e502580a0189659fe.tar.gz
cpython-e89b15691e224f7742b72b9e502580a0189659fe.tar.bz2
ANSI-fication
Diffstat (limited to 'Modules/timingmodule.c')
-rw-r--r--Modules/timingmodule.c20
1 files changed, 5 insertions, 15 deletions
diff --git a/Modules/timingmodule.c b/Modules/timingmodule.c
index bbccb43..f7323bb 100644
--- a/Modules/timingmodule.c
+++ b/Modules/timingmodule.c
@@ -8,9 +8,7 @@
#include "timing.h"
static PyObject *
-start_timing(self, args)
- PyObject *self;
- PyObject *args;
+start_timing(PyObject *self, PyObject *args)
{
if (!PyArg_Parse(args, ""))
return NULL;
@@ -21,9 +19,7 @@ start_timing(self, args)
}
static PyObject *
-finish_timing(self, args)
- PyObject *self;
- PyObject *args;
+finish_timing(PyObject *self, PyObject *args)
{
if (!PyArg_Parse(args, ""))
return NULL;
@@ -34,9 +30,7 @@ finish_timing(self, args)
}
static PyObject *
-seconds(self, args)
- PyObject *self;
- PyObject *args;
+seconds(PyObject *self, PyObject *args)
{
if (!PyArg_Parse(args, ""))
return NULL;
@@ -46,9 +40,7 @@ seconds(self, args)
}
static PyObject *
-milli(self, args)
- PyObject *self;
- PyObject *args;
+milli(PyObject *self, PyObject *args)
{
if (!PyArg_Parse(args, ""))
return NULL;
@@ -57,9 +49,7 @@ milli(self, args)
}
static PyObject *
-micro(self, args)
- PyObject *self;
- PyObject *args;
+micro(PyObject *self, PyObject *args)
{
if (!PyArg_Parse(args, ""))
return NULL;