projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
99c1309
)
'fix' stupid test
author
Stefan Behnel
<scoder@users.berlios.de>
Fri, 14 May 2010 20:13:17 +0000
(22:13 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Fri, 14 May 2010 20:13:17 +0000
(22:13 +0200)
tests/run/trybreak.pyx
patch
|
blob
|
history
diff --git
a/tests/run/trybreak.pyx
b/tests/run/trybreak.pyx
index 50896ca88f5f7e26efc19353f3c91bf7a40139aa..3db9c7ec2ea35f322e98e30c82135fb86069a065 100644
(file)
--- a/
tests/run/trybreak.pyx
+++ b/
tests/run/trybreak.pyx
@@
-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: