diff pytouhou/ui/opengl/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 dec43940f092
children
line wrap: on
line diff
--- a/pytouhou/ui/opengl/texture.pxd
+++ b/pytouhou/ui/opengl/texture.pxd
@@ -3,10 +3,10 @@ from pytouhou.lib.sdl cimport Font
 cdef class TextureManager:
     cdef object loader, renderer, texture_class
 
-    cdef void load(self, dict anms) except *
+    cdef bint load(self, dict anms) except True
 
 cdef class FontManager:
     cdef Font font
     cdef object renderer, texture_class
 
-    cdef void load(self, dict labels) except *
+    cdef bint load(self, dict labels) except True