diff options
author | Kai Huuhko <kai.huuhko@gmail.com> | 2013-04-18 20:43:34 +0000 |
---|---|---|
committer | Kai Huuhko <kai.huuhko@gmail.com> | 2013-04-22 20:20:20 +0300 |
commit | b3b87fe928146d8da797c1e9127da9748af79d27 (patch) | |
tree | ad470bddf1dd1e8ea09d3ade008f23d2512e6d2f /include/efl.ecore.pxd | |
parent | 898f32371a2d41ec444828ac79c94316bb9bf5c0 (diff) |
Ecore: Small optimization to the task_cb function call.
Diffstat (limited to 'include/efl.ecore.pxd')
-rw-r--r-- | include/efl.ecore.pxd | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/include/efl.ecore.pxd b/include/efl.ecore.pxd index f3c4650..eafff25 100644 --- a/include/efl.ecore.pxd +++ b/include/efl.ecore.pxd | |||
@@ -208,17 +208,19 @@ cdef extern from "Ecore_File.h": | |||
208 | cdef class Timer(Eo): | 208 | cdef class Timer(Eo): |
209 | cdef double _interval | 209 | cdef double _interval |
210 | cdef readonly object func, args, kargs | 210 | cdef readonly object func, args, kargs |
211 | cpdef object _task_exec(self) | 211 | cpdef bint _task_exec(self) |
212 | 212 | ||
213 | 213 | ||
214 | cdef class Animator(Eo): | 214 | cdef class Animator(Eo): |
215 | cdef readonly object func, args, kargs | 215 | cdef readonly object func |
216 | cpdef object _task_exec(self) | 216 | cdef readonly tuple args |
217 | cdef readonly dict kargs | ||
218 | cpdef bint _task_exec(self) | ||
217 | 219 | ||
218 | 220 | ||
219 | cdef class Idler(Eo): | 221 | cdef class Idler(Eo): |
220 | cdef readonly object func, args, kargs | 222 | cdef readonly object func, args, kargs |
221 | cpdef object _task_exec(self) | 223 | cpdef bint _task_exec(self) |
222 | 224 | ||
223 | 225 | ||
224 | cdef class IdleEnterer(Idler): | 226 | cdef class IdleEnterer(Idler): |