diff pytouhou/ui/sdl/texture.pxd @ 617:a6af3ff86612

Change all “void except *” function into “bint except True”, to prevent PyErr_Occurred() from being called at each call.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sun, 29 Mar 2015 00:08:20 +0100
parents b895ed2de71f
children
line wrap: on
line diff
--- a/pytouhou/ui/sdl/texture.pxd
+++ b/pytouhou/ui/sdl/texture.pxd
@@ -5,11 +5,11 @@ cdef class TextureManager:
     cdef object loader
     cdef Window window
 
-    cdef void load(self, dict anms) except *
+    cdef bint load(self, dict anms) except True
     cdef load_texture(self, Surface texture)
 
 cdef class FontManager:
     cdef Font font
     cdef Window window
 
-    cdef void load(self, dict labels) except *
+    cdef bint load(self, dict labels) except True