DEBSOURCES
Skip Quicknav
sources / python-roundrobin / 0.0.4-3 / roundrobin / basic_rr.py
12345678910
from itertools import cycle def basic(dataset): iterator = cycle(dataset) def get_next(): return next(iterator) return get_next