def GetThread(self): """ Returns the thread associated with this stack frame. Result must be a IDebugApplicationThread """ RaiseNotImpl("GetThread")
def GetParent(self): # return IDebugProperty RaiseNotImpl("DebugProperty::GetParent")
def SetValueAsString(self, value, radix): # RaiseNotImpl("DebugProperty::SetValueAsString")
def GetExtendedInfo(self): ### Note - not in the framework. RaiseNotImpl("StackFrameDebugProperty::GetExtendedInfo")
def GetPropertyInfo(self, dwFieldSpec, nRadix): RaiseNotImpl("StackFrameDebugProperty::GetPropertyInfo")
def SetValueAsString(self, value, radix): if self.stackFrame and self.dictionary: self.dictionary[self.name]= eval(value,self.stackFrame.f_globals, self.stackFrame.f_locals) else: RaiseNotImpl("DebugProperty::SetValueAsString")