mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 05:31:20 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			137 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			137 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # code flags
 | |
| CO_VARARGS = 1
 | |
| CO_VARKEYWORDS = 2
 | |
| 
 | |
| # operation flags
 | |
| OP_ASSIGN = 'OP_ASSIGN'
 | |
| OP_DELETE = 'OP_DELETE'
 | |
| OP_APPLY = 'OP_APPLY'
 | |
| 
 | 
