mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	 adfc118fda
			
		
	
	
		adfc118fda
		
			
		
	
	
	
	
		
			
			* Move Python scripts related to test_module to this new directory: good_getattr.py and bad_getattrX.py scripts. * Move Lib/test/test_module.py to Lib/test/test_module/__init__.py.
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			198 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			198 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| x = 1
 | |
| 
 | |
| def __dir__():
 | |
|     return ['a', 'b', 'c']
 | |
| 
 | |
| def __getattr__(name):
 | |
|     if name == "yolo":
 | |
|         raise AttributeError("Deprecated, use whatever instead")
 | |
|     return f"There is {name}"
 | |
| 
 | |
| y = 2
 |