(root)/
Python-3.11.7/
Modules/
getpath_noop.c
       1  /* Implements the getpath API for compiling with no functionality */
       2  
       3  #include "Python.h"
       4  #include "pycore_pathconfig.h"
       5  
       6  PyStatus
       7  _PyConfig_InitPathConfig(PyConfig *config, int compute_path_config)
       8  {
       9      return PyStatus_Error("path configuration is unsupported");
      10  }