(self, *outputs)
| 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): |
no test coverage detected