diff options
author | Kristján Valur Jónsson <kristjan@ccpgames.com> | 2010-09-27 05:32:54 (GMT) |
---|---|---|
committer | Kristján Valur Jónsson <kristjan@ccpgames.com> | 2010-09-27 05:32:54 (GMT) |
commit | 3b69db27d70f05584b76ece61bb882c26ecfcc68 (patch) | |
tree | c02d068991fa7d393ec6a33ab4307d401a90c1f7 /Doc/c-api/init.rst | |
parent | 42ef4b1f4c8f07357f7c4e9cb8470f57365b0ffa (diff) | |
download | cpython-3b69db27d70f05584b76ece61bb882c26ecfcc68.zip cpython-3b69db27d70f05584b76ece61bb882c26ecfcc68.tar.gz cpython-3b69db27d70f05584b76ece61bb882c26ecfcc68.tar.bz2 |
issue 9910
Add a Py_SetPath api to override magic path computations when starting up python.
Diffstat (limited to 'Doc/c-api/init.rst')
-rw-r--r-- | Doc/c-api/init.rst | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst index ae5d028..52797f7 100644 --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -27,8 +27,9 @@ Initialization, Finalization, and Threads Initialize the Python interpreter. In an application embedding Python, this should be called before using any other Python/C API functions; with the - exception of :cfunc:`Py_SetProgramName`, :cfunc:`PyEval_InitThreads`, - :cfunc:`PyEval_ReleaseLock`, and :cfunc:`PyEval_AcquireLock`. This initializes + exception of :cfunc:`Py_SetProgramName`, :cfunc:`Py_SetPath`, + :cfunc:`PyEval_InitThreads`, :cfunc:`PyEval_ReleaseLock`, and + :cfunc:`PyEval_AcquireLock`. This initializes the table of loaded modules (``sys.modules``), and creates the fundamental modules :mod:`builtins`, :mod:`__main__` and :mod:`sys`. It also initializes the module search path (``sys.path``). It does not set ``sys.argv``; use @@ -256,6 +257,7 @@ Initialization, Finalization, and Threads .. index:: triple: module; search; path single: path (in module sys) + single: Py_SetPath() Return the default module search path; this is computed from the program name (set by :cfunc:`Py_SetProgramName` above) and some environment variables. @@ -270,6 +272,25 @@ Initialization, Finalization, and Threads .. XXX should give the exact rules +.. cfunction:: void Py_SetPath(const wchar_t *) + + .. index:: + triple: module; search; path + single: path (in module sys) + single: Py_GetPath() + + Set the default module search path. If this function is called before + :cfunc: `Py_Initialize` then :cfunc: Py_GetPath won't attempt to compute + a default serarch path but uses the provided one in stead. This is useful + if Python is being embedded by an application that has full knowledge + of the location of all modules. The path components should be separated + by semicolons. + + This also causes `sys.executable` to be set only to the raw program name + (see :cfunc:`Py_SetProgramName`) and `for sys.prefix` and + `sys.exec_prefix` to be empty. It is up to the caller to modify these if + required after calling :cfunc: `Py_Initialize`. + .. cfunction:: const char* Py_GetVersion() Return the version of this Python interpreter. This is a string that looks |