From 36ec46b3e26fe306a16a4686f51cd76e99c35df1 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Mon, 15 May 2017 04:49:32 +0200 Subject: [PATCH] Re-equipped manga.lib.cursor with iteration ability. --- manga/lib.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/manga/lib.py b/manga/lib.py index 54bcb77..8cc96cb 100644 --- a/manga/lib.py +++ b/manga/lib.py @@ -206,6 +206,9 @@ class cursor(object): return self.cur raise StopIteration() + def __next__(self): + return self.next() + def prev(self): for n, i in reversed(self.cur.stack): if i > 0: -- 2.11.0