Files for 2.1b1 distribution.
[python/dscho.git] / Python / getversion.c
blobb0ef3896ef40153bb958be339b5311583338bfb2
2 /* Return the full version string. */
4 #include "Python.h"
6 #include "patchlevel.h"
8 const char *
9 Py_GetVersion(void)
11 static char version[250];
12 sprintf(version, "%.80s (%.80s) %.80s", PY_VERSION,
13 Py_GetBuildInfo(), Py_GetCompiler());
14 return version;