2001-12-03 21:11:32 -04:00
|
|
|
#include "Python.h"
|
1997-05-20 19:40:26 -03:00
|
|
|
|
1997-10-08 12:26:56 -03:00
|
|
|
#ifdef macintosh
|
|
|
|
#include "macbuildno.h"
|
|
|
|
#endif
|
|
|
|
|
1999-08-27 17:39:37 -03:00
|
|
|
#ifndef DONT_HAVE_STDIO_H
|
1997-01-20 14:34:26 -04:00
|
|
|
#include <stdio.h>
|
1999-08-27 17:39:37 -03:00
|
|
|
#endif
|
1997-01-20 14:34:26 -04:00
|
|
|
|
|
|
|
#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 *
|
2000-07-21 03:00:07 -03:00
|
|
|
Py_GetBuildInfo(void)
|
1997-01-20 14:34:26 -04:00
|
|
|
{
|
1999-01-27 13:53:11 -04:00
|
|
|
static char buildinfo[50];
|
2001-12-03 21:11:32 -04:00
|
|
|
PyOS_snprintf(buildinfo, sizeof(buildinfo),
|
|
|
|
"#%d, %.20s, %.9s", BUILD, DATE, TIME);
|
1997-01-20 14:34:26 -04:00
|
|
|
return buildinfo;
|
|
|
|
}
|