Author: martin.v.loewis Date: Sun Nov 28 23:40:25 2010 New Revision: 86851 Log: Exclude wrapperfunc. Modified: python/branches/pep-0384/Include/descrobject.h Modified: python/branches/pep-0384/Include/descrobject.h ============================================================================== --- python/branches/pep-0384/Include/descrobject.h (original) +++ python/branches/pep-0384/Include/descrobject.h Sun Nov 28 23:40:25 2010 @@ -16,13 +16,13 @@ void *closure; } PyGetSetDef; +#ifndef Py_LIMITED_API typedef PyObject *(*wrapperfunc)(PyObject *self, PyObject *args, void *wrapped); typedef PyObject *(*wrapperfunc_kwds)(PyObject *self, PyObject *args, void *wrapped, PyObject *kwds); -#ifndef Py_LIMITED_API struct wrapperbase { char *name; int offset;
participants (1)
-
martin.v.loewis