Lines Matching defs:x_attr
18 PyObject *x_attr; /* Attributes dictionary */
32 self->x_attr = NULL;
42 Py_VISIT(self->x_attr);
49 Py_CLEAR(self->x_attr);
56 Py_CLEAR(self->x_attr);
83 if (self->x_attr != NULL) {
84 PyObject *v = PyDict_GetItemWithError(self->x_attr, name);
99 if (self->x_attr == NULL) {
100 self->x_attr = PyDict_New();
101 if (self->x_attr == NULL)
105 int rv = PyDict_DelItemString(self->x_attr, name);
112 return PyDict_SetItemString(self->x_attr, name, v);