Staging
v0.5.1
https://github.com/python/cpython
Revision 34bb88dc5bc447832db8c7ccdc173311e0685eab authored by Xiang Zhang on 09 March 2018, 02:21:58 UTC, committed by GitHub on 09 March 2018, 02:21:58 UTC
1 parent 55d5bfb
Raw File
Tip revision: 34bb88dc5bc447832db8c7ccdc173311e0685eab authored by Xiang Zhang on 09 March 2018, 02:21:58 UTC
Clear possible exception before calling PyTuple_Pack in IMPORT_NAME (GH-6033)
Tip revision: 34bb88d
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