]> git.notmuchmail.org Git - notmuch/blobdiff - cnotmuch/notmuch.py
Implement Thread() and Threads()
[notmuch] / cnotmuch / notmuch.py
index f06929d794918b1febc55a940c905cb03d4fc2cf..ba5c150d84043b6394786192553aa00cb606231f 100644 (file)
@@ -34,10 +34,8 @@ Many of its objects use python's logging module to log some output at DEBUG leve
     :class:`Message`, and :class:`Tags`.
 
 """
-import ctypes
-from ctypes import c_int, c_char_p
-from database import Database,Tags,Query,Messages,Message,Tags
-from cnotmuch.globals import nmlib,STATUS,NotmuchError
+from database import Database, Query
+from cnotmuch.globals import nmlib, STATUS, NotmuchError
 __LICENSE__="GPL v3+"
 __VERSION__='0.1.1'
 __AUTHOR__ ='Sebastian Spaeth <Sebastian@SSpaeth.de>'