Staging
v0.8.1
Revision cdab6f339b46228cd898db45f4746c22d5f58ef0 authored by Larry Hastings on 09 August 2015, 10:41:22 UTC, committed by Larry Hastings on 09 August 2015, 10:41:22 UTC
1 parent 71ea65f
Raw File
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