Staging
v0.5.1
Revision 9a42793761ddedc59f03a5fe0f0150e11676713f authored by Éric Araujo on 27 April 2011, 14:23:56 UTC, committed by Éric Araujo on 27 April 2011, 14:23:56 UTC
2 parent s 935a588 + 10f3d7a
Raw File
getversion.c

/* Return the full version string. */

#include "Python.h"

#include "patchlevel.h"

const char *
Py_GetVersion(void)
{
	static char version[250];
	PyOS_snprintf(version, sizeof(version), "%.80s (%.80s) %.80s",
		      PY_VERSION, Py_GetBuildInfo(), Py_GetCompiler());
	return version;
}
back to top