Line data Source code
1 : /* Implements the getpath API for compiling with no functionality */ 2 : 3 : #include "Python.h" 4 : #include "pycore_pathconfig.h" 5 : 6 : PyStatus 7 0 : _PyConfig_InitPathConfig(PyConfig *config, int compute_path_config) 8 : { 9 0 : return PyStatus_Error("path configuration is unsupported"); 10 : }