Staging
v0.5.1
https://github.com/python/cpython
Revision 389b036b8f20b8c61c68f10722726aec69e61c3c authored by Yury Selivanov on 20 February 2014, 18:59:14 UTC, committed by Yury Selivanov on 20 February 2014, 18:59:14 UTC
1 parent 6dcfec9
Raw File
Tip revision: 389b036b8f20b8c61c68f10722726aec69e61c3c authored by Yury Selivanov on 20 February 2014, 18:59:14 UTC
Misc/NEWS: Add some missing news items re asyncio.
Tip revision: 389b036
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