Staging
v0.5.1
https://github.com/python/cpython
Revision 59de7f5733555d808a4788fbde9a8850b470204a authored by Gregory P. Smith on 15 August 2008, 23:14:00 UTC, committed by Gregory P. Smith on 15 August 2008, 23:14:00 UTC
1 parent b90a8be
Raw File
Tip revision: 59de7f5733555d808a4788fbde9a8850b470204a authored by Gregory P. Smith on 15 August 2008, 23:14:00 UTC
document that waitpid raises OSError
Tip revision: 59de7f5
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