From: Alexandre Vassalotti Date: Sun, 28 Dec 2008 02:58:22 +0000 (+0000) Subject: Document Py_VaBuildValue. X-Git-Tag: v2.7a1~2478 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7d1e7e5d43e369db602bab35a6d5a47b6e5569e;p=thirdparty%2FPython%2Fcpython.git Document Py_VaBuildValue. --- diff --git a/Doc/c-api/arg.rst b/Doc/c-api/arg.rst index c3da8591cda6..144a36545d6b 100644 --- a/Doc/c-api/arg.rst +++ b/Doc/c-api/arg.rst @@ -534,3 +534,8 @@ and the following format units are left untouched. If there is an error in the format string, the :exc:`SystemError` exception is set and *NULL* returned. + +.. cfunction:: PyObject* Py_VaBuildValue(const char *format, va_list vargs) + + Identical to :cfunc:`Py_BuildValue`, except that it accepts a va_list + rather than a variable number of arguments.