Staging
v0.8.1
Revision b1152be2def8d4073cbb0ac3c05aed88d5e8360f authored by INADA Naoki on 27 October 2016, 10:26:50 UTC, committed by INADA Naoki on 27 October 2016, 10:26:50 UTC
1 parent ec9357b
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