Staging
v0.5.1
https://github.com/python/cpython
Revision 31fb351211cb9c81d5878ad3518b3a7bf0211473 authored by Ned Deily on 19 June 2019, 03:50:05 UTC, committed by Ned Deily on 19 June 2019, 03:50:05 UTC
1 parent 0d47586
Raw File
Tip revision: 31fb351211cb9c81d5878ad3518b3a7bf0211473 authored by Ned Deily on 19 June 2019, 03:50:05 UTC
Post release updates
Tip revision: 31fb351
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