]> git.notmuchmail.org Git - notmuch/blobdiff - cnotmuch/notmuch.py
README: update changelog
[notmuch] / cnotmuch / notmuch.py
index 70ee0b90b693627cdc26da939663de68e862aadc..29d30c4ff182a528ca6f0194dd3cf734e4156eb2 100644 (file)
@@ -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,11 +32,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
-__AUTHOR__ ="Sebastian Spaeth <Sebastian@SSpaeth.de>"
-
+__VERSION__='0.2.0'
+__AUTHOR__ ='Sebastian Spaeth <Sebastian@SSpaeth.de>'