https://github.com/python/cpython
Raw File
Tip revision: 269bf56e3d352c415ec38f93017ba8e291ddb18a authored by Miss Islington (bot) on 22 October 2021, 18:29:52 UTC
bpo-45571: use PY_CFLAGS_NODIST for shared Modules/Setup (GH-29161)
Tip revision: 269bf56
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