| 811 | return '<' + ', '.join(map(str, self.values)) + '>' |
| 812 | |
| 813 | class MyContainer3: |
| 814 | def __repr__(self): |
| 815 | 'Test document content' |
| 816 | pass |
| 817 | wrapped = __repr__ |
| 818 | wrapper = recursive_repr()(wrapped) |
| 819 | |
| 820 | class TestRecursiveRepr(unittest.TestCase): |
| 821 | def test_recursive_repr(self): |
nothing calls this directly
no test coverage detected
searching dependent graphs…