MCPcopy Index your code
hub / github.com/RustPython/RustPython / callback

Function callback

Lib/pydoc.py:2321–2324  ·  view source on GitHub ↗
(path, modname, desc)

Source from the content-addressed store, hash-verified

2319def apropos(key):
2320 """Print all the one-line module summaries that contain a substring."""
2321 def callback(path, modname, desc):
2322 if modname[-9:] == '.__init__':
2323 modname = modname[:-9] + ' (package)'
2324 print(modname, desc and '- ' + desc)
2325 def onerror(modname):
2326 pass
2327 with warnings.catch_warnings():

Callers 11

innerMethod · 0.70
onerrorMethod · 0.70
runMethod · 0.70
retrbinaryMethod · 0.70
retrlinesMethod · 0.70
storbinaryMethod · 0.70
storlinesMethod · 0.70
_cbMethod · 0.70
_exit_wrapperMethod · 0.70
_exit_wrapperMethod · 0.70
do_buttonFunction · 0.50

Calls 2

printFunction · 0.50
appendMethod · 0.45

Tested by

no test coverage detected