Staging
v0.5.1
https://github.com/python/cpython
Revision 112e4afd582515fcdcc0cde5012a4866e5cfda12 authored by Benjamin Peterson on 02 January 2019, 17:14:30 UTC, committed by GitHub on 02 January 2019, 17:14:30 UTC
1 parent 5a89c71
Raw File
Tip revision: 112e4afd582515fcdcc0cde5012a4866e5cfda12 authored by Benjamin Peterson on 02 January 2019, 17:14:30 UTC
Remove README.rst inadvertandly "backported" from 3.x in 5a89c71580529549e71567abf557c812eb470b2b. (GH-11409)
Tip revision: 112e4af
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