Commit 8be7e855 authored by Stefan Behnel's avatar Stefan Behnel

'fix' stupid test

parent 99c1309f
...@@ -5,12 +5,12 @@ a ...@@ -5,12 +5,12 @@ a
# Indirectly makes sure the cleanup happens correctly on breaking. # Indirectly makes sure the cleanup happens correctly on breaking.
def foo(): def foo():
for x in u"abc": for x in "abc":
try: try:
x() x()
except: except:
break break
for x in u"abc": for x in "abc":
try: try:
x() x()
except: except:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment