From: Fred Drake Date: Tue, 9 May 2000 19:52:40 +0000 (+0000) Subject: M.-A. Lemburg : X-Git-Tag: v2.0b1~1787 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aff601804d0b100815d1bdfdb2cf5778385a912c;p=python M.-A. Lemburg : Fixed a bug due to a /* inside /*...*/. GCC doesn't like this and bombs. --- diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 7d5317972a..faadf1e0fc 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -421,7 +421,10 @@ See the library reference manual for formatting codes."; #endif /* HAVE_STRFTIME */ #ifdef HAVE_STRPTIME -/* extern char *strptime(); /* Enable this if it's not declared in */ + +#if 0 +extern char *strptime(); /* Enable this if it's not declared in */ +#endif static PyObject * time_strptime(self, args)