X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=bindings%2Fpython%2Fnotmuch%2F__init__.py;h=36e5fc7a0754060a45bbb3bdcfb993dfbea7b4e4;hb=70479753a6f0ea115db58f059a2a89cddd9187bb;hp=cb64f3c3a495631b4d40877d1b760534890c3782;hpb=e75fd0d937fc93074f6aaee1bcbaa28ddcb70059;p=notmuch diff --git a/bindings/python/notmuch/__init__.py b/bindings/python/notmuch/__init__.py index cb64f3c3..36e5fc7a 100644 --- a/bindings/python/notmuch/__init__.py +++ b/bindings/python/notmuch/__init__.py @@ -50,13 +50,28 @@ for more details. You should have received a copy of the GNU General Public License along with notmuch. If not, see . -Copyright 2010 Sebastian Spaeth ' +Copyright 2010-2011 Sebastian Spaeth """ from notmuch.database import Database, Query from notmuch.message import Messages, Message from notmuch.thread import Threads, Thread from notmuch.tag import Tags -from notmuch.globals import nmlib, STATUS, NotmuchError +from notmuch.globals import ( + nmlib, + STATUS, + NotmuchError, + OutOfMemoryError, + ReadOnlyDatabaseError, + XapianError, + FileError, + FileNotEmailError, + DuplicateMessageIdError, + NullPointerError, + TagTooLongError, + UnbalancedFreezeThawError, + UnbalancedAtomicError, + NotInitializedError +) +from notmuch.version import __VERSION__ __LICENSE__ = "GPL v3+" -__VERSION__ = '0.6' __AUTHOR__ = 'Sebastian Spaeth '