Staging
v0.5.1
https://github.com/python/cpython
Revision 2106a4d63673d33f5a8196b748f5728d1a89f16c authored by Barry Warsaw on 22 March 2002, 16:25:54 UTC, committed by Barry Warsaw on 22 March 2002, 16:25:54 UTC
Also, added a header for 2.2.1c2 (if there isn't a c2, change this to
2.2.1 final).
1 parent 5516c7b
Raw File
Tip revision: 2106a4d63673d33f5a8196b748f5728d1a89f16c authored by Barry Warsaw on 22 March 2002, 16:25:54 UTC
Added a NEWS item for the fix of SF bug #531966 in the email package.
Tip revision: 2106a4d
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