Staging
v0.5.1
https://github.com/python/cpython
Revision 7c6e470067faa954e9a0db7ae0952fbeab7c02cf authored by Raymond Hettinger on 20 December 2006, 08:23:39 UTC, committed by Raymond Hettinger on 20 December 2006, 08:23:39 UTC
1 parent ddf3da8
Raw File
Tip revision: 7c6e470067faa954e9a0db7ae0952fbeab7c02cf authored by Raymond Hettinger on 20 December 2006, 08:23:39 UTC
Bug #1590891: random.randrange don't return correct value for big number
Tip revision: 7c6e470
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