From 911ec188c827d429d440eb2b6d2e10b17f2cc64f Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 28 Jun 1998 17:00:19 +0000 Subject: [PATCH] # Added missing semicolon (was #ifdef'ed out in edit on Windows). --- Modules/signalmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c index 2c8d844829e7..d97aa83065e4 100644 --- a/Modules/signalmodule.c +++ b/Modules/signalmodule.c @@ -174,7 +174,7 @@ signal_alarm(self, args) static char alarm_doc[] = "alarm(seconds)\n\ \n\ -Arrange for SIGALRM to arrive after the given number of seconds." +Arrange for SIGALRM to arrive after the given number of seconds."; #endif #ifdef HAVE_PAUSE -- 2.47.3