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 41 of file __init__.py.
43 Merge configuration dictionaries ({'name': Configurable('name'), ...}) or
44 lists ([Configurable('name'), ...]) into one configuration dictionary.
46 **warning** the configurable instances passed are not cloned during the
47 merging, so the arguments to this function cannot be used afterwards
50 for config
in configs:
54 result[name].
merge(config[name])
56 result[name] = config[name]