Staging
v0.8.1
https://github.com/python/cpython
Revision 71e2d2e2601b85a2fa437b9e7a20800fe53a6740 authored by Benjamin Peterson on 23 March 2013, 15:09:24 UTC, committed by Benjamin Peterson on 23 March 2013, 15:09:24 UTC
1 parent 5ded795
Raw File
Tip revision: 71e2d2e2601b85a2fa437b9e7a20800fe53a6740 authored by Benjamin Peterson on 23 March 2013, 15:09:24 UTC
nonlocal isn't a 2.x topic
Tip revision: 71e2d2e
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