[pypy-svn] r73431 - pypy/branch/cpython-extension/pypy/module/cpyext/include

xoraxax at codespeak.net xoraxax at codespeak.net
Tue Apr 6 01:37:58 CEST 2010


Author: xoraxax
Date: Tue Apr  6 01:37:57 2010
New Revision: 73431

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/include/modsupport.h
Log:
Enable the new functions in modsupport.h (WTF, weird choice to put them there).

Modified: pypy/branch/cpython-extension/pypy/module/cpyext/include/modsupport.h
==============================================================================
--- pypy/branch/cpython-extension/pypy/module/cpyext/include/modsupport.h	(original)
+++ pypy/branch/cpython-extension/pypy/module/cpyext/include/modsupport.h	Tue Apr  6 01:37:57 2010
@@ -14,12 +14,10 @@
 int PyArg_ParseTuple(PyObject *, const char *, ...);
 int PyArg_VaParse(PyObject *, const char *, va_list);
 
-/* NOT YET IMPLEMENTED
 int PyArg_ParseTupleAndKeywords(PyObject *, PyObject *,
 				const char *, char **, ...);
 int PyArg_VaParseTupleAndKeywords(PyObject *, PyObject *,
 				const char *, char **, va_list);
-*/
 
 #define Py_InitModule(name, methods) \
 	Py_InitModule4(name, methods, (char *)NULL, (PyObject *)NULL, \



More information about the Pypy-commit mailing list