summaryrefslogtreecommitdiff
path: root/tests/run/cpp_classes.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run/cpp_classes.pyx')
-rw-r--r--tests/run/cpp_classes.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run/cpp_classes.pyx b/tests/run/cpp_classes.pyx
index d2babdac3..1a1110b91 100644
--- a/tests/run/cpp_classes.pyx
+++ b/tests/run/cpp_classes.pyx
@@ -9,7 +9,7 @@ cdef extern from "shapes.h" namespace "shapes":
float area()
cdef cppclass Ellipse(Shape):
- Ellipse(int a, int b) nogil except +
+ Ellipse(int a, int b) except + nogil
cdef cppclass Circle(Ellipse):
int radius