Staging
v0.5.1
https://github.com/python/cpython
Revision d76b9f18d1d094120faba5bde5aa7b937c3f3f2c authored by Raymond Hettinger on 04 June 2009, 00:35:30 UTC, committed by Raymond Hettinger on 04 June 2009, 00:35:30 UTC
1 parent 686057b
Raw File
Tip revision: d76b9f18d1d094120faba5bde5aa7b937c3f3f2c authored by Raymond Hettinger on 04 June 2009, 00:35:30 UTC
Fix __all__.
Tip revision: d76b9f1
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