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

Function show_idlehelp

Lib/idlelib/help.py:288–294  ·  view source on GitHub ↗

Create HelpWindow; called from Idle Help event handler.

(parent)

Source from the content-addressed store, hash-verified

286
287
288def show_idlehelp(parent):
289 "Create HelpWindow; called from Idle Help event handler."
290 filename = join(abspath(dirname(__file__)), 'help.html')
291 if not isfile(filename): # pragma: no cover
292 # Try copy_strip, present message.
293 return
294 return HelpWindow(parent, filename, 'IDLE Doc (%s)' % python_version())
295
296
297def _get_dochome():

Callers

nothing calls this directly

Calls 6

joinFunction · 0.90
abspathFunction · 0.90
dirnameFunction · 0.90
isfileFunction · 0.90
python_versionFunction · 0.90
HelpWindowClass · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…