Files
INTUIA/Programa final/Python-3.10.15/Tools/c-analyzer/c_common/misc.py
T

8 lines
161 B
Python
Raw Normal View History

2026-03-15 13:27:50 +00:00
class Labeled:
__slots__ = ('_label',)
def __init__(self, label):
self._label = label
def __repr__(self):
return f'<{self._label}>'