Define __all__ and remove unused imports.
authorZac Medico <zmedico@gentoo.org>
Sat, 1 Nov 2008 05:32:30 +0000 (05:32 -0000)
committerZac Medico <zmedico@gentoo.org>
Sat, 1 Nov 2008 05:32:30 +0000 (05:32 -0000)
svn path=/main/trunk/; revision=11776

pym/portage/dbapi/__init__.py

index af0e633201ad2925bacd8c8c5bec2101dde4f9c0..2bdb3e7cdefaa5d34eea89ec34a3cc705d823689 100644 (file)
@@ -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):