mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 18:07:37 +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.
		
			
				
	
	
		
			7 lines
		
	
	
	
		
			77 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
	
		
			77 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| def __getattr__():
 | |
|     "Bad one"
 | |
| 
 | |
| x = 1
 | |
| 
 | |
| def __dir__(bad_sig):
 | |
|     return []
 |