@rtype: int @return: Value of the program counter register.
(self)
| 630 | if win32.arch in (win32.ARCH_I386, win32.ARCH_AMD64): |
| 631 | |
| 632 | def get_pc(self): |
| 633 | """ |
| 634 | @rtype: int |
| 635 | @return: Value of the program counter register. |
| 636 | """ |
| 637 | context = self.get_context(win32.CONTEXT_CONTROL) |
| 638 | return context.pc |
| 639 | |
| 640 | def set_pc(self, pc): |
| 641 | """ |
no test coverage detected