unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH] python: use wrapped notmuch_*_t types instead of raw pointers
@ 2011-12-06 10:03 Thomas Jost
  2011-12-06 12:35 ` Sebastian Spaeth
  0 siblings, 1 reply; 2+ messages in thread
From: Thomas Jost @ 2011-12-06 10:03 UTC (permalink / raw)
  To: notmuch

Now that types are checked correctly, we also need to make sure that all the
arguments actually are instances of these types. Otherwise the function calls
will fail and raise an exception similar to this one:
   ctypes.ArgumentError: argument 3: <type 'exceptions.TypeError'>: expected
   LP_LP_NotmuchMessageS instance instead of pointer to c_void_p
---
 bindings/python/notmuch/database.py |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/bindings/python/notmuch/database.py b/bindings/python/notmuch/database.py
index 25b4b1b..c24555e 100644
--- a/bindings/python/notmuch/database.py
+++ b/bindings/python/notmuch/database.py
@@ -378,7 +378,7 @@ class Database(object):
                       be added.
         """
         self._assert_db_is_initialized()
-        msg_p = c_void_p()
+        msg_p = NotmuchMessageP()
         status = self._add_message(self._db, _str(filename), byref(msg_p))
 
         if not status in [STATUS.SUCCESS, STATUS.DUPLICATE_MESSAGE_ID]:
@@ -446,7 +446,7 @@ class Database(object):
                     the database was not intitialized.
         """
         self._assert_db_is_initialized()
-        msg_p = c_void_p()
+        msg_p = NotmuchMessageP()
         status = Database._find_message(self._db, _str(msgid), byref(msg_p))
         if status != STATUS.SUCCESS:
             raise NotmuchError(status)
@@ -479,7 +479,7 @@ class Database(object):
 
         *Added in notmuch 0.9*"""
         self._assert_db_is_initialized()
-        msg_p = c_void_p()
+        msg_p = NotmuchMessageP()
         status = Database._find_message_by_filename(self._db, _str(filename),
                                                     byref(msg_p))
         if status != STATUS.SUCCESS:
-- 
1.7.7.4

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] python: use wrapped notmuch_*_t types instead of raw pointers
  2011-12-06 10:03 [PATCH] python: use wrapped notmuch_*_t types instead of raw pointers Thomas Jost
@ 2011-12-06 12:35 ` Sebastian Spaeth
  0 siblings, 0 replies; 2+ messages in thread
From: Sebastian Spaeth @ 2011-12-06 12:35 UTC (permalink / raw)
  To: Thomas Jost, notmuch

[-- Attachment #1: Type: text/plain, Size: 457 bytes --]

On Tue,  6 Dec 2011 11:03:22 +0100, Thomas Jost <schnouki@schnouki.net> wrote:
> Now that types are checked correctly, we also need to make sure that all the
> arguments actually are instances of these types. Otherwise the function calls
> will fail and raise an exception similar to this one:
>    ctypes.ArgumentError: argument 3: <type 'exceptions.TypeError'>: expected
>    LP_LP_NotmuchMessageS instance instead of pointer to c_void_p

Thanks, Pushed.

[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-12-06 12:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-06 10:03 [PATCH] python: use wrapped notmuch_*_t types instead of raw pointers Thomas Jost
2011-12-06 12:35 ` Sebastian Spaeth

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).