diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-13 22:28:28 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-13 22:28:28 (GMT) |
commit | 9bd3bbcfe8f41509a0d60691000bd21e5338378f (patch) | |
tree | c1c71c3295f2f687755f1092fcc7666e27ba87c8 /Doc/c-api/init.rst | |
parent | 34db4698958c64436de3a16fd5abf7224557492f (diff) | |
download | cpython-9bd3bbcfe8f41509a0d60691000bd21e5338378f.zip cpython-9bd3bbcfe8f41509a0d60691000bd21e5338378f.tar.gz cpython-9bd3bbcfe8f41509a0d60691000bd21e5338378f.tar.bz2 |
Issue #11329: PyEval_InitThreads() cannot be called before Py_Initialize() anymore
Diffstat (limited to 'Doc/c-api/init.rst')
-rw-r--r-- | Doc/c-api/init.rst | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Doc/c-api/init.rst b/Doc/c-api/init.rst index da55ab0..2641c8b 100644 --- a/Doc/c-api/init.rst +++ b/Doc/c-api/init.rst @@ -29,8 +29,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 :c:func:`Py_SetProgramName`, :c:func:`Py_SetPath`, - and :c:func:`PyEval_InitThreads`. This initializes + exception of :c:func:`Py_SetProgramName` and :c:func:`Py_SetPath`. 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 @@ -540,8 +539,7 @@ code, or when embedding the Python interpreter: .. index:: single: Py_Initialize() - This is a no-op when called for a second time. It is safe to call this function - before calling :c:func:`Py_Initialize`. + This is a no-op when called for a second time. .. index:: module: _thread |