]> git.notmuchmail.org Git - notmuch/commit - bindings/python/notmuch/message.py
python: fix error handling
authorJustus Winter <4winter@informatik.uni-hamburg.de>
Sun, 22 Jan 2012 05:14:57 +0000 (06:14 +0100)
committerJustus Winter <4winter@informatik.uni-hamburg.de>
Sun, 22 Jan 2012 05:14:57 +0000 (06:14 +0100)
commit8015cbff263606f009b5750d23b28ee332c25db8
treea0af581013ad6cc8f302fb145c2761f593c83772
parent871fc32837d1e734895bef5f89040b5b874ae473
python: fix error handling

Before 3434d1940 the return values of libnotmuch functions were
declared as c_void_p and the code checking for errors compared the
returned value to None, which is the ctypes equivalent of a NULL
pointer.

But said commit wrapped all the data types in python classes and the
semantic changed in a subtle way. If a function returns NULL, the
wrapped python value is falsish, but no longer equal to None.
bindings/python/notmuch/database.py
bindings/python/notmuch/filename.py
bindings/python/notmuch/message.py
bindings/python/notmuch/tag.py
bindings/python/notmuch/thread.py