[Python-checkins] python/dist/src/Include modsupport.h,2.40,2.41

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Sun Jul 11 00:20:49 CEST 2004


Update of /cvsroot/python/python/dist/src/Include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10742/Include

Modified Files:
	modsupport.h 
Log Message:
Add PyArg_VaParseTupleAndKeywords().  Document this function and
PyArg_VaParse().

Closes patch #550732.  Thanks Greg Chapman.


Index: modsupport.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/modsupport.h,v
retrieving revision 2.40
retrieving revision 2.41
diff -C2 -d -r2.40 -r2.41
*** modsupport.h	19 Aug 2002 21:43:18 -0000	2.40
--- modsupport.h	10 Jul 2004 22:20:17 -0000	2.41
***************
*** 18,21 ****
--- 18,23 ----
  
  PyAPI_FUNC(int) PyArg_VaParse(PyObject *, char *, va_list);
+ PyAPI_FUNC(int) PyArg_VaParseTupleAndKeywords(PyObject *, PyObject *,
+                                                   char *, char **, va_list);
  PyAPI_FUNC(PyObject *) Py_VaBuildValue(char *, va_list);
  



More information about the Python-checkins mailing list