Staging
v0.5.1
https://github.com/python/cpython
Revision 16591f440d650f77c841a3245785e2423a50249f authored by Guido van Rossum on 25 October 2016, 15:49:13 UTC, committed by Guido van Rossum on 25 October 2016, 15:49:13 UTC
1 parent 1faf902
Raw File
Tip revision: 16591f440d650f77c841a3245785e2423a50249f authored by Guido van Rossum on 25 October 2016, 15:49:13 UTC
Issue 25002: Deprecate asyncore/asynchat. Patch by Mariatta.
Tip revision: 16591f4
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