Staging
v0.5.1
https://github.com/python/cpython
Revision a6f6edbda8648698289a8ee7abef6a35c924151b authored by Yury Selivanov on 09 June 2016, 19:08:31 UTC, committed by Yury Selivanov on 09 June 2016, 19:08:31 UTC
1 parent ebe95fd
Raw File
Tip revision: a6f6edbda8648698289a8ee7abef6a35c924151b authored by Yury Selivanov on 09 June 2016, 19:08:31 UTC
Issue #27243: Fix __aiter__ protocol
Tip revision: a6f6edb
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