MCPcopy Index your code
hub / github.com/pywebio/PyWebIO / append

Method append

pywebio/output.py:1873–1879  ·  view source on GitHub ↗
(self, *outputs)

Source from the content-addressed store, hash-verified

1871
1872 @safely_destruct_output_when_exp('outputs')
1873 def append(self, *outputs):
1874 for o in outputs:
1875 if not isinstance(o, Output):
1876 o = put_text(o)
1877 o.spec['scope'] = scope2dom(self.scope)
1878 o.spec['position'] = OutputPosition.BOTTOM
1879 o.send()
1880
1881 @safely_destruct_output_when_exp('outputs')
1882 def insert(self, idx, *outputs):

Callers 15

resetMethod · 0.95
basic_outputFunction · 0.80
check_itemFunction · 0.80
handle_messageMethod · 0.80
create_elementMethod · 0.80
make_progressMethod · 0.80
handle_messageMethod · 0.80
handle_output_ctlMethod · 0.80
handle_messageMethod · 0.80
output.tsFile · 0.80
parseHtmlFunction · 0.80
getWidgetElementFunction · 0.80

Calls 3

put_textFunction · 0.85
scope2domFunction · 0.85
sendMethod · 0.80

Tested by

no test coverage detected