我们从Python开源项目中,提取了以下5个代码示例,用于说明如何使用jinja2.utils.Cycler()。
def test_cycler(self): items = 1, 2, 3 c = Cycler(*items) for item in items + items: assert c.current == item assert next(c) == item next(c) assert c.current == 2 c.reset() assert c.current == 1