Debugger/DebuggerInterfaceNone.py

changeset 481
ad71812ba395
parent 112
16893e193e9d
child 791
9ec2ac20e54e
equal deleted inserted replaced
480:793552e39173 481:ad71812ba395
174 Public method to execute a Python statement. 174 Public method to execute a Python statement.
175 175
176 @param stmt the Python statement to execute (string). It 176 @param stmt the Python statement to execute (string). It
177 should not have a trailing newline. 177 should not have a trailing newline.
178 """ 178 """
179 self.debugServer.clientStatement(False) 179 self.debugServer.signalClientStatement(False)
180 return 180 return
181 181
182 def remoteStep(self): 182 def remoteStep(self):
183 """ 183 """
184 Public method to single step the debugged program. 184 Public method to single step the debugged program.
341 341
342 def remoteBanner(self): 342 def remoteBanner(self):
343 """ 343 """
344 Public slot to get the banner info of the remote client. 344 Public slot to get the banner info of the remote client.
345 """ 345 """
346 self.debugServer.clientBanner("No backend", "", "") 346 self.debugServer.signalClientBanner("No backend", "", "")
347 return 347 return
348 348
349 def remoteCapabilities(self): 349 def remoteCapabilities(self):
350 """ 350 """
351 Public slot to get the debug clients capabilities. 351 Public slot to get the debug clients capabilities.

eric ide

mercurial