diff options
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/c-api/object.rst | 10 | ||||
-rw-r--r-- | Doc/whatsnew/3.9.rst | 2 |
2 files changed, 12 insertions, 0 deletions
diff --git a/Doc/c-api/object.rst b/Doc/c-api/object.rst index ce0d05942f..aecd001a21 100644 --- a/Doc/c-api/object.rst +++ b/Doc/c-api/object.rst @@ -253,6 +253,16 @@ Object Protocol and ``0`` otherwise. This function always succeeds. +.. c:function:: PyObject* PyObject_CallNoArgs(PyObject *callable) + + Call a callable Python object *callable* without any arguments. + + Returns the result of the call on success, or raise an exception and return + *NULL* on failure. + + .. versionadded:: 3.9 + + .. c:function:: PyObject* PyObject_Call(PyObject *callable, PyObject *args, PyObject *kwargs) Call a callable Python object *callable*, with arguments given by the diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index ed55838546..62b013f772 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -102,6 +102,8 @@ Optimizations Build and C API Changes ======================= +* Add a new public :c:func:`PyObject_CallNoArgs` function to the C API: + call a callable Python object without any arguments. Deprecated |