(url)
| 2650 | ''.join((heading, contents, xrefs))) |
| 2651 | |
| 2652 | def html_getobj(url): |
| 2653 | obj = locate(url, forceload=1) |
| 2654 | if obj is None and url != 'None': |
| 2655 | raise ValueError('could not find object') |
| 2656 | title = describe(obj) |
| 2657 | content = html.document(obj, url) |
| 2658 | return title, content |
| 2659 | |
| 2660 | def html_error(url, exc): |
| 2661 | heading = html.heading( |
no test coverage detected