Starting point when module is imported by another program.
(root, *args, **kwargs)
| 35 | |
| 36 | |
| 37 | def create_Notepads_managment(root, *args, **kwargs): |
| 38 | """Starting point when module is imported by another program.""" |
| 39 | global w, w_win, rt |
| 40 | rt = root |
| 41 | w = Toplevel(root) |
| 42 | top = Notepads_managment(w) |
| 43 | notepad_support.init(w, top, *args, **kwargs) |
| 44 | return (w, top) |
| 45 | |
| 46 | |
| 47 | def destroy_Notepads_managment(): |
nothing calls this directly
no test coverage detected