mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	Add comments
This commit is contained in:
		
							parent
							
								
									0b7b6fdff3
								
							
						
					
					
						commit
						dff1fd93ef
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		|  | @ -3439,10 +3439,10 @@ static int | |||
| instrsize(struct instr *instr) | ||||
| { | ||||
| 	if (!instr->i_hasarg) | ||||
| 		return 1; | ||||
| 		return 1;	/* 1 byte for the opcode*/ | ||||
| 	if (instr->i_oparg > 0xffff) | ||||
| 		return 6; | ||||
| 	return 3; | ||||
| 		return 6;	/* 1 (opcode) + 1 (EXTENDED_ARG opcode) + 2 (oparg) + 2(oparg extended) */ | ||||
| 	return 3; 		/* 1 (opcode) + 2 (oparg) */ | ||||
| } | ||||
| 
 | ||||
| static int | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Raymond Hettinger
						Raymond Hettinger