comparison pytouhou/ui/window.pyx @ 578:00f228b57840

Make Runner.update callable from Python code.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Mon, 04 Aug 2014 18:18:55 +0200
parents 8f51e34d911c
children 7a82c4b52b16
comparison
equal deleted inserted replaced
577:e35a083d4208 578:00f228b57840
69 pass 69 pass
70 70
71 cdef void finish(self) except *: 71 cdef void finish(self) except *:
72 pass 72 pass
73 73
74 cdef bint update(self) except *: 74 cpdef bint update(self) except? False:
75 return False 75 return False
76 76
77 77
78 78
79 cdef class Window: 79 cdef class Window: