projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d10bcdb
)
Py3 test fix
author
Stefan Behnel
<scoder@users.berlios.de>
Fri, 30 Oct 2009 12:51:28 +0000
(13:51 +0100)
committer
Stefan Behnel
<scoder@users.berlios.de>
Fri, 30 Oct 2009 12:51:28 +0000
(13:51 +0100)
tests/run/ishimoto2.pyx
patch
|
blob
|
history
diff --git
a/tests/run/ishimoto2.pyx
b/tests/run/ishimoto2.pyx
index 1e2d43a0b062b455f8d55d4d875561c6ba63cafe..18d79f6cf4572f19c9e228544b57dd0810759dd9 100644
(file)
--- 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