Kaydet (Commit) dff1fd93 authored tarafından Raymond Hettinger's avatar Raymond Hettinger

Add comments

üst 0b7b6fdf
...@@ -3439,10 +3439,10 @@ static int ...@@ -3439,10 +3439,10 @@ static int
instrsize(struct instr *instr) instrsize(struct instr *instr)
{ {
if (!instr->i_hasarg) if (!instr->i_hasarg)
return 1; return 1; /* 1 byte for the opcode*/
if (instr->i_oparg > 0xffff) if (instr->i_oparg > 0xffff)
return 6; return 6; /* 1 (opcode) + 1 (EXTENDED_ARG opcode) + 2 (oparg) + 2(oparg extended) */
return 3; return 3; /* 1 (opcode) + 2 (oparg) */
} }
static int static int
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment