Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 2fbb0d8da95b3068dff436f7aacec1058c9b3f2a authored by Miss Islington (bot) on 20 July 2020, 06:37:50 UTC
bpo-40741: Update macOS installer to use SQLite 3.32.3 (GH-20979)
Tip revision: 2fbb0d8
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