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

Class HelpWindow

Lib/idlelib/help.py:239–248  ·  view source on GitHub ↗

Display frame with rendered html.

Source from the content-addressed store, hash-verified

237
238
239class HelpWindow(Toplevel):
240 "Display frame with rendered html."
241 def __init__(self, parent, filename, title):
242 Toplevel.__init__(self, parent)
243 self.wm_title(title)
244 self.protocol("WM_DELETE_WINDOW", self.destroy)
245 self.frame = HelpFrame(self, filename)
246 self.frame.grid(column=0, row=0, sticky='nsew')
247 self.grid_columnconfigure(0, weight=1)
248 self.grid_rowconfigure(0, weight=1)
249
250
251def copy_strip(): # pragma: no cover

Callers 1

show_idlehelpFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…