mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 21:21:22 +00:00 
			
		
		
		
	 e9f4d80fa6
			
		
	
	
		e9f4d80fa6
		
			
		
	
	
	
	
		
			
			Ignore linter "imported but unused" warnings in tests when the linter doesn't understand how the import is used.
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			163 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			163 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """This is a test"""
 | |
| 
 | |
| from __future__ import nested_scopes; import site  # noqa: F401
 | |
| 
 | |
| def f(x):
 | |
|     def g(y):
 | |
|         return x + y
 | |
|     return g
 | |
| 
 | |
| result = f(2)(4)
 |