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

Function callback

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

Source from the content-addressed store, hash-verified

2271def apropos(key):
2272 """Print all the one-line module summaries that contain a substring."""
2273 def callback(path, modname, desc):
2274 if modname[-9:] == '.__init__':
2275 modname = modname[:-9] + ' (package)'
2276 print(modname, desc and '- ' + desc)
2277 def onerror(modname):
2278 pass
2279 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
find_stores_in_tokensFunction · 0.50

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…