def __str__(self): return inst2strepr(self, str, *self._attrs())
def __str__(self): return inst2strepr(self, str, 'x', 'y', 'width', 'height')
def __repr__(self): r = inst2strepr(self, repr, *self._attrs()) return '<%s at %#x>' % (r, id(self))
def __repr__(self): r = inst2strepr(self, repr, 'x', 'y', 'width', 'height') return '<%s at %#x>' % (r, id(self))