diff pytouhou/ui/opengl/background.pxd @ 606:3c2f96f1d715

Fix compilation under Cython 0.22, by making the pyx and the pxd declarations’ except clause similar.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Wed, 26 Nov 2014 13:36:38 +0100
parents 4b0593da29d5
children a6a191e371c7
line wrap: on
line diff
--- a/pytouhou/ui/opengl/background.pxd
+++ b/pytouhou/ui/opengl/background.pxd
@@ -19,5 +19,5 @@ cdef class BackgroundRenderer:
     cdef GLushort *indices
 
     cdef void set_state(self) nogil
-    cdef void render_background(self) except *
+    cdef void render_background(self) nogil
     cdef void load(self, background, GLuint[MAX_TEXTURES] textures) except *