Commit aff60180 authored by Fred Drake's avatar Fred Drake

M.-A. Lemburg <mal@lemburg.com>:

Fixed a bug due to a /* inside /*...*/. GCC doesn't like
this and bombs.
parent cb093fe8
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment