Take this class:
class Element(object): __slots__ = [\'x\', \'y\'] def __init__(self, x, y): self.x = x self.y = y @property