| 845 | |
| 846 | |
| 847 | class 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 | |
| 858 | def test_user_variables(): |
no outgoing calls