Mercurial > p > roundup > code
view roundup/cgi/PageTemplates/MultiMapping.py @ 2623:4e1030d49cea
fix: Option defaults were applied as strings...
...not converted to internal representation;
add Option methods str2value and value2str for value conversion
from and to the strings kept in .ini file;
options MAIL_USERNAME, MAIL_TLS_KEYFILE and MAIL_TLS_CERTFILE
default to empty strings: NODEFAULT value is a configuration
error, and for these options it is ok to keep them unset.
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Sun, 25 Jul 2004 14:36:50 +0000 |
| parents | 7e193bbda38e |
| children | 81cb4860ca75 |
line wrap: on
line source
import operator class MultiMapping: def __init__(self, *stores): self.stores = list(stores) def __getitem__(self, key): for store in self.stores: if store.has_key(key): return store[key] raise KeyError, key _marker = [] def get(self, key, default=_marker): for store in self.stores: if store.has_key(key): return store[key] if default is self._marker: raise KeyError, key return default def __len__(self): return reduce(operator.add, [len(x) for x in stores], 0) def push(self, store): self.stores.append(store) def pop(self): return self.stores.pop() def items(self): l = [] for store in self.stores: l = l + store.items() return l
