From 492b46f29e8a706d5f27040d58ba6727d962a548 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 19 Aug 2002 18:45:37 +0000 Subject: Make PyDescr_IsData() a macro. It's too simple to be a function. Should save 4% on slot lookups. --- Include/descrobject.h | 2 +- Objects/descrobject.c | 6 ------ 2 files changed, 1 insertion(+), 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) --- */ -- cgit v0.12