Check that whos is protected against objects where repr() fails.
()
| 598 | """ |
| 599 | |
| 600 | def test_whos(): |
| 601 | """Check that whos is protected against objects where repr() fails.""" |
| 602 | class A(object): |
| 603 | def __repr__(self): |
| 604 | raise Exception() |
| 605 | _ip.user_ns['a'] = A() |
| 606 | _ip.magic("whos") |
| 607 | |
| 608 | def doctest_precision(): |
| 609 | """doctest for %precision |