Objetos descriptores¶
Los «descriptores» son objetos que describen algún atributo de un objeto. Se encuentran en el diccionario de objetos tipo.
- 
PyTypeObject PyProperty_Type¶
 -  Part of the Stable ABI.
El objeto de tipo para los tipos de descriptor incorporado.
 
- 
PyObject *PyDescr_NewGetSet(PyTypeObject *type, struct PyGetSetDef *getset)¶
 - Return value: New reference. Part of the Stable ABI.
 
- 
PyObject *PyDescr_NewMember(PyTypeObject *type, struct PyMemberDef *meth)¶
 - Return value: New reference. Part of the Stable ABI.
 
- 
PyObject *PyDescr_NewMethod(PyTypeObject *type, struct PyMethodDef *meth)¶
 - Return value: New reference. Part of the Stable ABI.
 
- 
PyObject *PyDescr_NewWrapper(PyTypeObject *type, struct wrapperbase *wrapper, void *wrapped)¶
 - Return value: New reference.
 
- 
PyObject *PyDescr_NewClassMethod(PyTypeObject *type, PyMethodDef *method)¶
 - Return value: New reference. Part of the Stable ABI.
 
- 
int PyDescr_IsData(PyObject *descr)¶
 Retorna distinto de cero si el descriptor objetos descr describe un atributo de datos, o
0si describe un método. descr debe ser un objeto descriptor; no hay comprobación de errores.
- 
PyObject *PyWrapper_New(PyObject*, PyObject*)¶
 - Return value: New reference. Part of the Stable ABI.