Staging
v0.5.1
https://github.com/python/cpython
Revision 76006f285a7e146484d9296597d1d0ace778f992 authored by Steve Dower on 07 September 2017, 20:58:07 UTC, committed by GitHub on 07 September 2017, 20:58:07 UTC
1 parent b036232
Raw File
Tip revision: 76006f285a7e146484d9296597d1d0ace778f992 authored by Steve Dower on 07 September 2017, 20:58:07 UTC
[3.6] bpo-30389 Adds detection of VS 2017 to distutils._msvccompiler GH-1632 (#3425)
Tip revision: 76006f2
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