1042 QApplication.processEvents() |
1042 QApplication.processEvents() |
1043 |
1043 |
1044 self.setFocus() |
1044 self.setFocus() |
1045 self.inRawMode = True |
1045 self.inRawMode = True |
1046 self.echoInput = echo |
1046 self.echoInput = echo |
1047 self.__write(s) |
1047 self.__writeQueued(s) |
1048 line, col = self.__getEndPos() |
1048 line, col = self.__getEndPos() |
1049 self.setCursorPosition(line, col) |
1049 self.setCursorPosition(line, col) |
1050 buf = self.text(line) |
1050 buf = self.text(line) |
1051 if buf.startswith(sys.ps1): |
1051 if buf.startswith(sys.ps1): |
1052 buf = buf.replace(sys.ps1, "") |
1052 buf = buf.replace(sys.ps1, "") |