Staging
v0.8.1
https://github.com/python/cpython
Revision 3235fac0d7d94ad6464a162261c18a424829d2e5 authored by Miss Islington (bot) on 11 September 2018, 16:07:11 UTC, committed by Ned Deily on 11 September 2018, 16:07:11 UTC
(cherry picked from commit 3102e24d83315eee42a94c460956fbcb92ac510f)

Co-authored-by: Ned Deily <nad@python.org>
1 parent c9ece5f
Raw File
Tip revision: 3235fac0d7d94ad6464a162261c18a424829d2e5 authored by Miss Islington (bot) on 11 September 2018, 16:07:11 UTC
bpo-34405: Update to OpenSSL 1.1.0i for macOS installer builds (GH-9166) (GH-9167)
Tip revision: 3235fac
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