mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 19:34:08 +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'
 | 
						|
 |