Create textview for config dialog help. Attributes accessed: note Methods: view_text: Method from textview module.
(self)
| 199 | super().destroy() |
| 200 | |
| 201 | def help(self): |
| 202 | """Create textview for config dialog help. |
| 203 | |
| 204 | Attributes accessed: |
| 205 | note |
| 206 | Methods: |
| 207 | view_text: Method from textview module. |
| 208 | """ |
| 209 | page = self.note.tab(self.note.select(), option='text').strip() |
| 210 | view_text(self, title='Help for IDLE preferences', |
| 211 | contents=help_common+help_pages.get(page, '')) |
| 212 | |
| 213 | def deactivate_current_config(self): |
| 214 | """Remove current key bindings in current windows.""" |