Staging
v0.5.1
https://github.com/python/cpython
Revision 7219e27087baaa8a5693b5bef1b1357bddbffa53 authored by Ethan Furman on 16 September 2020, 20:01:00 UTC, committed by GitHub on 16 September 2020, 20:01:00 UTC
1 parent fc23a94
Raw File
Tip revision: 7219e27087baaa8a5693b5bef1b1357bddbffa53 authored by Ethan Furman on 16 September 2020, 20:01:00 UTC
Enum: make `Flag` and `IntFlag` members iterable (GH-22221)
Tip revision: 7219e27
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