[Python-checkins] r86851 - python/branches/pep-0384/Include/descrobject.h
martin.v.loewis
python-checkins at python.org
Sun Nov 28 23:40:26 CET 2010
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;
More information about the Python-checkins
mailing list