mirror of
https://github.com/python/cpython.git
synced 2025-10-27 03:34:32 +00:00
8 lines
161 B
Python
8 lines
161 B
Python
|
|
|
||
|
|
class Labeled:
|
||
|
|
__slots__ = ('_label',)
|
||
|
|
def __init__(self, label):
|
||
|
|
self._label = label
|
||
|
|
def __repr__(self):
|
||
|
|
return f'<{self._label}>'
|