File tree Expand file tree Collapse file tree 1 file changed +1
-15
lines changed
pydatastructs/linear_data_structures/_backend/cpp/arrays Expand file tree Collapse file tree 1 file changed +1
-15
lines changed Original file line number Diff line number Diff line change @@ -83,20 +83,6 @@ static struct PyMethodDef ArrayForTrees_PyMethodDef[] = {
83
83
{NULL }
84
84
};
85
85
86
- static struct PyMemberDef ArrayForTrees_PyMemberDef[] = {
87
- {" size" , T_LONG,
88
- offsetof (ArrayForTrees, _size),
89
- READONLY, NULL },
90
- {" _num" , T_LONG,
91
- offsetof (ArrayForTrees, _num),
92
- READONLY, NULL },
93
- {" _last_pos_filled" , T_LONG,
94
- offsetof (ArrayForTrees, _last_pos_filled),
95
- READONLY, NULL },
96
- {NULL },
97
- };
98
-
99
-
100
86
static PyTypeObject ArrayForTreesType = {
101
87
/* tp_name */ PyVarObject_HEAD_INIT (NULL , 0 ) " ArrayForTrees" ,
102
88
/* tp_basicsize */ sizeof (ArrayForTrees),
@@ -125,7 +111,7 @@ static PyTypeObject ArrayForTreesType = {
125
111
/* tp_iter */ 0 ,
126
112
/* tp_iternext */ 0 ,
127
113
/* tp_methods */ ArrayForTrees_PyMethodDef,
128
- /* tp_members */ ArrayForTrees_PyMemberDef ,
114
+ /* tp_members */ 0 ,
129
115
/* tp_getset */ 0 ,
130
116
/* tp_base */ &DynamicOneDimensionalArrayType,
131
117
/* tp_dict */ 0 ,
You can’t perform that action at this time.
0 commit comments