X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=bindings%2Fpython%2Fnotmuch%2Fmessage.py;h=5540df3e76ad562b545802756e31ed8f8e9afb14;hb=c10b780b44128983c56253e46fa2e5f8553f2e0e;hp=ce8e7181b2743f162843c8f2d387baf3515d3f9c;hpb=c4d824bc1ee4e49c86315cd3e7f0a4756aff3811;p=notmuch diff --git a/bindings/python/notmuch/message.py b/bindings/python/notmuch/message.py index ce8e7181..5540df3e 100644 --- a/bindings/python/notmuch/message.py +++ b/bindings/python/notmuch/message.py @@ -116,7 +116,7 @@ class Messages(object): :TODO: Make the iterator work more than once and cache the tags in the Python object.(?) """ - if msgs_p is None: + if not msgs_p: raise NotmuchError(STATUS.NULL_POINTER) self._msgs = msgs_p @@ -321,7 +321,7 @@ class Message(object): automatically delete the parent object once all derived objects are dead. """ - if msg_p is None: + if not msg_p: raise NotmuchError(STATUS.NULL_POINTER) self._msg = msg_p #keep reference to parent, so we keep it alive @@ -380,7 +380,7 @@ class Message(object): msgs_p = Message._get_replies(self._msg) - if msgs_p is None: + if not msgs_p: return None return Messages(msgs_p, self)