Merge configuration dictionaries ({'name': Configurable('name'), ...}) or
lists ([Configurable('name'), ...]) into one configuration dictionary.
**warning** the configurable instances passed are not cloned during the
merging, so the arguments to this function cannot be used afterwards
Definition at line 47 of file __init__.py.
49 Merge configuration dictionaries ({'name': Configurable('name'), ...}) or
50 lists ([Configurable('name'), ...]) into one configuration dictionary.
52 **warning** the configurable instances passed are not cloned during the
53 merging, so the arguments to this function cannot be used afterwards
56 for config
in configs:
60 result[name].
merge(config[name])
62 result[name] = config[name]