https://github.com/python/cpython
Raw File
Tip revision: 3b9d793efcfd2c00c14ffbeab1a3389bf3b095ff authored by Thomas Wouters on 14 November 2022, 11:12:42 UTC
Python 3.12.0a2
Tip revision: 3b9d793
getpath_noop.c
/* 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");
}
back to top