Create a new entry for usage in the 'elements' dictionary.
(name, value)
| 94 | """ |
| 95 | |
| 96 | def _new_value(name, value): |
| 97 | """Create a new entry for usage in the 'elements' dictionary.""" |
| 98 | return ConfigValueAssociation(ConfigValue(name, value)) |
| 99 | |
| 100 | data = association_proxy("elements", "value", creator=_new_value) |
| 101 | """Proxy to the 'value' elements of each related ConfigValue, |
nothing calls this directly
no test coverage detected