projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
42a2004
)
test fix
author
Stefan Behnel
<scoder@users.berlios.de>
Thu, 15 May 2008 09:36:04 +0000
(11:36 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Thu, 15 May 2008 09:36:04 +0000
(11:36 +0200)
tests/run/ct_DEF.pyx
patch
|
blob
|
history
diff --git
a/tests/run/ct_DEF.pyx
b/tests/run/ct_DEF.pyx
index 39e577b96b0b4d99b1c48804f58e4213e4159384..97c80046773613a94f5f96d5345b219d9c8609fa 100644
(file)
--- a/
tests/run/ct_DEF.pyx
+++ b/
tests/run/ct_DEF.pyx
@@
-16,7
+16,7
@@
__doc__ = u"""
>>> f()
12.5
>>> s()
-
u
'spam'
+
b
'spam'
>>> two()
2
>>> five()
@@
-28,8
+28,8
@@
__doc__ = u"""
"""
import sys
-if sys.version_info[0]
>=
3:
- __doc__ = __doc__.replace(u"
u
'", u" '")
+if sys.version_info[0]
<
3:
+ __doc__ = __doc__.replace(u"
b
'", u" '")
import sys
if sys.version_info[0] >= 3:
@@
-46,7
+46,7
@@
DEF INT3 = 042
DEF INT4 = -0x42
DEF LONG = 666L
DEF FLOAT = 12.5
-DEF STR =
u
"spam"
+DEF STR = "spam"
DEF TWO = TUPLE[1]
DEF FIVE = TWO + 3
DEF TRUE = TRUE_FALSE[0]