mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
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
1 changed files with 4 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue