Staging
v0.5.1
https://github.com/python/cpython
Revision d37ddeba4c2a5d55ab526cc040beea4feb2ad0c6 authored by Martin v. Löwis on 15 October 2004, 05:44:39 UTC, committed by Martin v. Löwis on 15 October 2004, 05:44:39 UTC
1 parent 919637a
Raw File
Tip revision: d37ddeba4c2a5d55ab526cc040beea4feb2ad0c6 authored by Martin v. Löwis on 15 October 2004, 05:44:39 UTC
Bump buildno for 2.4b1
Tip revision: d37ddeb
getbuildinfo.c
#include "Python.h"

#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];
	PyOS_snprintf(buildinfo, sizeof(buildinfo),
		      "#%d, %.20s, %.9s", BUILD, DATE, TIME);
	return buildinfo;
}
back to top