(self, root=None)
| 100 | return squeezer |
| 101 | |
| 102 | def make_text_widget(self, root=None): |
| 103 | if root is None: |
| 104 | root = get_test_tk_root(self) |
| 105 | text_widget = Text(root) |
| 106 | text_widget["font"] = ('Courier', 10) |
| 107 | text_widget.mark_set("iomark", "1.0") |
| 108 | return text_widget |
| 109 | |
| 110 | def set_idleconf_option_with_cleanup(self, configType, section, option, value): |
| 111 | prev_val = idleConf.GetOption(configType, section, option) |
no test coverage detected