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

Function update_display

IPython/core/display_functions.py:291–306  ·  view source on GitHub ↗

Update an existing display by id Parameters ---------- obj The object with which to update the display display_id : keyword-only The id of the display to update See Also -------- :func:`display`

(obj, *, display_id, **kwargs)

Source from the content-addressed store, hash-verified

289
290# use * for keyword-only display_id arg
291def update_display(obj, *, display_id, **kwargs):
292 """Update an existing display by id
293
294 Parameters
295 ----------
296 obj
297 The object with which to update the display
298 display_id : keyword-only
299 The id of the display to update
300
301 See Also
302 --------
303 :func:`display`
304 """
305 kwargs['update'] = True
306 display(obj, display_id=display_id, **kwargs)
307
308
309class DisplayHandle:

Callers 1

updateMethod · 0.85

Calls 1

displayFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…