/
githubmirror
/
cpython
Обзор
Документация
Войти
/
githubmirror
/
cpython
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
3.9
Python/getversion.c
14 строк
308 B
Serhiy Storchaka
bpo-32150: Expand tabs to spaces in C files. (#4583)
28 ноя 2017, 18:56
Не верифицирован
28 ноя 2017, 18:56
598ceae
Код
Авторство
О чём код?
/* 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; }