Staging
v0.5.1
https://github.com/python/cpython
Revision 907ee1f14aaf587683ced44818c5a1d1cabf4174 authored by Miss Islington (bot) on 24 May 2020, 21:31:47 UTC, committed by GitHub on 24 May 2020, 21:31:47 UTC
(cherry picked from commit c73914a562580ae72048876cb42ed8e76e2c83f9)

Co-authored-by: RĂ©mi Lapeyre <remi.lapeyre@lenstra.fr>
1 parent 1ae0fd8
Raw File
Tip revision: 907ee1f14aaf587683ced44818c5a1d1cabf4174 authored by Miss Islington (bot) on 24 May 2020, 21:31:47 UTC
bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382)
Tip revision: 907ee1f
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