Exemple #1
0
    def GetThread(self):
        """ Returns the thread associated with this stack frame.

        Result must be a IDebugApplicationThread
        """
        RaiseNotImpl("GetThread")
Exemple #2
0
 def GetParent(self):
     # return IDebugProperty
     RaiseNotImpl("DebugProperty::GetParent")
Exemple #3
0
 def SetValueAsString(self, value, radix):
     #
     RaiseNotImpl("DebugProperty::SetValueAsString")
Exemple #4
0
 def GetExtendedInfo(self):  ### Note - not in the framework.
     RaiseNotImpl("StackFrameDebugProperty::GetExtendedInfo")
Exemple #5
0
 def GetPropertyInfo(self, dwFieldSpec, nRadix):
     RaiseNotImpl("StackFrameDebugProperty::GetPropertyInfo")
Exemple #6
0
 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")