Lines Matching defs:x_attr
27 PyObject *x_attr; /* Attributes dictionary */
43 Py_VISIT(self->x_attr);
50 Py_CLEAR(self->x_attr);
77 if (self->x_attr != NULL) {
78 PyObject *v = PyDict_GetItemWithError(self->x_attr, name);
93 if (self->x_attr == NULL) {
94 self->x_attr = PyDict_New();
95 if (self->x_attr == NULL)
99 int rv = PyDict_DelItemString(self->x_attr, name);
106 return PyDict_SetItemString(self->x_attr, name, v);