ยปCore Development>Code coverage>Python/getversion.c

Python code coverage for Python/getversion.c

#countcontent
1n/a
2n/a/* Return the full version string. */
3n/a
4n/a#include "Python.h"
5n/a
6n/a#include "patchlevel.h"
7n/a
8n/aconst char *
9n/aPy_GetVersion(void)
10n/a{
11n/a static char version[250];
12n/a PyOS_snprintf(version, sizeof(version), "%.80s (%.80s) %.80s",
13n/a PY_VERSION, Py_GetBuildInfo(), Py_GetCompiler());
14n/a return version;
15n/a}