]> granicus.if.org Git - python/commitdiff
Py_SetPythonHome() can be called before Py_Initialize(); thanks to Cody Smith from...
authorSandro Tosi <sandro.tosi@gmail.com>
Sat, 7 Jan 2012 17:32:06 +0000 (18:32 +0100)
committerSandro Tosi <sandro.tosi@gmail.com>
Sat, 7 Jan 2012 17:32:06 +0000 (18:32 +0100)
Doc/c-api/init.rst

index c323eef4cfcffef31d57f136d1347c2dcea7f56b..a53b4945ad607081be180e8436df2bbe36faffbe 100644 (file)
@@ -31,7 +31,7 @@ Initializing and finalizing the interpreter
 
    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`,
+   exception of :cfunc:`Py_SetProgramName`, :cfunc:`Py_SetPythonHome`, :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:`__builtin__`, :mod:`__main__` and :mod:`sys`.  It also initializes