Go to file
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
doc Python-EFL: trivial docs change, be consistent with header types, no code changes 2013-05-01 14:34:45 +02:00
efl Eo: Add a boolean special method which does the same (opposite) as is_deleted(). 2013-05-01 15:05:08 +00:00
examples PythonEFL: my py2.7 dont like the exec() inside a lambda. 2013-04-23 22:35:52 +02:00
include Ecore: Optimizations. 2013-04-22 20:20:21 +03:00
tests Evas: Fix Textgrid and add tests. 2013-04-22 20:12:26 +03:00
.gitignore Add cython generated html files to gitignore 2013-03-29 16:48:29 +00:00
AUTHORS Put in a first, still wip, version of the python bindings in a merged tree. 2013-02-11 22:32:50 +00:00
CODING CODING++, TODO++ 2013-04-03 11:24:08 +00:00
COPYING Put in a first, still wip, version of the python bindings in a merged tree. 2013-02-11 22:32:50 +00:00
INSTALL Python-EFL: cleanup a little setup.py, INSTALL and TODO 2013-03-27 21:18:24 +01:00
TODO Evas: Fix Textgrid and add tests. 2013-04-22 20:12:26 +03:00
api_coverage.py Elementary: Comment out quicklaunch defines and add them to ignores. 2013-04-22 20:12:27 +03:00
setup.py Python-EFL: Check the minimum cython version 2013-04-28 15:53:09 +02:00