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