()
| 626 | # Main program -- for stand-alone operation outside Grail |
| 627 | |
| 628 | def main(): |
| 629 | root = Tk() |
| 630 | demo = SortDemo(root) |
| 631 | root.protocol('WM_DELETE_WINDOW', demo.c_quit) |
| 632 | root.mainloop() |
| 633 | |
| 634 | if __name__ == '__main__': |
| 635 | main() |
no test coverage detected