Об’єкти-дескриптори¶
«Дескриптори» - це об’єкти, які описують деякі атрибути об’єкта. Вони знаходяться в словнику об’єктів типу.
-
PyTypeObject PyProperty_Type¶
- Part of the Stable ABI.
Об’єкт типу для вбудованих типів дескрипторів.
-
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)¶
Повертає ненульове значення, якщо об’єкти дескриптора descr описують атрибут даних, або
0
, якщо він описує метод. descr має бути об’єктом дескриптора; немає перевірки помилок.
-
PyObject *PyWrapper_New(PyObject*, PyObject*)¶
- Return value: New reference. Part of the Stable ABI.