diff -r c144bf6c0ff7 Doc/c-api/veryhigh.rst --- a/Doc/c-api/veryhigh.rst Thu Jan 19 19:38:13 2017 +0200 +++ b/Doc/c-api/veryhigh.rst Thu Jan 19 21:53:59 2017 -0500 @@ -300,12 +300,13 @@ 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. + a mapping object of local variables, arrays of arguments, keywords and + defaults, a dict of the default values of :ref:`keyword-only\ + ` arguments and a closure tuple of cells. .. c:type:: PyFrameObject