디스크립터 객체¶
“디스크립터”는 객체의 일부 어트리뷰트를 기술하는 객체입니다. 그것들은 형 객체의 딕셔너리에 있습니다.
-
PyTypeObject PyProperty_Type¶
- Part of the 안정 ABI.
내장 디스크립터 형들을 위한 형 객체.
-
PyObject *PyDescr_NewGetSet(PyTypeObject *type, struct PyGetSetDef *getset)¶
- 반환값: 새 참조. Part of the 안정 ABI.
-
PyObject *PyDescr_NewMember(PyTypeObject *type, struct PyMemberDef *meth)¶
- 반환값: 새 참조. Part of the 안정 ABI.
-
PyObject *PyDescr_NewMethod(PyTypeObject *type, struct PyMethodDef *meth)¶
- 반환값: 새 참조. Part of the 안정 ABI.
-
PyObject *PyDescr_NewWrapper(PyTypeObject *type, struct wrapperbase *wrapper, void *wrapped)¶
- 반환값: 새 참조.
-
PyObject *PyDescr_NewClassMethod(PyTypeObject *type, PyMethodDef *method)¶
- 반환값: 새 참조. Part of the 안정 ABI.