Staging
v0.8.1
Revision ecbb68f2cce8d9a6dda564f148122f8ad193433f authored by Barry Warsaw on 07 April 2009, 15:17:20 UTC, committed by Barry Warsaw on 07 April 2009, 15:17:20 UTC
1 parent aa0af78
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