Staging
v0.8.1
https://github.com/python/cpython
Revision 56b2c92abbc0be03d8a78b238c039fc2c82e92a2 authored by Georg Brandl on 05 March 2011, 13:55:19 UTC, committed by Georg Brandl on 05 March 2011, 13:55:19 UTC
1 parent a7ce71b
Raw File
Tip revision: 56b2c92abbc0be03d8a78b238c039fc2c82e92a2 authored by Georg Brandl on 05 March 2011, 13:55:19 UTC
Fix tag references in 2.2 branch.
Tip revision: 56b2c92
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