Lines Matching refs:preconfig
49 ``_PyRuntime.preconfig`` and the configuration (``PyConfig`` type) is stored in
200 .. c:function:: void PyPreConfig_InitPythonConfig(PyPreConfig *preconfig)
205 .. c:function:: void PyPreConfig_InitIsolatedConfig(PyPreConfig *preconfig)
284 .. c:function:: PyStatus Py_PreInitialize(const PyPreConfig *preconfig)
286 Preinitialize Python from *preconfig* preconfiguration.
288 .. c:function:: PyStatus Py_PreInitializeFromBytesArgs(const PyPreConfig *preconfig, int argc, char…
290 Preinitialize Python from *preconfig* preconfiguration and command line
293 .. c:function:: PyStatus Py_PreInitializeFromArgs(const PyPreConfig *preconfig, int argc, wchar_t *…
295 Preinitialize Python from *preconfig* preconfiguration and command line
321 PyPreConfig preconfig;
322 PyPreConfig_InitPythonConfig(&preconfig);
324 preconfig.utf8_mode = 1;
326 status = Py_PreInitialize(&preconfig);