python-efl/efl
Kai Huuhko d3cd5a4239 Eo: Add a boolean special method which does the same (opposite) as is_deleted().
Now you can write:

    if not my_obj:
        raise VeryBadError("My object is gone!")

and:

    if my_obj:
        my_obj.manipulate()

instead of:

    if my_obj.is_deleted()
        raise ErrorBadVery("Where did it go?")

and:

    if not my_obj.is_deleted():
        my_obj.manipulate()

But really, we should add NULL checks all over the place instead of
having the end developers checking for it.
2013-05-01 15:05:08 +00:00
..
dbus_mainloop Python-EFL: remove old/unused file adn a fix for sutup.py 2013-04-09 22:11:06 +02:00
ecore Ecore: Optimizations. 2013-04-22 20:20:21 +03:00
edbus Sed to the rescue. 2013-04-22 20:20:20 +03:00
edje Sed to the rescue. 2013-04-22 20:20:20 +03:00
elementary Python-EFL: trivial docs change, be consistent with header types, no code changes 2013-05-01 14:34:45 +02:00
emotion Silence some compiler warnings. 2013-04-22 20:20:21 +03:00
eo Eo: Add a boolean special method which does the same (opposite) as is_deleted(). 2013-05-01 15:05:08 +00:00
evas Disallow instantiating the base object classes. 2013-04-22 20:20:21 +03:00
__init__.py Put in a first, still wip, version of the python bindings in a merged tree. 2013-02-11 22:32:50 +00:00