Staging
v0.5.1
https://github.com/python/cpython
Revision 161edfc5ecfc1a4739b8fc225198aa2ee016acf5 authored by Raymond Hettinger on 07 September 2003, 23:38:08 UTC, committed by Raymond Hettinger on 07 September 2003, 23:38:08 UTC
1 parent 8dc455f
Raw File
Tip revision: 161edfc5ecfc1a4739b8fc225198aa2ee016acf5 authored by Raymond Hettinger on 07 September 2003, 23:38:08 UTC
Fix NULL markup.
Tip revision: 161edfc
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