summaryrefslogtreecommitdiff
path: root/tests/errors/e_excvalfunctype.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/errors/e_excvalfunctype.pyx')
-rw-r--r--tests/errors/e_excvalfunctype.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/errors/e_excvalfunctype.pyx b/tests/errors/e_excvalfunctype.pyx
index a1d978322..25cae47c6 100644
--- a/tests/errors/e_excvalfunctype.pyx
+++ b/tests/errors/e_excvalfunctype.pyx
@@ -1,7 +1,7 @@
# mode: error
ctypedef int (*spamfunc)(int, char *) except 42
-ctypedef int (*grailfunc)(int, char *)
+ctypedef int (*grailfunc)(int, char *) noexcept
cdef grailfunc grail
cdef spamfunc spam