/
githubmirror
/
cpython
Обзор
Документация
Войти
/
githubmirror
/
cpython
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v3.13.13
Modules/getpath_noop.c
10 строк
267 B
Steve Dower
bpo-45582: Port getpath[p].c to Python (GH-29041)
03 дек 2021, 03:08
Не верифицирован
03 дек 2021, 03:08
99fcf15
Код
Авторство
О чём код?
/* Implements the getpath API for compiling with no functionality */ #include "Python.h" #include "pycore_pathconfig.h" PyStatus _PyConfig_InitPathConfig(PyConfig *config, int compute_path_config) { return PyStatus_Error("path configuration is unsupported"); }