Staging
v0.5.1
https://github.com/python/cpython
Revision 1a37c4c6b10000e3f7685add1747bb1629908ed7 authored by Guido van Rossum on 08 February 2005, 15:01:35 UTC, committed by Guido van Rossum on 08 February 2005, 15:01:35 UTC
Close the discussion in SF bug 1069160.
1 parent b07b5f7
Raw File
Tip revision: 1a37c4c6b10000e3f7685add1747bb1629908ed7 authored by Guido van Rossum on 08 February 2005, 15:01:35 UTC
Backport 2.39:
Tip revision: 1a37c4c
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