aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-08-02 04:15:00 +0000
committerTim Peters <tim.peters@gmail.com>2001-08-02 04:15:00 +0000
commit6d6c1a35e08b95a83dbe47dbd9e6474daff00354 (patch)
tree542089077b9c2650dcf5c52d6bfcef1baf12d176 /Include/abstract.h
parentCleaned up the docstring for readline.set_completer(). (diff)
downloadcpython-6d6c1a35e08b95a83dbe47dbd9e6474daff00354.tar.gz
cpython-6d6c1a35e08b95a83dbe47dbd9e6474daff00354.tar.bz2
cpython-6d6c1a35e08b95a83dbe47dbd9e6474daff00354.zip
Merge of descr-branch back into trunk.
Diffstat (limited to 'Include/abstract.h')
-rw-r--r--Include/abstract.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/Include/abstract.h b/Include/abstract.h
index 9082edb0b83..799438e2b1d 100644
--- a/Include/abstract.h
+++ b/Include/abstract.h
@@ -294,6 +294,17 @@ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
*/
+
+ DL_IMPORT(PyObject *) PyObject_Call(PyObject *callable_object,
+ PyObject *args, PyObject *kw);
+
+ /*
+
+ Call a callable Python object, callable_object, with
+ arguments and keywords arguments. The 'args' argument can not be
+ NULL, but the 'kw' argument can be NULL.
+
+ */
DL_IMPORT(PyObject *) PyObject_CallObject(PyObject *callable_object,
PyObject *args);