mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +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}>' |