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