Debugger/DebugServer.py

changeset 2188
82446745442b
parent 2173
c21d1e99015a
child 2302
f29e9405c851
equal deleted inserted replaced
2187:d56d70ed1ac4 2188:82446745442b
987 """ 987 """
988 Public method to set the call trace state. 988 Public method to set the call trace state.
989 989
990 @param on flag indicating to enable the call trace function (boolean) 990 @param on flag indicating to enable the call trace function (boolean)
991 """ 991 """
992 # TODO: remove the try/except once all interface have been adjusted 992 self.debuggerInterface.setCallTraceEnabled(on)
993 try:
994 self.debuggerInterface.setCallTraceEnabled(on)
995 except AttributeError:
996 pass
997 993
998 def remoteEval(self, arg): 994 def remoteEval(self, arg):
999 """ 995 """
1000 Public method to evaluate arg in the current context of the debugged program. 996 Public method to evaluate arg in the current context of the debugged program.
1001 997

eric ide

mercurial