diff -r d07dd3cf0dc3 -r 1ba8ee313b57 Debugger/DebugServer.py --- a/Debugger/DebugServer.py Thu Sep 01 18:28:27 2016 +0200 +++ b/Debugger/DebugServer.py Thu Sep 01 19:00:46 2016 +0200 @@ -1125,24 +1125,6 @@ """ self.debuggerInterface.setCallTraceEnabled(on) - def remoteEval(self, arg): - """ - Public method to evaluate arg in the current context of the debugged - program. - - @param arg the arguments to evaluate (string) - """ - self.debuggerInterface.remoteEval(arg) - - def remoteExec(self, stmt): - """ - Public method to execute stmt in the current context of the debugged - program. - - @param stmt statement to execute (string) - """ - self.debuggerInterface.remoteExec(stmt) - def remoteBanner(self): """ Public slot to get the banner info of the remote client.