(self)
| 1057 | return self.ExceptionSP() |
| 1058 | |
| 1059 | def StackBottom(self): |
| 1060 | exception_thread = self.ExceptionThread() |
| 1061 | return exception_thread.stack.start + \ |
| 1062 | exception_thread.stack.memory.data_size |
| 1063 | |
| 1064 | def FormatIntPtr(self, value): |
| 1065 | if self.Is64(): |
no test coverage detected