| 982 | |
| 983 | |
| 984 | class DummyRepr(object): |
| 985 | def __repr__(self): |
| 986 | return "DummyRepr" |
| 987 | |
| 988 | def _repr_html_(self): |
| 989 | return "<b>dummy</b>" |
| 990 | |
| 991 | def _repr_javascript_(self): |
| 992 | return "console.log('hi');", {"key": "value"} |
| 993 | |
| 994 | |
| 995 | def test_user_variables(): |
no outgoing calls
searching dependent graphs…