blob: e671904eec1c69f9bd48d955cdce343014d1706d [file] [log] [blame]
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
import copy
from portage.cache import template
class database(template.database):
autocommits = True
serialize_eclasses = False
def __init__(self, *args, **config):
config.pop("gid", None)
super(database, self).__init__(*args, **config)
self._data = {}
self.__iter__ = self._data.__iter__
self._delitem = self._data.__delitem__
self.__contains__ = self._data.__contains__
def _setitem(self, name, values):
self._data[name] = copy.deepcopy(values)
def _getitem(self, cpv):
return copy.deepcopy(self._data[cpv])