Staging
v0.5.1
https://github.com/python/cpython
Revision 8cb1ec3274fff35a3613dd9fa8f0c99b4f472119 authored by Andrew Kuchling on 16 February 2014, 16:11:25 UTC, committed by Andrew Kuchling on 16 February 2014, 16:11:25 UTC
1 parent e5235f1
Raw File
Tip revision: 8cb1ec3274fff35a3613dd9fa8f0c99b4f472119 authored by Andrew Kuchling on 16 February 2014, 16:11:25 UTC
#12211: clarify math.copysign() documentation and docstring
Tip revision: 8cb1ec3
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