()
| 43 | |
| 44 | |
| 45 | def example(): |
| 46 | from tkinter.constants import END |
| 47 | |
| 48 | stext = ScrolledText(bg='white', height=10) |
| 49 | stext.insert(END, __doc__) |
| 50 | stext.pack(fill=BOTH, side=LEFT, expand=True) |
| 51 | stext.focus_set() |
| 52 | stext.mainloop() |
| 53 | |
| 54 | |
| 55 | if __name__ == "__main__": |
no test coverage detected
searching dependent graphs…