MCPcopy Index your code
hub / github.com/python/cpython / help

Method help

Lib/idlelib/configdialog.py:201–211  ·  view source on GitHub ↗

Create textview for config dialog help. Attributes accessed: note Methods: view_text: Method from textview module.

(self)

Source from the content-addressed store, hash-verified

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."""

Calls 5

view_textFunction · 0.90
tabMethod · 0.80
stripMethod · 0.45
selectMethod · 0.45
getMethod · 0.45