Staging
v0.5.1
https://github.com/python/cpython
Revision 10480940373492652bc285fca3fa74751c271645 authored by Raymond Hettinger on 10 January 2011, 03:26:08 UTC, committed by Raymond Hettinger on 10 January 2011, 03:26:08 UTC
1 parent a4815ca
Raw File
Tip revision: 10480940373492652bc285fca3fa74751c271645 authored by Raymond Hettinger on 10 January 2011, 03:26:08 UTC
Move source links to consistent location and remove wordy, big yellow boxes.
Tip revision: 1048094
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