()
| 207 | text.insert('1.0', 'import grep') |
| 208 | |
| 209 | def show_grep_dialog(): |
| 210 | text.tag_add(SEL, "1.0", '1.end') |
| 211 | grep(text, flist=flist) |
| 212 | text.tag_remove(SEL, "1.0", '1.end') |
| 213 | |
| 214 | button = Button(frame, text="Show GrepDialog", command=show_grep_dialog) |
| 215 | button.pack() |
nothing calls this directly
no test coverage detected
searching dependent graphs…