(doc)
| 333 | return output.strip(), loc |
| 334 | |
| 335 | def clean_text(doc): |
| 336 | # clean up the extra text formatting that pydoc performs |
| 337 | return re.sub('\b.', '', doc) |
| 338 | |
| 339 | def get_pydoc_link(module): |
| 340 | "Returns a documentation web link of a module" |
no test coverage detected
searching dependent graphs…