[Python-checkins] r67973 - python/trunk/Doc/c-api/arg.rst

alexandre.vassalotti python-checkins at python.org
Sun Dec 28 03:58:22 CET 2008


Author: alexandre.vassalotti
Date: Sun Dec 28 03:58:22 2008
New Revision: 67973

Log:
Document Py_VaBuildValue.


Modified:
   python/trunk/Doc/c-api/arg.rst

Modified: python/trunk/Doc/c-api/arg.rst
==============================================================================
--- python/trunk/Doc/c-api/arg.rst	(original)
+++ python/trunk/Doc/c-api/arg.rst	Sun Dec 28 03:58:22 2008
@@ -534,3 +534,8 @@
 
    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.


More information about the Python-checkins mailing list