diff -r 1a97b10cb420 Doc/c-api/veryhigh.rst --- a/Doc/c-api/veryhigh.rst Tue Jan 17 04:20:26 2017 +0100 +++ b/Doc/c-api/veryhigh.rst Tue Jan 17 11:22:24 2017 -0500 @@ -300,12 +300,12 @@ 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 their + default arguments, and a closure tuple of cells. .. c:type:: PyFrameObject