(self, iterator, container)
| 1960 | class TestGC(unittest.TestCase): |
| 1961 | |
| 1962 | def makecycle(self, iterator, container): |
| 1963 | container.append(iterator) |
| 1964 | next(iterator) |
| 1965 | del container, iterator |
| 1966 | |
| 1967 | def test_accumulate(self): |
| 1968 | a = [] |
no test coverage detected