kuuko pushed a commit to branch master.

http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=5fcc33b17a69b8a7ad57022e01d37404fdd97254

commit 5fcc33b17a69b8a7ad57022e01d37404fdd97254
Author: Kai Huuhko <kai.huu...@gmail.com>
Date:   Tue Apr 15 16:17:44 2014 +0300

    Code cleanup: More print statements => functions
---
 efl/evas/efl.evas_object_callbacks.pxi | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/efl/evas/efl.evas_object_callbacks.pxi 
b/efl/evas/efl.evas_object_callbacks.pxi
index da4c1a2..8b18c31 100644
--- a/efl/evas/efl.evas_object_callbacks.pxi
+++ b/efl/evas/efl.evas_object_callbacks.pxi
@@ -209,30 +209,30 @@ cdef void cb_object_device_changed(void *data, Evas *e,
 
 cdef void cb_object_canvas_focus_in(void *data, Evas *e,
                                     Evas_Object *obj, void *e_inf) with gil:
-    print "EVAS_CALLBACK_FOCUS_IN is not supported by object."
+    print("EVAS_CALLBACK_FOCUS_IN is not supported by object.")
 
 
 cdef void cb_object_canvas_focus_out(void *data, Evas *e,
                                      Evas_Object *obj, void *e_inf) with gil:
-    print "EVAS_CALLBACK_FOCUS_OUT is not supported by object."
+    print("EVAS_CALLBACK_FOCUS_OUT is not supported by object.")
 
 
 cdef void cb_object_render_flush_pre(void *data, Evas *e,
                                      Evas_Object *obj, void *e_inf) with gil:
-    print "EVAS_CALLBACK_RENDER_FLUSH_PRE is not supported by object."
+    print("EVAS_CALLBACK_RENDER_FLUSH_PRE is not supported by object.")
 
 
 cdef void cb_object_render_flush_post(void *data, Evas *e,
                                       Evas_Object *obj, void *e_inf) with gil:
-    print "EVAS_CALLBACK_RENDER_FLUSH_POST is not supported by object."
+    print("EVAS_CALLBACK_RENDER_FLUSH_POST is not supported by object.")
 
 cdef void cb_object_canvas_object_focus_in(void *data, Evas *e,
                                            Evas_Object *obj, void *e_inf) with 
gil:
-    print "EVAS_CALLBACK_CANVAS_OBJECT_FOCUS_IN is not supported by object."
+    print("EVAS_CALLBACK_CANVAS_OBJECT_FOCUS_IN is not supported by object.")
 
 cdef void cb_object_canvas_object_focus_out(void *data, Evas *e,
                                             Evas_Object *obj, void *e_inf) 
with gil:
-    print "EVAS_CALLBACK_CANVAS_OBJECT_FOCUS_OUT is not supported by object."
+    print("EVAS_CALLBACK_CANVAS_OBJECT_FOCUS_OUT is not supported by object.")
 
 cdef void cb_object_image_unloaded(void *data, Evas *e,
                                    Evas_Object *obj, void *e_inf) with gil:
@@ -240,12 +240,11 @@ cdef void cb_object_image_unloaded(void *data, Evas *e,
 
 cdef void cb_object_canvas_render_pre(void *data, Evas *e,
                                       Evas_Object *obj, void *e_inf) with gil:
-    print "EVAS_CALLBACK_RENDER_PRE is not supported by object."
+    print("EVAS_CALLBACK_RENDER_PRE is not supported by object.")
 
 cdef void cb_object_canvas_render_post(void *data, Evas *e,
                                        Evas_Object *obj, void *e_inf) with gil:
-    print "EVAS_CALLBACK_RENDER_POST is not supported by object."
-
+    print("EVAS_CALLBACK_RENDER_POST is not supported by object.")
 
 cdef int evas_object_event_callbacks_len
 cdef Evas_Object_Event_Cb evas_object_event_callbacks[34]

-- 


Reply via email to