Iterate through positions of opcodes, skipping arguments.
(self, start, end)
| 521 | return self.opc.opname[op] |
| 522 | |
| 523 | def op_range(self, start, end): |
| 524 | """ |
| 525 | Iterate through positions of opcodes, skipping |
| 526 | arguments. |
| 527 | """ |
| 528 | while start < end: |
| 529 | yield start |
| 530 | start += instruction_size(self.code[start], self.opc) |
| 531 | |
| 532 | def remove_extended_args(self, instructions): |
| 533 | """Go through instructions removing extended ARG. |
no outgoing calls
no test coverage detected