From 8ebf1e422e9daccdeea089e8ec01f429151054af Mon Sep 17 00:00:00 2001 From: wirawan Date: Mon, 19 Sep 2011 20:06:45 +0000 Subject: [PATCH] * Add important warning. Maybe in the future we need to use operator "|" and append the search paths to _list_? --- params/params_flat.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/params/params_flat.py b/params/params_flat.py index d0cb62f..d0c381e 100644 --- a/params/params_flat.py +++ b/params/params_flat.py @@ -1,4 +1,4 @@ -# $Id: params_flat.py,v 1.5 2011-09-12 21:58:43 wirawan Exp $ +# $Id: params_flat.py,v 1.6 2011-09-19 20:06:45 wirawan Exp $ # # wpylib.params.params_flat module # Created: 20100930 @@ -255,7 +255,10 @@ class Parameters(dict): """Updates the most overriding parameters with key-value pairs from srcdict. Srcdict can be either a dict-derived object or a Parameters-derived - object.""" + object. + WARNING: As for now the additional dicts in the search list are *not* + updated into the "self" dict. + """ dict.update(self, srcdict) def __add__(self, srcdict): """Returns a copy of the Parameters() object, with the most-overriding