(self)
| 2006 | self.makecycle(dropwhile(bool, [0, a, a]), a) |
| 2007 | |
| 2008 | def test_groupby(self): |
| 2009 | a = [] |
| 2010 | self.makecycle(groupby([a]*2, lambda x:x), a) |
| 2011 | |
| 2012 | def test_issue2246(self): |
| 2013 | # Issue 2246 -- the _grouper iterator was not included in GC |