'fix' stupid test
authorStefan Behnel <scoder@users.berlios.de>
Fri, 14 May 2010 20:13:17 +0000 (22:13 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Fri, 14 May 2010 20:13:17 +0000 (22:13 +0200)
tests/run/trybreak.pyx

index 50896ca88f5f7e26efc19353f3c91bf7a40139aa..3db9c7ec2ea35f322e98e30c82135fb86069a065 100644 (file)
@@ -5,12 +5,12 @@ a
 
 # Indirectly makes sure the cleanup happens correctly on breaking.
 def foo():
-    for x in u"abc":
+    for x in "abc":
         try:
             x()
         except:
             break
-    for x in u"abc":
+    for x in "abc":
         try:
             x()
         except: