(self)
| 645 | self._encoding = value |
| 646 | |
| 647 | def _assert_mutable(self): |
| 648 | if not self._mutable: |
| 649 | raise AttributeError("This QueryDict instance is immutable") |
| 650 | |
| 651 | def __setitem__(self, key, value): |
| 652 | self._assert_mutable() |
no outgoing calls
no test coverage detected