Staging
v0.5.1
https://github.com/python/cpython
Revision 5eab720f68b3cfa73a28e63c95e2d34b9e75376b authored by Thomas Heller on 11 January 2002, 10:08:19 UTC, committed by Thomas Heller on 11 January 2002, 10:08:19 UTC
"cvs admin -kb installer.bmp" (although this should be unneeded?).
1 parent ea7f4a5
Raw File
Tip revision: 5eab720f68b3cfa73a28e63c95e2d34b9e75376b authored by Thomas Heller on 11 January 2002, 10:08:19 UTC
Copied from the HEAD revision, and checked in again after doing a
Tip revision: 5eab720
getversion.c

/* Return the full version string. */

#include "Python.h"

#include "patchlevel.h"

const char *
Py_GetVersion(void)
{
	static char version[250];
	sprintf(version, "%.80s (%.80s) %.80s", PY_VERSION,
		Py_GetBuildInfo(), Py_GetCompiler());
	return version;
}
back to top