diff options
| author | Tim Peters <tim.peters@gmail.com> | 2001-08-02 04:15:00 (GMT) |
|---|---|---|
| committer | Tim Peters <tim.peters@gmail.com> | 2001-08-02 04:15:00 (GMT) |
| commit | 6d6c1a35e08b95a83dbe47dbd9e6474daff00354 (patch) | |
| tree | 542089077b9c2650dcf5c52d6bfcef1baf12d176 /Include/eval.h | |
| parent | 52d55a392600011d3edfe85c694744ec550ad1fe (diff) | |
| download | cpython-6d6c1a35e08b95a83dbe47dbd9e6474daff00354.zip cpython-6d6c1a35e08b95a83dbe47dbd9e6474daff00354.tar.gz cpython-6d6c1a35e08b95a83dbe47dbd9e6474daff00354.tar.bz2 | |
Merge of descr-branch back into trunk.
Diffstat (limited to 'Include/eval.h')
| -rw-r--r-- | Include/eval.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Include/eval.h b/Include/eval.h index 2a45009..f9334a7 100644 --- a/Include/eval.h +++ b/Include/eval.h @@ -9,6 +9,14 @@ extern "C" { DL_IMPORT(PyObject *) PyEval_EvalCode(PyCodeObject *, PyObject *, PyObject *); +DL_IMPORT(PyObject *) PyEval_EvalCodeEx(PyCodeObject *co, + PyObject *globals, + PyObject *locals, + PyObject **args, int argc, + PyObject **kwds, int kwdc, + PyObject **defs, int defc, + PyObject *closure); + #ifdef __cplusplus } #endif |
