Staging
v0.8.1
https://github.com/python/cpython
Revision 43cb4b79d92d85b90166052c0f6fad70075f5bd4 authored by Benjamin Peterson on 23 March 2013, 15:15:25 UTC, committed by Benjamin Peterson on 23 March 2013, 15:15:25 UTC
1 parent 71e2d2e
Raw File
Tip revision: 43cb4b79d92d85b90166052c0f6fad70075f5bd4 authored by Benjamin Peterson on 23 March 2013, 15:15:25 UTC
update pydoc topics
Tip revision: 43cb4b7
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