summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2017-01-20 11:31:31 +0800
committerXiang Zhang <angwerzx@126.com>2017-01-20 11:31:31 +0800
commitf7332c035a05acde046bc5b4f203fb9035bd7d9e (patch)
tree4ad7bece9a8ec7d9accf8c6e7ad7d82362e4368a /Doc
parent536c6d972865b2bf09857bdf19705ca29c7d71de (diff)
parentf122a8e06e72492315135ef7fd1075749b4f0b8c (diff)
downloadcpython-f7332c035a05acde046bc5b4f203fb9035bd7d9e.tar.gz
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 d0ceb05322..6ab5942929 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