mirror of
https://github.com/python/cpython.git
synced 2024-11-24 08:52:25 +01:00
f3f33dcf03
and a couple of functions that were missed in the previous batches. Not terribly tested, but very carefully scrutinized, three times. All these were found by the little findkrc.py that I posted to python-dev, which means there might be more lurking. Cases such as this: long func(a, b) long a; long b; /* flagword */ { and other cases where the last ; in the argument list isn't followed by a newline and an opening curly bracket. Regexps to catch all are welcome, of course ;)
39 lines
500 B
C
39 lines
500 B
C
#include "config.h"
|
|
|
|
#ifdef macintosh
|
|
#include "macbuildno.h"
|
|
#endif
|
|
|
|
#ifndef DONT_HAVE_STDIO_H
|
|
#include <stdio.h>
|
|
#endif
|
|
|
|
#ifndef DATE
|
|
#ifdef __DATE__
|
|
#define DATE __DATE__
|
|
#else
|
|
#define DATE "xx/xx/xx"
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef TIME
|
|
#ifdef __TIME__
|
|
#define TIME __TIME__
|
|
#else
|
|
#define TIME "xx:xx:xx"
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef BUILD
|
|
#define BUILD 0
|
|
#endif
|
|
|
|
|
|
const char *
|
|
Py_GetBuildInfo(void)
|
|
{
|
|
static char buildinfo[50];
|
|
sprintf(buildinfo, "#%d, %.20s, %.9s", BUILD, DATE, TIME);
|
|
return buildinfo;
|
|
}
|