Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 2142ee8718d9eb2f055c07efcf66284512f7fa61 authored by Georg Brandl on 23 February 2012, 20:19:25 UTC
Update copyright year.
Tip revision: 2142ee8
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