Staging
v0.5.1
https://github.com/python/cpython
Revision 817d91829f388a0302254c71792bb6b5382fd273 authored by Georg Brandl on 27 June 2010, 10:49:23 UTC, committed by Georg Brandl on 27 June 2010, 10:49:23 UTC
1 parent 565569b
Raw File
Tip revision: 817d91829f388a0302254c71792bb6b5382fd273 authored by Georg Brandl on 27 June 2010, 10:49:23 UTC
Use designated syntax for optional grammar element.
Tip revision: 817d918
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