X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=cnotmuch%2Fnotmuch.py;h=484bf7fdf144f41fd4310f3213f28d2672ef21dc;hp=e945d4960d8265886e867931baba917b10a234c2;hb=bdc3a95bb7de2e333d31ef31f733e83bada078ff;hpb=61bef71a126efb02b477209a02789cc194a5b784 diff --git a/cnotmuch/notmuch.py b/cnotmuch/notmuch.py index e945d496..484bf7fd 100644 --- a/cnotmuch/notmuch.py +++ b/cnotmuch/notmuch.py @@ -23,20 +23,20 @@ In this case, the above Query() object will be automatically freed whenever we delete all derived objects, ie in our case: - `del(msgs)` would also delete the parent Query (but not the parent - Database() as that is still referenced from the variable *db* in - which it is stored. + `del(msgs)` would also delete the parent Query. It would not + delete the parent Database() though, as that is still referenced + from the variable *db* in which it is stored. Pretty much the same is valid for all other objects in the hierarchy, such as :class:`Query`, :class:`Messages`, :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 -__AUTHOR__ ="Sebastian Spaeth " - +__VERSION__='0.2.1+' +__AUTHOR__ ='Sebastian Spaeth '