cpython/Doc/c-api/descriptor.rst

41 lines
1.1 KiB
ReStructuredText
Raw Normal View History

.. highlight:: c
2008-01-20 09:30:57 +00:00
.. _descriptor-objects:
Descriptor Objects
------------------
"Descriptors" are objects that describe some attribute of an object. They are
found in the dictionary of type objects.
.. XXX document these!
.. c:var:: PyTypeObject PyProperty_Type
2008-01-20 09:30:57 +00:00
The type object for the built-in descriptor types.
.. c:function:: PyObject* PyDescr_NewGetSet(PyTypeObject *type, struct PyGetSetDef *getset)
2008-01-20 09:30:57 +00:00
.. c:function:: PyObject* PyDescr_NewMember(PyTypeObject *type, struct PyMemberDef *meth)
2008-01-20 09:30:57 +00:00
.. c:function:: PyObject* PyDescr_NewMethod(PyTypeObject *type, struct PyMethodDef *meth)
2008-01-20 09:30:57 +00:00
.. c:function:: PyObject* PyDescr_NewWrapper(PyTypeObject *type, struct wrapperbase *wrapper, void *wrapped)
2008-01-20 09:30:57 +00:00
.. c:function:: PyObject* PyDescr_NewClassMethod(PyTypeObject *type, PyMethodDef *method)
2008-01-20 09:30:57 +00:00
.. c:function:: int PyDescr_IsData(PyObject *descr)
2008-01-20 09:30:57 +00:00
Return non-zero if the descriptor objects *descr* describes a data attribute, or
``0`` if it describes a method. *descr* must be a descriptor object; there is
2008-01-20 09:30:57 +00:00
no error checking.
.. c:function:: PyObject* PyWrapper_New(PyObject *, PyObject *)