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

Method update

IPython/core/display.py:382–393  ·  view source on GitHub ↗

Update existing displays with my id Parameters ---------- obj: object to display **kwargs: additional keyword arguments passed to update_display

(self, obj, **kwargs)

Source from the content-addressed store, hash-verified

380 display(obj, display_id=self.display_id, **kwargs)
381
382 def update(self, obj, **kwargs):
383 """Update existing displays with my id
384
385 Parameters
386 ----------
387
388 obj:
389 object to display
390 **kwargs:
391 additional keyword arguments passed to update_display
392 """
393 update_display(obj, display_id=self.display_id, **kwargs)
394
395
396def display_pretty(*objs, **kwargs):

Callers 1

test_display_handleFunction · 0.95

Calls 1

update_displayFunction · 0.85

Tested by 1

test_display_handleFunction · 0.76