(self)
| 333 | self.assert_unchanged(value, "[1, 2, [...]]") |
| 334 | |
| 335 | def test_indirectly_recursive(self): |
| 336 | value = [1, 2] |
| 337 | value.append([value]) |
| 338 | |
| 339 | self.assert_unchanged(value, "[1, 2, [[...]]]") |
| 340 | |
| 341 | |
| 342 | class TestFrozensets(ContainerBase, SafeReprTestBase): |
nothing calls this directly
no test coverage detected