From: Justus Winter <4winter@informatik.uni-hamburg.de> Date: Fri, 8 Jan 2016 12:56:10 +0000 (+0100) Subject: python: cleanup imports X-Git-Tag: 0.22_rc0~76 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=a5c1536d9a631f15c74602ef12a0867d278a7af0 python: cleanup imports Drop unused imports, and avoid warning about unused imports when we import something on behalf of another module. Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de> --- diff --git a/bindings/python/notmuch/compat.py b/bindings/python/notmuch/compat.py index adc8d244..daa268c1 100644 --- a/bindings/python/notmuch/compat.py +++ b/bindings/python/notmuch/compat.py @@ -65,3 +65,7 @@ else: raise TypeError('Expected str, got %s' % type(value)) return value.encode('utf-8', 'replace') + +# We import the SafeConfigParser class on behalf of other code to cope +# with the differences between Python 2 and 3. +SafeConfigParser # avoid warning about unused import diff --git a/bindings/python/notmuch/database.py b/bindings/python/notmuch/database.py index f7d04bf4..93e7b7a1 100644 --- a/bindings/python/notmuch/database.py +++ b/bindings/python/notmuch/database.py @@ -36,7 +36,6 @@ from .errors import ( NotmuchError, NullPointerError, NotInitializedError, - ReadOnlyDatabaseError, ) from .message import Message from .tag import Tags diff --git a/bindings/python/notmuch/filenames.py b/bindings/python/notmuch/filenames.py index 9e5d1a30..f8f383e4 100644 --- a/bindings/python/notmuch/filenames.py +++ b/bindings/python/notmuch/filenames.py @@ -19,7 +19,6 @@ Copyright 2010 Sebastian Spaeth from ctypes import c_char_p from .globals import ( nmlib, - NotmuchMessageP, NotmuchFilenamesP, Python3StringMixIn, ) diff --git a/bindings/python/notmuch/globals.py b/bindings/python/notmuch/globals.py index 70cfdc3d..6872a291 100644 --- a/bindings/python/notmuch/globals.py +++ b/bindings/python/notmuch/globals.py @@ -33,6 +33,11 @@ except: from .compat import Python3StringMixIn, encode_utf8 as _str +# We import these on behalf of other modules. Silence warning about +# these symbols not being used. +Python3StringMixIn +_str + class Enum(object): """Provides ENUMS as "code=Enum(['a','b','c'])" where code.a=0 etc...""" def __init__(self, names):