Staging
v0.5.1
https://github.com/python/cpython
Revision a531e5b84c62e90ff0eaed1a61caf5d952409397 authored by Raymond Hettinger on 26 March 2006, 01:41:25 UTC, committed by Raymond Hettinger on 26 March 2006, 01:41:25 UTC
1 parent 1818ed7
Raw File
Tip revision: a531e5b84c62e90ff0eaed1a61caf5d952409397 authored by Raymond Hettinger on 26 March 2006, 01:41:25 UTC
Guarantee evaluation order for izip(). Document its creative uses and its limitations.
Tip revision: a531e5b
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