()
| 283 | text.focus_set() |
| 284 | |
| 285 | def show_replace(): |
| 286 | text.tag_add(SEL, "1.0", END) |
| 287 | replace(text) |
| 288 | text.tag_remove(SEL, "1.0", END) |
| 289 | |
| 290 | button = Button(frame, text="Replace", command=show_replace) |
| 291 | button.pack() |
nothing calls this directly
no test coverage detected
searching dependent graphs…