MCPcopy Index your code
hub / github.com/ipython/ipython / outputs

Method outputs

IPython/utils/capture.py:107–117  ·  view source on GitHub ↗

A list of the captured rich display outputs, if any. If you have a CapturedIO object ``c``, these can be displayed in IPython using:: from IPython.display import display for o in c.outputs: display(o)

(self)

Source from the content-addressed store, hash-verified

105
106 @property
107 def outputs(self):
108 """A list of the captured rich display outputs, if any.
109
110 If you have a CapturedIO object ``c``, these can be displayed in IPython
111 using::
112
113 from IPython.display import display
114 for o in c.outputs:
115 display(o)
116 """
117 return [ RichOutput(**kargs) for kargs in self._outputs ]
118
119 def show(self):
120 """write my output to sys.stdout/err as appropriate"""

Callers

nothing calls this directly

Calls 1

RichOutputClass · 0.85

Tested by

no test coverage detected