Staging
v0.8.1
Revision d0a91afa70cb9e4176d1fd05f4e9dcc26b4763c6 authored by Neal Norwitz on 02 April 2008, 05:54:27 UTC, committed by Neal Norwitz on 02 April 2008, 05:54:27 UTC
on various platforms, most recently the Alpha Tru64.
1 parent ab56131
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