From: Stefan Behnel Date: Tue, 30 Dec 2008 12:01:17 +0000 (+0100) Subject: Py3 test case fix X-Git-Tag: 0.11-beta~58 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=bf6946d429bb3d0cd3c42e08d80c386747a2ca32;p=cython.git Py3 test case fix --- diff --git a/tests/run/nonecheck.pyx b/tests/run/nonecheck.pyx index 96dd49c8..e1b3ed76 100644 --- a/tests/run/nonecheck.pyx +++ b/tests/run/nonecheck.pyx @@ -71,7 +71,7 @@ def checking(MyClass var): if var is not None: print var.a else: - print "var is None" + print u"var is None" @cython.nonecheck(True) def check_and_assign(MyClass var):