mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 03:44:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			177 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			177 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from test_support import verify
 | 
						|
 | 
						|
import _symtable
 | 
						|
 | 
						|
symbols, scopes = _symtable.symtable("def f(x): return x", "?", "exec")
 | 
						|
 | 
						|
verify(symbols.has_key(0))
 | 
						|
verify(scopes.has_key(0))
 |