Staging
v0.5.1
https://github.com/python/cpython
Revision bfeb74d4ca22102d6056bf8c1f115e643b1cc079 authored by Fred Drake on 04 October 1997, 04:56:40 UTC, committed by Fred Drake on 04 October 1997, 04:56:40 UTC
	$exec_prefix/lib/python$VERSION/site-packages by default.
1 parent d99d714
Raw File
Tip revision: bfeb74d4ca22102d6056bf8c1f115e643b1cc079 authored by Fred Drake on 04 October 1997, 04:56:40 UTC
install: New target that installs shared modules in
Tip revision: bfeb74d
getbuildinfo.c
#include "config.h"

#include <stdio.h>

#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()
{
	static char buildinfo[40];
	sprintf(buildinfo, "#%d, %.12s, %.8s", BUILD, DATE, TIME);
	return buildinfo;
}
back to top