summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-01-20 03:31:31 (GMT)
committerXiang Zhang <angwerzx@126.com>2017-01-20 03:31:31 (GMT)
commitf8160236ed89a54b99aebc9922cdb1fbdb1e5351 (patch)
tree6e114539a230d27620e918aa26c409bdfcf3ad1e /Doc
parent3c75d8ae4dc20ef8e665b77d7698e21e68bd1826 (diff)
parent346454c7f5e261232d33da5d7493985fd6b2ffad (diff)
downloadcpython-f8160236ed89a54b99aebc9922cdb1fbdb1e5351.zip
cpython-f8160236ed89a54b99aebc9922cdb1fbdb1e5351.tar.gz
cpython-f8160236ed89a54b99aebc9922cdb1fbdb1e5351.tar.bz2
Issue #29292: Merge 3.6.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/c-api/veryhigh.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/c-api/veryhigh.rst b/Doc/c-api/veryhigh.rst
index d0ceb05..6ab5942 100644
--- a/Doc/c-api/veryhigh.rst
+++ b/Doc/c-api/veryhigh.rst
@@ -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