[Python-checkins] cpython (2.7): Py_SetPythonHome() can be called before Py_Initialize(); thanks to Cody Smith
sandro.tosi
python-checkins at python.org
Sat Jan 7 18:36:13 CET 2012
http://hg.python.org/cpython/rev/56e9d025078d
changeset: 74294:56e9d025078d
branch: 2.7
parent: 74290:ae95154e0624
user: Sandro Tosi <sandro.tosi at gmail.com>
date: Sat Jan 07 18:32:06 2012 +0100
summary:
Py_SetPythonHome() can be called before Py_Initialize(); thanks to Cody Smith from docs@
files:
Doc/c-api/init.rst | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst
--- a/Doc/c-api/init.rst
+++ b/Doc/c-api/init.rst
@@ -31,7 +31,7 @@
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
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list