mirror of
https://github.com/python/cpython.git
synced 2024-11-24 02:15:30 +08:00
Issue #29292: Merge 3.6.
This commit is contained in:
commit
f8160236ed
@ -300,12 +300,13 @@ the same library that the Python runtime is using.
|
|||||||
set to *NULL*.
|
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
|
Evaluate a precompiled code object, given a particular environment for its
|
||||||
evaluation. This environment consists of a dictionary of global variables,
|
evaluation. This environment consists of a dictionary of global variables,
|
||||||
a mapping object of local variables, arrays of arguments, keywords and
|
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
|
.. c:type:: PyFrameObject
|
||||||
|
Loading…
Reference in New Issue
Block a user