Staging
v0.8.1
https://github.com/python/cpython
Revision dedb2934aa70cd45d3999bc222f1f97575067fe5 authored by cvs2svn on 27 May 2004, 05:59:16 UTC, committed by cvs2svn on 27 May 2004, 05:59:16 UTC
1 parent c481f95
Raw File
Tip revision: dedb2934aa70cd45d3999bc222f1f97575067fe5 authored by cvs2svn on 27 May 2004, 05:59:16 UTC
This commit was manufactured by cvs2svn to create tag 'r234'.
Tip revision: dedb293
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