MCPcopy Index your code
hub / github.com/python/cpython / html_getobj

Function html_getobj

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

Source from the content-addressed store, hash-verified

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(

Callers 1

get_html_pageFunction · 0.85

Calls 3

locateFunction · 0.85
describeFunction · 0.85
documentMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…