Staging
v0.5.1
Revision e3201094af2af2a9958333bd1cb212253941d644 authored by Łukasz Langa on 07 December 2020, 14:13:36 UTC, committed by Łukasz Langa on 07 December 2020, 14:13:36 UTC
1 parent a4e7d5f
Raw File
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