Staging
v0.5.1
Revision ede6ee8cd9b2d15f08821a7f913978b71d749f81 authored by Martin v. Löwis on 31 October 2003, 15:41:49 UTC, committed by Martin v. Löwis on 31 October 2003, 15:41:49 UTC
1 parent 718ea1e
Raw File
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