diff options
-rw-r--r-- | Include/descrobject.h | 2 | ||||
-rw-r--r-- | Objects/descrobject.c | 6 |
2 files changed, 1 insertions, 7 deletions
diff --git a/Include/descrobject.h b/Include/descrobject.h index 1319036..6fb6a95 100644 --- a/Include/descrobject.h +++ b/Include/descrobject.h @@ -76,7 +76,7 @@ PyAPI_FUNC(PyObject *) PyDescr_NewGetSet(PyTypeObject *, struct PyGetSetDef *); PyAPI_FUNC(PyObject *) PyDescr_NewWrapper(PyTypeObject *, struct wrapperbase *, void *); -PyAPI_FUNC(int) PyDescr_IsData(PyObject *); +#define PyDescr_IsData(d) ((d)->ob_type->tp_descr_set != NULL) PyAPI_FUNC(PyObject *) PyDictProxy_New(PyObject *); PyAPI_FUNC(PyObject *) PyWrapper_New(PyObject *, PyObject *); diff --git a/Objects/descrobject.c b/Objects/descrobject.c index 6daffc6..fc9d9a1 100644 --- a/Objects/descrobject.c +++ b/Objects/descrobject.c @@ -555,12 +555,6 @@ PyDescr_NewWrapper(PyTypeObject *type, struct wrapperbase *base, void *wrapped) return (PyObject *)descr; } -int -PyDescr_IsData(PyObject *d) -{ - return d->ob_type->tp_descr_set != NULL; -} - /* --- Readonly proxy for dictionaries (actually any mapping) --- */ |