Staging
v0.5.1
https://github.com/python/cpython
Revision eb7594f85741ef809b1ee337ee3431df20e6f8bb authored by pxinwr on 08 December 2020, 23:18:37 UTC, committed by GitHub on 08 December 2020, 23:18:37 UTC
1 parent fe6e5e7
Raw File
Tip revision: eb7594f85741ef809b1ee337ee3431df20e6f8bb authored by pxinwr on 08 December 2020, 23:18:37 UTC
bpo-41443: Add more attribute checking in test_posix (GH-21688)
Tip revision: eb7594f
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