(self)
| 200 | |
| 201 | @infinite_recursion(25) |
| 202 | def testRecursiveRepr(self): |
| 203 | # Issue #25455 |
| 204 | with swap_attr(self.f, 'name', self.f): |
| 205 | with self.assertRaises(RuntimeError): |
| 206 | repr(self.f) # Should not crash |
| 207 | |
| 208 | def testErrors(self): |
| 209 | f = self.f |
nothing calls this directly
no test coverage detected