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

Method display

IPython/core/display_functions.py:332–342  ·  view source on GitHub ↗

Make a new display with my id, updating existing instances. Parameters ---------- obj object to display **kwargs additional keyword arguments passed to display

(self, obj, **kwargs)

Source from the content-addressed store, hash-verified

330 return "<%s display_id=%s>" % (self.__class__.__name__, self.display_id)
331
332 def display(self, obj, **kwargs):
333 """Make a new display with my id, updating existing instances.
334
335 Parameters
336 ----------
337 obj
338 object to display
339 **kwargs
340 additional keyword arguments passed to display
341 """
342 display(obj, display_id=self.display_id, **kwargs)
343
344 def update(self, obj, **kwargs):
345 """Update existing displays with my id

Callers 1

test_display_handleFunction · 0.95

Calls 1

displayFunction · 0.70

Tested by 1

test_display_handleFunction · 0.76