Staging
v0.5.1
https://github.com/python/cpython
Revision 167cb5796056c2996534265fe9e2d417935d6d89 authored by Amaury Forgeot d'Arc on 12 June 2008, 22:38:07 UTC, committed by Amaury Forgeot d'Arc on 12 June 2008, 22:38:07 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r64197 | amaury.forgeotdarc | 2008-06-12 22:27:42 +0200 (jeu., 12 juin 2008) | 3 lines

  It seems that my VS2008 Express does not include a project in the build configuration,
  if its UUID has lowercase letters.
........
1 parent 29a1618
Raw File
Tip revision: 167cb5796056c2996534265fe9e2d417935d6d89 authored by Amaury Forgeot d'Arc on 12 June 2008, 22:38:07 UTC
Merged revisions 64197 via svnmerge from
Tip revision: 167cb57
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