(path, modname, desc)
| 2271 | def 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(): |
no test coverage detected
searching dependent graphs…