888 """ |
888 """ |
889 # send debugger ID with all responses |
889 # send debugger ID with all responses |
890 if "debuggerId" not in params: |
890 if "debuggerId" not in params: |
891 params["debuggerId"] = self.__debuggerId |
891 params["debuggerId"] = self.__debuggerId |
892 |
892 |
893 cmd = prepareJsonCommand(method, params) |
893 jsonCommand = prepareJsonCommand(method, params) |
894 |
894 |
895 self.writestream.write_p(cmd) |
895 self.writestream.write_p(jsonCommand) |
896 self.writestream.flush() |
896 self.writestream.flush() |
897 |
897 |
898 def sendClearTemporaryBreakpoint(self, filename, lineno): |
898 def sendClearTemporaryBreakpoint(self, filename, lineno): |
899 """ |
899 """ |
900 Public method to signal the deletion of a temporary breakpoint. |
900 Public method to signal the deletion of a temporary breakpoint. |