Staging
v0.5.1
https://github.com/python/cpython
Revision 32d483c39b4169b48ab3a98c36a77ea4e74b9f5a authored by Antoine Pitrou on 30 July 2013, 19:01:23 UTC, committed by Antoine Pitrou on 30 July 2013, 19:01:23 UTC
1 parent 8547a0e
Raw File
Tip revision: 32d483c39b4169b48ab3a98c36a77ea4e74b9f5a authored by Antoine Pitrou on 30 July 2013, 19:01:23 UTC
Fix style
Tip revision: 32d483c
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