디스크립터 객체¶
“디스크립터”는 객체의 일부 어트리뷰트를 기술하는 객체입니다. 그것들은 형 객체의 딕셔너리에 있습니다.
-
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.
-
int PyDescr_IsData(PyObject *descr)¶
Return non-zero if the descriptor object descr describes a data attribute, or
0if it describes a method. descr must be a descriptor object; there is no error checking.
Built-in descriptors¶
-
PyTypeObject PySuper_Type¶
- Part of the 안정 ABI.
The type object for super objects. This is the same object as
superin the Python layer.
-
PyTypeObject PyClassMethod_Type¶
The type of class method objects. This is the same object as
classmethodin the Python layer.
-
PyObject *PyClassMethod_New(PyObject *callable)¶
Create a new
classmethodobject wrapping callable. callable must be a callable object and must not beNULL.On success, this function returns a strong reference to a new class method descriptor. On failure, this function returns
NULLwith an exception set.
-
PyTypeObject PyStaticMethod_Type¶
The type of static method objects. This is the same object as
staticmethodin the Python layer.
-
PyObject *PyStaticMethod_New(PyObject *callable)¶
Create a new
staticmethodobject wrapping callable. callable must be a callable object and must not beNULL.On success, this function returns a strong reference to a new static method descriptor. On failure, this function returns
NULLwith an exception set.