| 197 | |
| 198 | |
| 199 | class ReallyBadRepr(object): |
| 200 | __module__ = 1 |
| 201 | |
| 202 | @property |
| 203 | def __class__(self): |
| 204 | raise ValueError("I am horrible") |
| 205 | |
| 206 | def __repr__(self): |
| 207 | raise BadException() |
| 208 | |
| 209 | |
| 210 | def test_really_bad_repr(): |
no outgoing calls
searching dependent graphs…