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

Method __init__

IPython/core/displayhook.py:315–319  ·  view source on GitHub ↗
(self, shell, outputs=None)

Source from the content-addressed store, hash-verified

313
314class CapturingDisplayHook(object):
315 def __init__(self, shell, outputs=None):
316 self.shell = shell
317 if outputs is None:
318 outputs = []
319 self.outputs = outputs
320
321 def __call__(self, result=None):
322 if result is None:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected