1 2class Labeled: 3 __slots__ = ('_label',) 4 def __init__(self, label): 5 self._label = label 6 def __repr__(self): 7 return f'<{self._label}>' 8