]> granicus.if.org Git - python/commitdiff
ANSI-fication
authorPeter Schneider-Kamp <nowonder@nowonder.de>
Mon, 10 Jul 2000 12:04:18 +0000 (12:04 +0000)
committerPeter Schneider-Kamp <nowonder@nowonder.de>
Mon, 10 Jul 2000 12:04:18 +0000 (12:04 +0000)
Modules/signalmodule.c
Modules/timingmodule.c

index cfbfe204541644118d592324c40e1e0a3d8c78ae..47151eb991644143729381c43eee5779e2af459e 100644 (file)
@@ -97,9 +97,7 @@ static RETSIGTYPE (*old_siginthandler)() = SIG_DFL;
 
 \f
 static PyObject *
-signal_default_int_handler(self, arg)
-       PyObject *self;
-       PyObject *arg;
+signal_default_int_handler(PyObject *self, PyObject *args)
 {
        PyErr_SetNone(PyExc_KeyboardInterrupt);
        return NULL;
@@ -113,8 +111,7 @@ It raises KeyboardInterrupt.";
 
 \f
 static RETSIGTYPE
-signal_handler(sig_num)
-       int sig_num;
+signal_handler(int sig_num)
 {
 #ifdef WITH_THREAD
        /* See NOTES section above */
@@ -146,9 +143,7 @@ signal_handler(sig_num)
 \f
 #ifdef HAVE_ALARM
 static PyObject *
-signal_alarm(self, args)
-       PyObject *self; /* Not used */
-       PyObject *args;
+signal_alarm(PyObject *self, PyObject *args)
 {
        int t;
        if (!PyArg_Parse(args, "i", &t))
@@ -165,9 +160,7 @@ Arrange for SIGALRM to arrive after the given number of seconds.";
 
 #ifdef HAVE_PAUSE
 static PyObject *
-signal_pause(self, args)
-       PyObject *self; /* Not used */
-       PyObject *args;
+signal_pause(PyObject *self, PyObject *args)
 {
        if (!PyArg_NoArgs(args))
                return NULL;
@@ -193,9 +186,7 @@ Wait until a signal arrives.";
 
 \f
 static PyObject *
-signal_signal(self, args)
-       PyObject *self; /* Not used */
-       PyObject *args;
+signal_signal(PyObject *self, PyObject *args)
 {
        PyObject *obj;
        int sig_num;
@@ -253,9 +244,7 @@ the first is the signal number, the second is the interrupted stack frame.";
 
 \f
 static PyObject *
-signal_getsignal(self, args)
-       PyObject *self; /* Not used */
-       PyObject *args;
+signal_getsignal(PyObject *self, PyObject *args)
 {
        int sig_num;
        PyObject *old_handler;
index bbccb43bce920857597310c9479374274b9eaf72..f7323bb565ae3a2f5d946d1a9275785438188cd0 100644 (file)
@@ -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;