Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: dfad352267cee3ea581035622a7371bc3b235378 authored by Ned Deily on 12 June 2018, 04:46:50 UTC
3.7.0rc1
Tip revision: dfad352
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