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