Staging
v0.8.1
https://github.com/python/cpython
Revision 18e4db5ebe8396d06478c0a3fdbf3076e4b747ed authored by Brett Cannon on 03 February 2010, 22:11:54 UTC, committed by Brett Cannon on 03 February 2010, 22:11:54 UTC
1 parent c68e9f0
Raw File
Tip revision: 18e4db5ebe8396d06478c0a3fdbf3076e4b747ed authored by Brett Cannon on 03 February 2010, 22:11:54 UTC
Update a docstring to suggest using importlib.import_module instead of calling __import__ directly.
Tip revision: 18e4db5
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