Commit 7138b1d2 authored by Stefan Behnel's avatar Stefan Behnel

Py3 test fix

parent d10bcdbb
...@@ -4,11 +4,11 @@ class C: ...@@ -4,11 +4,11 @@ class C:
>>> C().xxx(5) >>> C().xxx(5)
5 5
>>> C().xxx() >>> C().xxx()
u'a b' 'a b'
>>> C().xxx(42) >>> C().xxx(42)
42 42
>>> C().xxx() == 'a b' >>> C().xxx()
True 'a b'
""" """
def xxx(self, p=u"a b"): def xxx(self, p="a b"):
return p return p
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment