Disables parameter stepping. Does not change other settings for parameter stepping. :Example: >>> # Create an instance of the instruction object >>> my_instr = instruction() >>> # Disable parameter stepping >>> my_instruction.stepOff()
(self)
| 709 | return |
| 710 | |
| 711 | def stepOff(self): |
| 712 | """ |
| 713 | Disables parameter stepping. |
| 714 | |
| 715 | Does not change other settings for parameter stepping. |
| 716 | |
| 717 | :Example: |
| 718 | |
| 719 | >>> # Create an instance of the instruction object |
| 720 | >>> my_instr = instruction() |
| 721 | >>> # Disable parameter stepping |
| 722 | >>> my_instruction.stepOff() |
| 723 | """ |
| 724 | self.step = False |
| 725 | return |
| 726 | |
| 727 | def setStepVar(self, stepVar): |
| 728 | """ |
no outgoing calls
no test coverage detected