eric6/Debugger/DebugServer.py

branch
multi_processing
changeset 7407
a0b6acee2c20
parent 7392
b6674724612a
child 7408
0d58e708f57b
equal deleted inserted replaced
7405:bf6be3cff6cf 7407:a0b6acee2c20
963 @keyparam enableCallTrace flag indicating to enable the call trace 963 @keyparam enableCallTrace flag indicating to enable the call trace
964 function 964 function
965 @type bool 965 @type bool
966 """ 966 """
967 self.__autoClearShell = autoClearShell 967 self.__autoClearShell = autoClearShell
968 self.__autoContinue = autoContinue
969 968
970 if clientType not in self.getSupportedLanguages(): 969 if clientType not in self.getSupportedLanguages():
971 # a not supported client language was requested 970 # a not supported client language was requested
972 E5MessageBox.critical( 971 E5MessageBox.critical(
973 None, 972 None,
1474 Public slot to get the a list of possible commandline completions 1473 Public slot to get the a list of possible commandline completions
1475 from the remote client. 1474 from the remote client.
1476 1475
1477 @param text the text to be completed (string) 1476 @param text the text to be completed (string)
1478 """ 1477 """
1478 # TODO: send this to the currently selected debugger
1479 self.debuggerInterface.remoteCompletion(text) 1479 self.debuggerInterface.remoteCompletion(text)
1480 1480
1481 def remoteUTDiscover(self, clientType, forProject, venvName, syspath, 1481 def remoteUTDiscover(self, clientType, forProject, venvName, syspath,
1482 workdir, discoveryStart): 1482 workdir, discoveryStart):
1483 """ 1483 """

eric ide

mercurial