Python-2.7.3/Python/getversion.c

No issues found

 1 /* Return the full version string. */
 2 
 3 #include "Python.h"
 4 
 5 #include "patchlevel.h"
 6 
 7 const char *
 8 Py_GetVersion(void)
 9 {
10 	static char version[250];
11 	PyOS_snprintf(version, sizeof(version), "%.80s (%.80s) %.80s",
12 		      PY_VERSION, Py_GetBuildInfo(), Py_GetCompiler());
13 	return version;
14 }