Staging
v0.5.1
https://github.com/python/cpython
Revision 018a3622e8f0662fd3e82c2e1ad90d14131b1d3e authored by Georg Brandl on 26 March 2008, 12:57:47 UTC, committed by Georg Brandl on 26 March 2008, 12:57:47 UTC
1 parent 8c78cc3
Raw File
Tip revision: 018a3622e8f0662fd3e82c2e1ad90d14131b1d3e authored by Georg Brandl on 26 March 2008, 12:57:47 UTC
Fix and simplify error handling, silencing a compiler warning.
Tip revision: 018a362
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