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

Class DummyRepr

IPython/core/tests/test_interactiveshell.py:847–855  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

845
846
847class DummyRepr(object):
848 def __repr__(self):
849 return "DummyRepr"
850
851 def _repr_html_(self):
852 return "<b>dummy</b>"
853
854 def _repr_javascript_(self):
855 return "console.log('hi');", {'key': 'value'}
856
857
858def test_user_variables():

Callers 1

test_user_variablesFunction · 0.85

Calls

no outgoing calls

Tested by 1

test_user_variablesFunction · 0.68