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: |