Add a new value to the list of values for this key.
(self, key, value)
| 2562 | return default |
| 2563 | |
| 2564 | def append(self, key, value): |
| 2565 | """ Add a new value to the list of values for this key. """ |
| 2566 | self.dict.setdefault(key, []).append(value) |
| 2567 | |
| 2568 | def replace(self, key, value): |
| 2569 | """ Replace the list of values with a single value. """ |
no test coverage detected