Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r11775 - main/trunk/pym/portage/dbapi
Date: Sat, 01 Nov 2008 05:28:46
Message-Id: E1Kw92S-0002fF-Ld@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-11-01 05:28:44 +0000 (Sat, 01 Nov 2008)
3 New Revision: 11775
4
5 Modified:
6 main/trunk/pym/portage/dbapi/bintree.py
7 Log:
8 Define __all__ and remove unused import.
9
10
11 Modified: main/trunk/pym/portage/dbapi/bintree.py
12 ===================================================================
13 --- main/trunk/pym/portage/dbapi/bintree.py 2008-11-01 04:48:42 UTC (rev 11774)
14 +++ main/trunk/pym/portage/dbapi/bintree.py 2008-11-01 05:28:44 UTC (rev 11775)
15 @@ -2,10 +2,12 @@
16 # Distributed under the terms of the GNU General Public License v2
17 # $Id$
18
19 +__all__ = ["bindbapi", "binarytree"]
20 +
21 from portage.cache.mappings import slot_dict_class
22 from portage.dep import isvalidatom, isjustname, dep_getkey, match_from_list
23 from portage.dbapi.virtual import fakedbapi
24 -from portage.exception import InvalidPackageName, InvalidAtom, \
25 +from portage.exception import InvalidPackageName, \
26 PermissionDenied, PortageException
27 from portage.output import green, EOutput
28 from portage.util import ensure_dirs, normalize_path, writemsg, writemsg_stdout