From: Stefan Behnel Date: Fri, 30 Oct 2009 12:51:28 +0000 (+0100) Subject: Py3 test fix X-Git-Tag: 0.12.alpha0~8^2~9 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7138b1d2a06586d698c0972639f8fea37a62298a;p=cython.git Py3 test fix --- diff --git a/tests/run/ishimoto2.pyx b/tests/run/ishimoto2.pyx index 1e2d43a0..18d79f6c 100644 --- a/tests/run/ishimoto2.pyx +++ b/tests/run/ishimoto2.pyx @@ -4,11 +4,11 @@ class C: >>> C().xxx(5) 5 >>> C().xxx() - u'a b' + 'a b' >>> C().xxx(42) 42 - >>> C().xxx() == 'a b' - True + >>> C().xxx() + 'a b' """ - def xxx(self, p=u"a b"): + def xxx(self, p="a b"): return p