Lines Matching refs:attr
68 for attr, value in self.__dict__.items():
69 object.__setattr__(newpolicy, attr, value)
70 for attr, value in kw.items():
71 if not hasattr(self, attr):
74 attr, self.__class__.__name__))
75 object.__setattr__(newpolicy, attr, value)
102 for name, attr in cls.__dict__.items():
103 if attr.__doc__ and attr.__doc__.startswith('+'):
107 attr.__doc__ = _append_doc(doc, attr.__doc__)