copy text operation
(self)
| 48 | except: pass |
| 49 | |
| 50 | def copy_text(self): |
| 51 | """ copy text operation """ |
| 52 | try: |
| 53 | self.clipboard_clear() |
| 54 | self.clipboard_append(self.widget.get(tkinter.SEL_FIRST, tkinter.SEL_LAST)) |
| 55 | except: pass |
| 56 | |
| 57 | def paste_text(self): |
| 58 | """ paste text operation """ |