M.-A. Lemburg <mal@lemburg.com>:
Fixed a bug due to a /* inside /*...*/. GCC doesn't like this and bombs.
This commit is contained in:
parent
cb093fe890
commit
aff601804d
|
@ -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 <time.h> */
|
||||
|
||||
#if 0
|
||||
extern char *strptime(); /* Enable this if it's not declared in <time.h> */
|
||||
#endif
|
||||
|
||||
static PyObject *
|
||||
time_strptime(self, args)
|
||||
|
|
Loading…
Reference in New Issue