Enlightenment CVS committal Author : ulisses Project : e17 Module : proto/python-efl
Dir : e17/proto/python-efl/python-evas/evas Modified Files: evas.c_evas_object.pxi evas.c_evas_object_callbacks.pxi evas.c_evas_object_image.pxi evas.c_evas_object_smart.pxi Log Message: Updating to use newer Cython (0.9.6.8). =================================================================== RCS file: /cvs/e/e17/proto/python-efl/python-evas/evas/evas.c_evas_object.pxi,v retrieving revision 1.21 retrieving revision 1.22 diff -u -3 -r1.21 -r1.22 --- evas.c_evas_object.pxi 18 Oct 2007 14:55:36 -0000 1.21 +++ evas.c_evas_object.pxi 5 Nov 2007 21:47:48 -0000 1.22 @@ -25,7 +25,7 @@ cdef void obj_free_cb(void *data, Evas *e, - Evas_Object *obj, void *event_info) with GIL: + Evas_Object *obj, void *event_info) with gil: cdef Object self self = <Object>data =================================================================== RCS file: /cvs/e/e17/proto/python-efl/python-evas/evas/evas.c_evas_object_callbacks.pxi,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- evas.c_evas_object_callbacks.pxi 3 Oct 2007 04:44:24 -0000 1.5 +++ evas.c_evas_object_callbacks.pxi 5 Nov 2007 21:47:48 -0000 1.6 @@ -25,7 +25,7 @@ cdef void cb_mouse_in(void *data, Evas *e, - Evas_Object *obj, void *e_inf) with GIL: + Evas_Object *obj, void *e_inf) with gil: cdef EventMouseIn event event = EventMouseIn() event._set_obj(e_inf) @@ -33,7 +33,7 @@ cdef void cb_mouse_out(void *data, Evas *e, - Evas_Object *obj, void *e_inf) with GIL: + Evas_Object *obj, void *e_inf) with gil: cdef EventMouseOut event event = EventMouseOut() event._set_obj(e_inf) @@ -41,7 +41,7 @@ cdef void cb_mouse_down(void *data, Evas *e, - Evas_Object *obj, void *e_inf) with GIL: + Evas_Object *obj, void *e_inf) with gil: cdef EventMouseDown event event = EventMouseDown() event._set_obj(e_inf) @@ -49,7 +49,7 @@ cdef void cb_mouse_up(void *data, Evas *e, - Evas_Object *obj, void *e_inf) with GIL: + Evas_Object *obj, void *e_inf) with gil: cdef EventMouseUp event event = EventMouseUp() event._set_obj(e_inf) @@ -57,7 +57,7 @@ cdef void cb_mouse_move(void *data, Evas *e, - Evas_Object *obj, void *e_inf) with GIL: + Evas_Object *obj, void *e_inf) with gil: cdef EventMouseMove event event = EventMouseMove() event._set_obj(e_inf) @@ -65,7 +65,7 @@ cdef void cb_mouse_wheel(void *data, Evas *e, - Evas_Object *obj, void *e_inf) with GIL: + Evas_Object *obj, void *e_inf) with gil: cdef EventMouseWheel event event = EventMouseWheel() event._set_obj(e_inf) @@ -73,12 +73,12 @@ cdef void cb_free(void *data, Evas *e, - Evas_Object *obj, void *e_inf) with GIL: + Evas_Object *obj, void *e_inf) with gil: cb_dispatcher2(<Object>data, EVAS_CALLBACK_FREE) cdef void cb_key_down(void *data, Evas *e, - Evas_Object *obj, void *e_inf) with GIL: + Evas_Object *obj, void *e_inf) with gil: cdef EventKeyDown event event = EventKeyDown() event._set_obj(e_inf) @@ -86,7 +86,7 @@ cdef void cb_key_up(void *data, Evas *e, - Evas_Object *obj, void *e_inf) with GIL: + Evas_Object *obj, void *e_inf) with gil: cdef EventKeyUp event event = EventKeyUp() event._set_obj(e_inf) @@ -94,39 +94,39 @@ cdef void cb_focus_in(void *data, Evas *e, - Evas_Object *obj, void *e_inf) with GIL: + Evas_Object *obj, void *e_inf) with gil: cb_dispatcher2(<Object>data, EVAS_CALLBACK_FOCUS_IN) cdef void cb_focus_out(void *data, Evas *e, - Evas_Object *obj, void *e_inf) with GIL: + Evas_Object *obj, void *e_inf) with gil: cb_dispatcher2(<Object>data, EVAS_CALLBACK_FOCUS_OUT) -cdef void cb_show(void *data, Evas *e, Evas_Object *obj, void *e_inf) with GIL: +cdef void cb_show(void *data, Evas *e, Evas_Object *obj, void *e_inf) with gil: cb_dispatcher2(<Object>data, EVAS_CALLBACK_SHOW) -cdef void cb_hide(void *data, Evas *e, Evas_Object *obj, void *e_inf) with GIL: +cdef void cb_hide(void *data, Evas *e, Evas_Object *obj, void *e_inf) with gil: cb_dispatcher2(<Object>data, EVAS_CALLBACK_HIDE) -cdef void cb_move(void *data, Evas *e, Evas_Object *obj, void *e_inf) with GIL: +cdef void cb_move(void *data, Evas *e, Evas_Object *obj, void *e_inf) with gil: cb_dispatcher2(<Object>data, EVAS_CALLBACK_MOVE) cdef void cb_resize(void *data, Evas *e, - Evas_Object *obj, void *e_inf) with GIL: + Evas_Object *obj, void *e_inf) with gil: cb_dispatcher2(<Object>data, EVAS_CALLBACK_RESIZE) cdef void cb_restack(void *data, Evas *e, - Evas_Object *obj, void *e_inf) with GIL: + Evas_Object *obj, void *e_inf) with gil: cb_dispatcher2(<Object>data, EVAS_CALLBACK_RESTACK) cdef void cb_del(void *data, Evas *e, - Evas_Object *obj, void *e_inf) with GIL: + Evas_Object *obj, void *e_inf) with gil: cb_dispatcher2(<Object>data, EVAS_CALLBACK_DEL) =================================================================== RCS file: /cvs/e/e17/proto/python-efl/python-evas/evas/evas.c_evas_object_image.pxi,v retrieving revision 1.11 retrieving revision 1.12 diff -u -3 -r1.11 -r1.12 --- evas.c_evas_object_image.pxi 21 Oct 2007 00:51:02 -0000 1.11 +++ evas.c_evas_object_image.pxi 5 Nov 2007 21:47:48 -0000 1.12 @@ -545,7 +545,7 @@ cdef void _cb_on_filled_image_resize(void *data, Evas *e, Evas_Object *obj, - void *event_info) with GIL: + void *event_info) with gil: cdef int w, h evas_object_geometry_get(obj, NULL, NULL, &w, &h) evas_object_image_fill_set(obj, 0, 0, w, h) =================================================================== RCS file: /cvs/e/e17/proto/python-efl/python-evas/evas/evas.c_evas_object_smart.pxi,v retrieving revision 1.22 retrieving revision 1.23 diff -u -3 -r1.22 -r1.23 --- evas.c_evas_object_smart.pxi 29 Oct 2007 21:07:37 -0000 1.22 +++ evas.c_evas_object_smart.pxi 5 Nov 2007 21:47:48 -0000 1.23 @@ -5,7 +5,7 @@ import traceback -cdef void _smart_object_delete(Evas_Object *o) with GIL: +cdef void _smart_object_delete(Evas_Object *o) with gil: cdef SmartObject obj obj = <SmartObject>evas_object_data_get(o, "python-evas") @@ -59,7 +59,7 @@ cdef void _smart_object_move(Evas_Object *o, - Evas_Coord x, Evas_Coord y) with GIL: + Evas_Coord x, Evas_Coord y) with gil: cdef SmartObject obj obj = <SmartObject>evas_object_data_get(o, "python-evas") if obj._m_move is not None: @@ -70,7 +70,7 @@ cdef void _smart_object_resize(Evas_Object *o, - Evas_Coord w, Evas_Coord h) with GIL: + Evas_Coord w, Evas_Coord h) with gil: cdef SmartObject obj obj = <SmartObject>evas_object_data_get(o, "python-evas") if obj._m_resize is not None: @@ -80,7 +80,7 @@ traceback.print_exc() -cdef void _smart_object_show(Evas_Object *o) with GIL: +cdef void _smart_object_show(Evas_Object *o) with gil: cdef SmartObject obj obj = <SmartObject>evas_object_data_get(o, "python-evas") if obj._m_show is not None: @@ -90,7 +90,7 @@ traceback.print_exc() -cdef void _smart_object_hide(Evas_Object *o) with GIL: +cdef void _smart_object_hide(Evas_Object *o) with gil: cdef SmartObject obj obj = <SmartObject>evas_object_data_get(o, "python-evas") if obj._m_hide is not None: @@ -101,7 +101,7 @@ cdef void _smart_object_color_set(Evas_Object *o, - int r, int g, int b, int a) with GIL: + int r, int g, int b, int a) with gil: cdef SmartObject obj obj = <SmartObject>evas_object_data_get(o, "python-evas") if obj._m_color_set is not None: @@ -111,7 +111,7 @@ traceback.print_exc() -cdef void _smart_object_clip_set(Evas_Object *o, Evas_Object *clip) with GIL: +cdef void _smart_object_clip_set(Evas_Object *o, Evas_Object *clip) with gil: cdef SmartObject obj cdef Object other obj = <SmartObject>evas_object_data_get(o, "python-evas") @@ -123,7 +123,7 @@ traceback.print_exc() -cdef void _smart_object_clip_unset(Evas_Object *o) with GIL: +cdef void _smart_object_clip_unset(Evas_Object *o) with gil: cdef SmartObject obj obj = <SmartObject>evas_object_data_get(o, "python-evas") if obj._m_clip_unset is not None: @@ -134,7 +134,7 @@ cdef void _smart_callback(void *data, - Evas_Object *o, void *event_info) with GIL: + Evas_Object *o, void *event_info) with gil: cdef SmartObject obj cdef object event, ei obj = <SmartObject>evas_object_data_get(o, "python-evas") ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs