diff options
author | Guido van Rossum <guido@python.org> | 1995-07-18 14:21:06 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-07-18 14:21:06 (GMT) |
commit | 884afd654a79bcb836afcdb5c953a627fd45c4c7 (patch) | |
tree | eb0d6c872c09cad854aa168829d9feda2a4df4ea /Include/ceval.h | |
parent | e15dee5e3cf863657f47974cb51721ef3cca2ff8 (diff) | |
download | cpython-884afd654a79bcb836afcdb5c953a627fd45c4c7.zip cpython-884afd654a79bcb836afcdb5c953a627fd45c4c7.tar.gz cpython-884afd654a79bcb836afcdb5c953a627fd45c4c7.tar.bz2 |
keyword arguments and faster function calls
Diffstat (limited to 'Include/ceval.h')
-rw-r--r-- | Include/ceval.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/ceval.h b/Include/ceval.h index 474e386..70abbb4 100644 --- a/Include/ceval.h +++ b/Include/ceval.h @@ -31,6 +31,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. /* Interface to random parts in ceval.c */ PyObject *PyEval_CallObject Py_PROTO((PyObject *, PyObject *)); +PyObject *PyEval_CallObjectWithKeywords + Py_PROTO((PyObject *, PyObject *, PyObject *)); PyObject *PyEval_GetBuiltins Py_PROTO((void)); PyObject *PyEval_GetGlobals Py_PROTO((void)); |