Starting point when module is the main routine.
()
| 22 | |
| 23 | |
| 24 | def vp_start_gui(): |
| 25 | """Starting point when module is the main routine.""" |
| 26 | global val, w, root |
| 27 | root = Tk() |
| 28 | root.resizable(False, False) |
| 29 | top = Notepads_managment(root) |
| 30 | notepad_support.init(root, top) |
| 31 | root.mainloop() |
| 32 | |
| 33 | |
| 34 | w = None |
no test coverage detected