Staging
v0.5.1
https://github.com/python/cpython
Revision 193c34ba86bbe5b0c35c66d1edc89e69fed31391 authored by Ezio Melotti on 09 May 2011, 03:28:42 UTC, committed by Ezio Melotti on 09 May 2011, 03:28:42 UTC
1 parent 7055064
Raw File
Tip revision: 193c34ba86bbe5b0c35c66d1edc89e69fed31391 authored by Ezio Melotti on 09 May 2011, 03:28:42 UTC
#11910: change import_fresh_module to return None when one of the "fresh" modules can not be imported.
Tip revision: 193c34b
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