src/eric7/Debugger/DebugServer.py

branch
server
changeset 10597
fbe93720ee9f
parent 10566
25330d3ea3af
child 10651
280a53840aa3
equal deleted inserted replaced
10596:ea35c92a3c7c 10597:fbe93720ee9f
495 forProject=False, 495 forProject=False,
496 runInConsole=False, 496 runInConsole=False,
497 venvName="", 497 venvName="",
498 workingDir="", 498 workingDir="",
499 configOverride=None, 499 configOverride=None,
500 startRemote=None 500 startRemote=None,
501 ): 501 ):
502 """ 502 """
503 Public method to start a debug client. 503 Public method to start a debug client.
504 504
505 @param unplanned flag indicating that the client has died (defaults to True) 505 @param unplanned flag indicating that the client has died (defaults to True)
743 743
744 if (fn, lineno) in self.__reportedBreakpointIssues: 744 if (fn, lineno) in self.__reportedBreakpointIssues:
745 self.__reportedBreakpointIssues.remove((fn, lineno)) 745 self.__reportedBreakpointIssues.remove((fn, lineno))
746 746
747 if ( 747 if (
748 ( 748 self.__ericServerDebugging
749 self.__ericServerDebugging 749 and FileSystemUtilities.isRemoteFileName(fn)
750 and FileSystemUtilities.isRemoteFileName(fn) 750 ) or (
751 ) 751 not self.__ericServerDebugging
752 or ( 752 and FileSystemUtilities.isPlainFileName(fn)
753 not self.__ericServerDebugging
754 and FileSystemUtilities.isPlainFileName(fn)
755 )
756 ): 753 ):
757 self.remoteBreakpoint(debuggerId, fn, lineno, True, cond, temp) 754 self.remoteBreakpoint(debuggerId, fn, lineno, True, cond, temp)
758 if not enabled: 755 if not enabled:
759 self.__remoteBreakpointEnable(debuggerId, fn, lineno, False) 756 self.__remoteBreakpointEnable(debuggerId, fn, lineno, False)
760 if ignorecount: 757 if ignorecount:

eric ide

mercurial