File indexing completed on 2025-01-30 10:18:06
0001 #ifndef Py_INTERNAL_DESCROBJECT_H
0002 #define Py_INTERNAL_DESCROBJECT_H
0003 #ifdef __cplusplus
0004 extern "C" {
0005 #endif
0006
0007 #ifndef Py_BUILD_CORE
0008 # error "this header requires Py_BUILD_CORE define"
0009 #endif
0010
0011 typedef struct {
0012 PyObject_HEAD
0013 PyObject *prop_get;
0014 PyObject *prop_set;
0015 PyObject *prop_del;
0016 PyObject *prop_doc;
0017 PyObject *prop_name;
0018 int getter_doc;
0019 } propertyobject;
0020
0021 typedef propertyobject _PyPropertyObject;
0022
0023 #ifdef __cplusplus
0024 }
0025 #endif
0026 #endif