From bdfd5713e594fdbfc80dc0e85efba00ea82e2246 Mon Sep 17 00:00:00 2001 From: Vitja Makarov Date: Sat, 11 Dec 2010 00:25:07 +0300 Subject: [PATCH] Fix py3k support --- tests/run/generators.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run/generators.pyx b/tests/run/generators.pyx index dca2b86a..0abd298d 100644 --- a/tests/run/generators.pyx +++ b/tests/run/generators.pyx @@ -93,7 +93,7 @@ def test_close(): >>> x = test_close() >>> next(x) >>> x.close() - >>> x.next() + >>> next(x) Traceback (most recent call last): StopIteration """ -- 2.26.2