Py3 test fixes
authorStefan Behnel <scoder@users.berlios.de>
Sun, 20 Jul 2008 19:14:00 +0000 (21:14 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Sun, 20 Jul 2008 19:14:00 +0000 (21:14 +0200)
tests/run/flatin.pyx
tests/run/withstat.pyx

index 58ca047e17b6f22796ca52be6855e7d3e9808d0a..471f300f149fca492c09ea0cebabcc753c11ee2f 100644 (file)
@@ -23,9 +23,9 @@ __doc__ = u"""
 """
 
 def test_in(s):
-    if s in ('ABC', 'BCD'):
+    if s in (u'ABC', u'BCD'):
         return 1
-    elif s.upper() in ('ABC', 'BCD'):
+    elif s.upper() in (u'ABC', u'BCD'):
         return 2
     elif len(s) in (1,2):
         return 3
@@ -35,9 +35,9 @@ def test_in(s):
         return 5
 
 def test_not_in(s):
-    if s not in ('ABC', 'BCD', 'CDE', 'CDEF'):
+    if s not in (u'ABC', u'BCD', u'CDE', u'CDEF'):
         return 1
-    elif s.upper() not in ('ABC', 'BCD', 'CDEF'):
+    elif s.upper() not in (u'ABC', u'BCD', u'CDEF'):
         return 2
     elif len(s) not in [3]:
         return 3
index f44b0c288b3906662dde5daded7c346322a0d9e8..4d08c9f2739e9aa8eee5aacf928c8645e60b4c34 100644 (file)
@@ -49,20 +49,20 @@ class ContextManager:
         return self.value
 
 def no_as():
-    with ContextManager("value"):
-        print "hello"
+    with ContextManager(u"value"):
+        print u"hello"
         
 def basic():
-    with ContextManager("value") as x:
+    with ContextManager(u"value") as x:
         print x
 
 def with_exception(exit_ret):
     try:
-        with ContextManager("value", exit_ret=exit_ret) as value:
+        with ContextManager(u"value", exit_ret=exit_ret) as value:
             print value
             raise MyException()
     except:
-        print "outer except"
+        print u"outer except"
 
 def multitarget():
     with ContextManager((1, 2, (3, (4, 5)))) as (a, b, (c, (d, e))):