| 1419 | self.ctip.remove_calltip_window() |
| 1420 | |
| 1421 | def write(self, s, tags=()): |
| 1422 | try: |
| 1423 | self.text.mark_gravity("iomark", "right") |
| 1424 | count = OutputWindow.write(self, s, tags, "iomark") |
| 1425 | self.text.mark_gravity("iomark", "left") |
| 1426 | except: |
| 1427 | raise ###pass # ### 11Aug07 KBK if we are expecting exceptions |
| 1428 | # let's find out what they are and be specific. |
| 1429 | if self.canceled: |
| 1430 | self.canceled = False |
| 1431 | if not use_subprocess: |
| 1432 | raise KeyboardInterrupt |
| 1433 | return count |
| 1434 | |
| 1435 | def rmenu_check_cut(self): |
| 1436 | try: |