Enables parameter stepping. Does not change other settings for parameter stepping. :Example: >>> # Create an instance of the instruction object >>> my_instr = instruction() >>> # Enable parameter stepping >>> my_instruction.stepOn()
(self)
| 693 | return |
| 694 | |
| 695 | def stepOn(self): |
| 696 | """ |
| 697 | Enables parameter stepping. |
| 698 | |
| 699 | Does not change other settings for parameter stepping. |
| 700 | |
| 701 | :Example: |
| 702 | |
| 703 | >>> # Create an instance of the instruction object |
| 704 | >>> my_instr = instruction() |
| 705 | >>> # Enable parameter stepping |
| 706 | >>> my_instruction.stepOn() |
| 707 | """ |
| 708 | self.step = True |
| 709 | return |
| 710 | |
| 711 | def stepOff(self): |
| 712 | """ |
no outgoing calls
no test coverage detected