summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Spaeth <sebastian@sspaeth.de>2010-03-30 11:42:52 +0200
committerSebastian Spaeth <sebastian@sspaeth.de>2010-03-30 11:42:52 +0200
commit21538d18afc374649b5555143aef3f6afc25e5ba (patch)
tree4fb576d4a7a60bbc031e2c8619c15e892e94a4c5
parent3c8ba0f18f826c13b67eda08dd7620a65ee92065 (diff)
message.py: Don't use ctypes.c_bool as that does not exist in python 2.5
-rw-r--r--cnotmuch/message.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cnotmuch/message.py b/cnotmuch/message.py
index 73660c5..0e5057f 100644
--- a/cnotmuch/message.py
+++ b/cnotmuch/message.py
@@ -16,7 +16,7 @@
# (C) Copyright 2010 Sebastian Spaeth <Sebastian@SSpaeth.de>
# Jesse Rosenthal <jrosenthal@jhu.edu>
-from ctypes import c_char_p, c_void_p, c_long, c_bool
+from ctypes import c_char_p, c_void_p, c_long, c_uint
from datetime import date
from cnotmuch.globals import nmlib, STATUS, NotmuchError, Enum
from cnotmuch.tag import Tags
@@ -243,7 +243,7 @@ class Message(object):
"""notmuch_message_get_flag"""
_get_flag = nmlib.notmuch_message_get_flag
- _get_flag.restype = c_bool
+ _get_flag.restype = c_uint
"""notmuch_message_get_message_id (notmuch_message_t *message)"""
_get_message_id = nmlib.notmuch_message_get_message_id
@@ -406,7 +406,7 @@ class Message(object):
:param flag: One of the :attr:`Message.FLAG` values (currently only
*Message.FLAG.MATCH*
- :returns: A bool, indicating whether the flag is set.
+ :returns: An unsigned int (0/1), indicating whether the flag is set.
:exception: :exc:`NotmuchError` STATUS.NOT_INITIALIZED if the message
is not initialized.
"""