blob: c10e41d07f27c99765c5ab30b48a7581cf7d82c6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* 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");
}
|