Staging
v0.5.1
https://github.com/python/cpython
Revision 1cd6e926d30552056457820a682c1c361ee0f3ff authored by Miss Islington (bot) on 15 September 2019, 17:13:34 UTC, committed by GitHub on 15 September 2019, 17:13:34 UTC

https://bugs.python.org/issue38178
(cherry picked from commit c717c73fa33a2f3591442059eaf6e7a673e2c725)

Co-authored-by: Hrvoje Nikšić <hniksic@gmail.com>
1 parent d6fdfc8
Raw File
Tip revision: 1cd6e926d30552056457820a682c1c361ee0f3ff authored by Miss Islington (bot) on 15 September 2019, 17:13:34 UTC
bpo-38178: Don't explicitly pass "loop" to EchoClientProtocol. (GH-16159)
Tip revision: 1cd6e92
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