Lines Matching defs:x_attr
9 You will probably want to delete all references to 'x_attr' and add
23 PyObject *x_attr; /* Attributes dictionary */
37 self->x_attr = NULL;
46 Py_XDECREF(self->x_attr);
68 if (self->x_attr != NULL) {
69 PyObject *v = PyDict_GetItemWithError(self->x_attr, name);
84 if (self->x_attr == NULL) {
85 self->x_attr = PyDict_New();
86 if (self->x_attr == NULL)
90 int rv = PyDict_DelItemString(self->x_attr, name);
97 return PyDict_SetItemString(self->x_attr, name, v);