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

Py3 test fix

parent d10bcdbb
......@@ -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
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