From: Zac Medico Date: Sat, 1 Nov 2008 05:28:44 +0000 (-0000) Subject: Define __all__ and remove unused import. X-Git-Tag: v2.2_rc13~15 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c35441041c45aca605fe09d1d6621827431c88bb;p=portage.git Define __all__ and remove unused import. svn path=/main/trunk/; revision=11775 --- diff --git a/pym/portage/dbapi/bintree.py b/pym/portage/dbapi/bintree.py index 7918e3ee3..96a5b0afa 100644 --- a/pym/portage/dbapi/bintree.py +++ b/pym/portage/dbapi/bintree.py @@ -2,10 +2,12 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ +__all__ = ["bindbapi", "binarytree"] + from portage.cache.mappings import slot_dict_class from portage.dep import isvalidatom, isjustname, dep_getkey, match_from_list from portage.dbapi.virtual import fakedbapi -from portage.exception import InvalidPackageName, InvalidAtom, \ +from portage.exception import InvalidPackageName, \ PermissionDenied, PortageException from portage.output import green, EOutput from portage.util import ensure_dirs, normalize_path, writemsg, writemsg_stdout