]> granicus.if.org Git - python/commitdiff
Issue #29292: Update outdated doc of PyEval_EvalCodeEx.
authorXiang Zhang <angwerzx@126.com>
Fri, 20 Jan 2017 03:29:11 +0000 (11:29 +0800)
committerXiang Zhang <angwerzx@126.com>
Fri, 20 Jan 2017 03:29:11 +0000 (11:29 +0800)
Patch by Ammar Askar.

Doc/c-api/veryhigh.rst

index d0ceb05322150ef3b85b8959217b06f056d32ddb..6ab5942929fcceafb1a429643bd3c5d475fefd75 100644 (file)
@@ -300,12 +300,13 @@ the same library that the Python runtime is using.
    set to *NULL*.
 
 
-.. c:function:: PyObject* PyEval_EvalCodeEx(PyObject *co, PyObject *globals, PyObject *locals, PyObject **args, int argcount, PyObject **kws, int kwcount, PyObject **defs, int defcount, PyObject *closure)
+.. c:function:: PyObject* PyEval_EvalCodeEx(PyObject *co, PyObject *globals, PyObject *locals, PyObject **args, int argcount, PyObject **kws, int kwcount, PyObject **defs, int defcount, PyObject *kwdefs, PyObject *closure)
 
    Evaluate a precompiled code object, given a particular environment for its
    evaluation.  This environment consists of a dictionary of global variables,
    a mapping object of local variables, arrays of arguments, keywords and
-   defaults, and a closure tuple of cells.
+   defaults, a dictionary of default values for :ref:`keyword-only\
+   <keyword-only_parameter>` arguments and a closure tuple of cells.
 
 
 .. c:type:: PyFrameObject