Lines Matching defs:x_attr
8 You will probably want to delete all references to 'x_attr' and add
84 PyObject *x_attr; /* Attributes dictionary */
104 self->x_attr = NULL;
120 Py_VISIT(self->x_attr);
127 Py_CLEAR(self->x_attr);
135 Py_CLEAR(self->x_attr);
155 if (self->x_attr != NULL) {
156 PyObject *v = PyDict_GetItemWithError(self->x_attr, name);
171 if (self->x_attr == NULL) {
173 self->x_attr = PyDict_New();
174 if (self->x_attr == NULL) {
180 int rv = PyDict_DelItem(self->x_attr, name);
190 return PyDict_SetItem(self->x_attr, name, v);