summaryrefslogtreecommitdiffstats
path: root/pym/portage/env/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/env/config.py')
-rw-r--r--pym/portage/env/config.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/pym/portage/env/config.py b/pym/portage/env/config.py
index c990d9f0e..9a446df0e 100644
--- a/pym/portage/env/config.py
+++ b/pym/portage/env/config.py
@@ -1,12 +1,15 @@
# config.py -- Portage Config
-# Copyright 2007 Gentoo Foundation
+# Copyright 2007-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
-from UserDict import UserDict
+__all__ = ["ConfigLoaderKlass", "GenericFile", "PackageKeywordsFile",
+ "PackageUseFile", "PackageMaskFile", "PortageModulesFile"]
+
+from portage.cache.mappings import UserDict
from portage.env.loaders import KeyListFileLoader, KeyValuePairFileLoader, ItemFileLoader
-class ConfigLoaderKlass(UserDict, object):
+class ConfigLoaderKlass(UserDict):
"""
A base class stub for things to inherit from.
Users may want a non-file backend.