MCPcopy Create free account
hub / github.com/ipython/ipython / __init__

Method __init__

IPython/utils/capture.py:17–21  ·  view source on GitHub ↗
(self, data=None, metadata=None, transient=None, update=False)

Source from the content-addressed store, hash-verified

15
16class RichOutput(object):
17 def __init__(self, data=None, metadata=None, transient=None, update=False):
18 self.data = data or {}
19 self.metadata = metadata or {}
20 self.transient = transient or {}
21 self.update = update
22
23 def display(self):
24 from IPython.display import publish_display_data

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected