Home | History | Annotate | Download | only in test

Lines Matching refs:roundrobin

1522 >>> def roundrobin(*iterables):
1523 ... "roundrobin('ABC', 'D', 'EF') --> A D E B F C"
1617 >>> list(roundrobin('abc', 'd', 'ef'))