MCPcopy Index your code
hub / github.com/RustPython/RustPython / html_getobj

Function html_getobj

Lib/pydoc.py:2652–2658  ·  view source on GitHub ↗
(url)

Source from the content-addressed store, hash-verified

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(

Callers 1

get_html_pageFunction · 0.85

Calls 3

locateFunction · 0.85
describeFunction · 0.85
documentMethod · 0.80

Tested by

no test coverage detected