From: Zac Medico Date: Sat, 1 Nov 2008 05:32:30 +0000 (-0000) Subject: Define __all__ and remove unused imports. X-Git-Tag: v2.2_rc13~14 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=b3592fdc86d9fc7b76deff4eeedf86d3ea50f9c1;p=portage.git Define __all__ and remove unused imports. svn path=/main/trunk/; revision=11776 --- diff --git a/pym/portage/dbapi/__init__.py b/pym/portage/dbapi/__init__.py index af0e63320..2bdb3e7cd 100644 --- a/pym/portage/dbapi/__init__.py +++ b/pym/portage/dbapi/__init__.py @@ -2,15 +2,16 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ +__all__ = ["dbapi"] + import os import re -from portage.dep import Atom, dep_getslot, dep_getkey, \ - dep_getusedeps, match_from_list +from portage.dep import match_from_list from portage.locks import unlockfile from portage.output import red from portage.util import writemsg from portage import auxdbkeys, dep_expand -from portage.versions import catpkgsplit, catsplit, pkgcmp +from portage.versions import catpkgsplit, pkgcmp class dbapi(object):