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

Method display

IPython/core/display.py:369–380  ·  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

367 return "<%s display_id=%s>" % (self.__class__.__name__, self.display_id)
368
369 def display(self, obj, **kwargs):
370 """Make a new display with my id, updating existing instances.
371
372 Parameters
373 ----------
374
375 obj:
376 object to display
377 **kwargs:
378 additional keyword arguments passed to display
379 """
380 display(obj, display_id=self.display_id, **kwargs)
381
382 def update(self, obj, **kwargs):
383 """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