(url)
| 2602 | ''.join((heading, contents, xrefs))) |
| 2603 | |
| 2604 | def html_getobj(url): |
| 2605 | obj = locate(url, forceload=1) |
| 2606 | if obj is None and url != 'None': |
| 2607 | raise ValueError('could not find object') |
| 2608 | title = describe(obj) |
| 2609 | content = html.document(obj, url) |
| 2610 | return title, content |
| 2611 | |
| 2612 | def html_error(url, exc): |
| 2613 | heading = html.heading( |
no test coverage detected
searching dependent graphs…