projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6cc6160
)
fix testcase
author
Lisandro Dalcin
<dalcinl@gmail.com>
Wed, 28 Apr 2010 19:29:02 +0000
(16:29 -0300)
committer
Lisandro Dalcin
<dalcinl@gmail.com>
Wed, 28 Apr 2010 19:29:02 +0000
(16:29 -0300)
tests/errors/compile_time_unraisable_T370.pyx
patch
|
blob
|
history
diff --git
a/tests/errors/compile_time_unraisable_T370.pyx
b/tests/errors/compile_time_unraisable_T370.pyx
index 8434505632cb2f9c8f2886868c3f13562d2f0213..6a6c903d733f165812a8a544ac42410c28802e29 100644
(file)
--- a/
tests/errors/compile_time_unraisable_T370.pyx
+++ b/
tests/errors/compile_time_unraisable_T370.pyx
@@
-1,7
+1,9
@@
cdef int raiseit():
raise IndexError
-if False: raiseit()
+
+try: raiseit()
+except: pass
_ERRORS = u"""
FIXME: provide a good error message here.