(self)
| 197 | self.append(text) |
| 198 | |
| 199 | def copy(self): |
| 200 | # TODO: copy to clipboad |
| 201 | if self.target: |
| 202 | self.memory = self.get() |
| 203 | self.label["text"] = "memory: " + self.memory |
| 204 | print(self.memory) |
| 205 | |
| 206 | def paste(self): |
| 207 | # TODO: copy from clipboad |