X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=cnotmuch%2Fnotmuch.py;h=484bf7fdf144f41fd4310f3213f28d2672ef21dc;hp=f06929d794918b1febc55a940c905cb03d4fc2cf;hb=bdc3a95bb7de2e333d31ef31f733e83bada078ff;hpb=2dd0cf8f5bbf63c0e0a423344de95e9d433bf7af diff --git a/cnotmuch/notmuch.py b/cnotmuch/notmuch.py index f06929d7..484bf7fd 100644 --- a/cnotmuch/notmuch.py +++ b/cnotmuch/notmuch.py @@ -1,7 +1,5 @@ """The :mod:`notmuch` module provides most of the functionality that a user is likely to need. -Many of its objects use python's logging module to log some output at DEBUG level. - .. note:: The underlying notmuch library is build on a hierarchical memory allocator called talloc. All objects derive from a top-level :class:`Database` object. @@ -34,10 +32,11 @@ 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 message import Messages, Message +from thread import Threads, Thread +from tag import Tags +from cnotmuch.globals import nmlib, STATUS, NotmuchError __LICENSE__="GPL v3+" -__VERSION__='0.1.1' +__VERSION__='0.2.1+' __AUTHOR__ ='Sebastian Spaeth '