Append an item to the internal list associated with key.
(self, key, value)
| 173 | return self._getlist(key) |
| 174 | |
| 175 | def appendlist(self, key, value): |
| 176 | """Append an item to the internal list associated with key.""" |
| 177 | self.setlistdefault(key).append(value) |
| 178 | |
| 179 | def items(self): |
| 180 | """ |