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