Staging
v0.8.1
Revision 8239fd704637d7cbf59273883fbe487fc0f568fc authored by Terry Jan Reedy on 11 September 2017, 20:43:26 UTC, committed by GitHub on 11 September 2017, 20:43:26 UTC
1 parent 667522e
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