From: Stefan Behnel Date: Sat, 21 Feb 2009 17:15:17 +0000 (+0100) Subject: Py3 test fix X-Git-Tag: 0.11.rc~66 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ff1a493aaa3a8dff307fd4833ca184935ceff6b5;p=cython.git Py3 test fix --- diff --git a/tests/run/delete.pyx b/tests/run/delete.pyx index b6cc2c0f..96196745 100644 --- a/tests/run/delete.pyx +++ b/tests/run/delete.pyx @@ -15,4 +15,4 @@ class A: def g(self): self.a = 3 del self.a - return (hasattr(self, "a"), hasattr(self, "g")) + return (hasattr(self, u"a"), hasattr(self, u"g"))