Py3 test fix
authorStefan Behnel <scoder@users.berlios.de>
Fri, 30 Oct 2009 12:51:28 +0000 (13:51 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Fri, 30 Oct 2009 12:51:28 +0000 (13:51 +0100)
tests/run/ishimoto2.pyx

index 1e2d43a0b062b455f8d55d4d875561c6ba63cafe..18d79f6cf4572f19c9e228544b57dd0810759dd9 100644 (file)
@@ -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