(self, iterator, container)
| 2008 | class TestGC(unittest.TestCase): |
| 2009 | |
| 2010 | def makecycle(self, iterator, container): |
| 2011 | container.append(iterator) |
| 2012 | next(iterator) |
| 2013 | del container, iterator |
| 2014 | |
| 2015 | def test_accumulate(self): |
| 2016 | a = [] |
no test coverage detected