Staging
v0.5.1
https://github.com/python/cpython
Revision 3d1bc608a842b375eb7921d57e417f2dfaa5b71e authored by Guido van Rossum on 10 May 2014, 22:47:15 UTC, committed by Guido van Rossum on 10 May 2014, 22:47:15 UTC
1 parent 877013f
Raw File
Tip revision: 3d1bc608a842b375eb7921d57e417f2dfaa5b71e authored by Guido van Rossum on 10 May 2014, 22:47:15 UTC
asyncio: Upstream issue #167: remove dead code, by Marc Schlaich.
Tip revision: 3d1bc60
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