From: Vitja Makarov Date: Fri, 10 Dec 2010 21:25:07 +0000 (+0300) Subject: Fix py3k support X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=bdfd5713e594fdbfc80dc0e85efba00ea82e2246;p=cython.git Fix py3k support --- 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 """