Py3 test fixes
authorStefan Behnel <scoder@users.berlios.de>
Fri, 21 Aug 2009 11:59:25 +0000 (13:59 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Fri, 21 Aug 2009 11:59:25 +0000 (13:59 +0200)
tests/run/ct_DEF.pyx

index 540f7ebc1021c3ffd06def2068346f8a0fce36fc..1f64106e08e0fb604edec9ce59f9e22be91e0f19 100644 (file)
@@ -7,9 +7,7 @@ __doc__ = u"""
     True
     >>> i2() == 0x42
     True
-    >>> i3() == 042
-    True
-    >>> i4() == -0x42
+    >>> i3() == -0x42
     True
     >>> l()
     666
@@ -30,9 +28,7 @@ __doc__ = u"""
 import sys
 if sys.version_info[0] < 3:
     __doc__ = __doc__.replace(u" b'", u" '")
-
-import sys
-if sys.version_info[0] >= 3:
+else:
     __doc__ = __doc__.replace(u" 042", u" 0o42")
 
 DEF TUPLE = (1, 2, u"buckle my shoe")
@@ -42,8 +38,7 @@ DEF CHAR = c'x'
 DEF INT0 = -1
 DEF INT1 = 42
 DEF INT2 = 0x42
-DEF INT3 = 042
-DEF INT4 = -0x42
+DEF INT3 = -0x42
 DEF LONG = 666L
 DEF FLOAT = 12.5
 DEF STR = "spam"
@@ -79,11 +74,6 @@ def i3():
     i = INT3
     return i
 
-def i4():
-    cdef int i
-    i = INT4
-    return i
-
 def l():
     cdef long l
     l = LONG