summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-11-01 05:28:44 +0000
committerZac Medico <zmedico@gentoo.org>2008-11-01 05:28:44 +0000
commitc35441041c45aca605fe09d1d6621827431c88bb (patch)
tree8453c06bce1bcf5c583563e3396ef79c96192681
parent9c2c9616cc456288024ddb5c94822910f7f329ad (diff)
downloadportage-c35441041c45aca605fe09d1d6621827431c88bb.tar.gz
portage-c35441041c45aca605fe09d1d6621827431c88bb.tar.bz2
portage-c35441041c45aca605fe09d1d6621827431c88bb.zip
Define __all__ and remove unused import.
svn path=/main/trunk/; revision=11775
-rw-r--r--pym/portage/dbapi/bintree.py4
1 files changed, 3 insertions, 1 deletions
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